* {
  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: 1300px;
  z-index: 2;
  width: 100%;
}

/* HEADING */
.hero h1 {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.1;
  color: #000;
  letter-spacing: -2px;
  margin-left: 80px; /* desktop same */
}

/* 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;
  }
}










                                         /* //////stats-sec//////////// */

.stats-sec {
  padding: 120px 20px;
}

/* WRAP */
.stats-wrap {
  max-width: 1300px;
  margin: auto;
}

/* GRID */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  justify-items: start;
}

/* BOX */
.stats-box {
  text-align: left;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

/* ACTIVE BOX */
.stats-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* LINE */
.stats-line {
  position: absolute;
  left: 0;
  top: 40%;
  transform: translateY(-50%);
  width: 0%;
  height: 3px;
  background: #3b82f6;
  z-index: 0;
  transition: width 1s ease;
}

/* ACTIVE LINE */
.stats-box.show .stats-line {
  width: 40%;
}

/* NUMBER */
.stats-num {
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* DESC */
.stats-desc {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  transform: translateY(-30px);
  opacity: 0;
  transition: all 0.7s ease;
}

/* SMALL */
.stats-small {
  font-size: 18px;
  margin-top: 10px;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.8s ease;
}

/* ACTIVE TEXT */
.stats-box.show .stats-num {
  transform: translateY(-20px);
  opacity: 1;
}

.stats-box.show .stats-desc {
  transform: translateY(20px);
  opacity: 1;
}

.stats-box.show .stats-small {
  transform: translateY(30px);
  opacity: 0.7;
}

/* FOOTER */
.stats-bottom {
  margin-top: 80px;
}

.stats-btn {
  text-decoration: none;
  color: #0158a7;
  font-weight: 600;
  font-size: 16px;
  position: relative;
}

.stats-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 2px;
  background: #0158a7;
  transition: 0.2s;
}

.stats-btn:hover::after {
  width: 60%;
}


/* =======================
   RESPONSIVE DESIGN
======================= */

/* Tablet */
@media (max-width: 1024px) {
  .stats-sec {
    padding: 100px 20px; /* ✅ better spacing */
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .stats-num {
    font-size: clamp(60px, 6vw, 70px); /* ✅ smooth scaling */
  }

  .stats-desc {
    font-size: clamp(20px, 3vw, 24px);
  }

  .stats-line {
    width: 0%;
  }

  .stats-box.show .stats-line {
    width: 50%; /* ✅ better proportion */
  }
}

/* Mobile */
@media (max-width: 768px) {
  .stats-sec {
    padding: 80px 15px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .stats-box {
    text-align: left;
  }

  .stats-num {
    font-size: clamp(45px, 8vw, 55px);
  }

  .stats-desc {
    font-size: clamp(18px, 4vw, 20px);
    line-height: 1.4;
  }

  .stats-small {
    font-size: 15px;
  }

  .stats-line {
    top: 40%; /* ✅ overlap avoid */
  }

  .stats-box.show .stats-line {
    width: 30%;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .stats-sec {
    padding: 70px 12px;
  }

  .stats-num {
    font-size: clamp(36px, 9vw, 42px);
  }

  .stats-desc {
    font-size: 16px;
  }

  .stats-small {
    font-size: 14px;
  }

  .stats-btn {
    font-size: 14px;
  }

  .stats-line {
    top: 35%;
  }

  .stats-box.show .stats-line {
    width: 30%; /* ✅ better visual */
  }
}









.showreel-section {
  padding: 100px 20px;
  background: #fff;
  font-family: Arial;
  overflow: hidden;
}

.showreel-wrapper {
  max-width: 1300px;
  margin: auto;
}

.showreel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* ================= VIDEO (LEFT ANIMATION) ================= */

.showreel-media {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  height: 420px;

  opacity: 0;
  transform: translateX(-120px);
  transition: all 1s ease;
}

.showreel-media.show {
  opacity: 1;
  transform: translateX(0);
}

.showreel-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* ================= CONTENT (RIGHT ANIMATION) ================= */

.showreel-content {
  opacity: 0;
  transform: translateX(120px);
  transition: all 1s ease;
}

.showreel-content.show {
  opacity: 1;
  transform: translateX(0);
}

.showreel-title {
  font-size: 34px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.showreel-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .showreel-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .showreel-media {
    height: 320px;
    transform: translateY(60px); /* mobile animation */
  }

  .showreel-content {
    transform: translateY(60px);
    text-align: left;
  }
}

@media (max-width: 600px) {
  .showreel-section {
    padding: 70px 15px;
  }

  .showreel-media {
    height: 240px;
  }

  .showreel-title {
    font-size: 26px;
  }

  .showreel-text {
    font-size: 15px;
    line-height: 1.7;
  }
}









                                               /* SECTION */
.section {
  min-height: 180vh;
  padding: 120px 80px;
  background: #f6f6f6;
}

/* CONTAINER */
.container99999 {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: sticky;
  top: 100px;
  gap: 60px;
}

/* LEFT */
.services {
  list-style: none;
  position: relative;
  padding-left: 30px;
}

/* BACK LINE */
.services::before {
  content: "";
  position: absolute;
  left: -40px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

/* MOVING LINE */
.services::after {
  content: "";
  position: absolute;
  left: -41px;
  top: 0;
  width: 5px;
  height: var(--line-h, 80px);
  border-radius: 10px;

  background: linear-gradient(
    180deg,
    rgba(0, 183, 255, 0.9),
    rgba(0, 120, 255, 0.3),
    rgba(0, 183, 255, 0.9)
  );

  transform: translateY(var(--line-y, 0px));
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

/* GLASS */
.services .glass {
  position: absolute;
  left: -20px;
  top: 0;

  width: calc(100% + 60px);
  height: var(--active-h, 80px);

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(18px);

  border: 1px solid rgba(255, 255, 255, 0.5);

  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    0 10px 30px rgba(0, 0, 0, 0.1);

  transform: translateY(var(--y, 0px));
  transition: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
}

/* ITEMS */
.services li {
  position: relative;
  z-index: 2;
  font-size: 70px;
  font-weight: 600;
  color: rgb(169, 169, 169);
  margin: 35px 0;
  cursor: pointer;
  transition: 0.3s;
}

.services li.active {
  color: #000;
  transform: scale(1.03);
}

/* RIGHT */
.right {
  width: 40%;
  margin-top: 50px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.buttons span {
  background: #ddd;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
}

.buttons span.active {
  background: #0154a0 ;
  color: #fff;
}

.desc {
  margin: 20px 0;
  line-height: 1.7;
  font-size: 16px;
}

.learn {
  color: #0378a6;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.line {
  margin-top: 20px;
  height: 1px;
  background: black;
}

/* ========================= */
/* TABLET (≤1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .section {
    padding: 100px 40px;
  }

  .container99999 {
    gap: 40px;
  }

  .services li {
    font-size: 52px;
  }

  .right {
    width: 45%;
  }
}

/* ========================= */
/* TABLET (≤1024px) */
/* ========================= */
@media (max-width: 1024px) {
  .section {
    padding: 100px 40px;
  }

  .container99999 {
    gap: 40px;
  }

  .services li {
    font-size: clamp(40px, 5vw, 52px); /* ✅ smoother scaling */
  }

  .right {
    width: 45%;
  }
}

/* ========================= */
/* MOBILE (≤900px) */
/* ========================= */
@media (max-width: 900px) {
  .section {
    padding: 80px 20px;
    min-height: auto;
  }

  .container99999 {
    flex-direction: column;
    position: relative;
    top: 0;
    gap: 40px;
  }

  /* ✅ safe reset for sticky */
  .container99999 {
    position: static;
  }

  .services {
    padding-left: 20px;
  }

  .services::before {
    left: -20px;
  }

  .services::after {
    left: -21px;
  }

  .services li {
    font-size: clamp(28px, 6vw, 38px); /* ✅ better scaling */
    margin: 22px 0;
  }

  .right {
    width: 100%;
    margin-top: 0;
    padding: 0 5px; /* ✅ better spacing */
  }
}

/* ========================= */
/* SMALL MOBILE (≤500px) */
/* ========================= */
@media (max-width: 500px) {
  .services li {
    font-size: 26px;
  }

  .buttons span {
    font-size: 12px;
    padding: 6px 14px;
  }

  .desc {
    font-size: 14px;
    line-height: 1.6;
  }

  .section {
    padding: 60px 15px;
  }
}













                                     /* <!-- /////////////////////SVC-SECTION --> */

.newsvc-section{
  padding:80px 20px;
}

.newsvc-container{
  max-width:1300px;
  margin:auto;
  text-align:center;
}

/* HEADING ANIMATION */
.newsvc-title,
.newsvc-desc{
  opacity:0;
  transform:translateY(60px);
  transition:all .7s ease;
}

.newsvc-title.newsvc-active,
.newsvc-desc.newsvc-active{
  opacity:1;
  transform:translateY(0);
}

.newsvc-title{
  font-size: 50px;
  font-weight: 600;
  margin-bottom:10px;
  color:#000;
}

.newsvc-title span{
  color: black;
}

.newsvc-desc{
  color:#000;
  margin-bottom: 40px;
}

/* GRID */
.newsvc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

/* ⭐ SCALE ANIMATION CARD */
.newsvc-card{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  border:2px solid transparent;

  opacity:0;
  transform:scale(0.75);   /* 👈 start small */
  transition:all .6s ease;
}

.newsvc-card.newsvc-active{
  opacity:1;
  transform:scale(1);      /* 👈 normal size */
}

/* HOVER */
.newsvc-card:hover{
  transform:scale(1.05);
  box-shadow:0 15px 35px rgba(0,0,0,0.15);
  border-color:#0158A7;
}

/* IMAGE */
.newsvc-card img{
  width:100%;
  height:190px;
  object-fit:cover;
}

/* CONTENT */
.newsvc-content{
  padding:22px;
  text-align:center;
}

.newsvc-heading{
  font-size:18px;
  margin-bottom:10px;
  color:#000;
}

/* LINE */
.newsvc-line{
  width:45px;
  height:3px;
  background:#ddd;
  margin:10px auto 15px;
  position:relative;
  overflow:hidden;
}

.newsvc-line::after{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:0%;
  height:100%;
  background:#0158A7;
  transition:width .4s ease;
}

.newsvc-card:hover .newsvc-line::after{
  width:100%;
}

/* TEXT */
.newsvc-text{
  font-size:14px;
  color:#000;
  line-height:1.6;
}

/* LINK */
.newsvc-link{
  position:relative;
  display:inline-block;
  margin-top:12px;
  color:#000;
  text-decoration:none;
  transition:.3s;
}

.newsvc-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:0%;
  height:2px;
  background:#0158A7;
  transition:width .3s ease;
}

.newsvc-link:hover{
  color:#0158A7;
}

.newsvc-link:hover::after{
  width:100%;
}
/* RESPONSIVE FIX ONLY */

/* TABLET */
@media (max-width: 1000px) {
  .newsvc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .newsvc-title {
    font-size: 28px;
  }

  .newsvc-desc {
    font-size: 15px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .newsvc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsvc-title {
    font-size: 22px;
  }

  .newsvc-desc {
    font-size: 14px;
  }

  .newsvc-card:hover {
    transform: scale(1.02); /* ✅ safer hover */
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .newsvc-section {
    padding: 60px 15px;
  }

  .newsvc-title {
    font-size: 20px;
  }

  .newsvc-text {
    font-size: 13px;
  }
}









                                   /* ////////////////dm-form-section //// */
  .dm-form-section {
  padding: 90px 20px;
  background: #fff;
}

.dm-container {
  max-width: 1300px;
  margin: auto;
}

/* TITLE */
.dm-title {
  text-align: center;
}

.dm-title h2 {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 50px;
}

/* FORM */
.dm-form {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

/* LEFT INPUTS */
.dm-left input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  margin-bottom: 25px;
  font-size: 16px;
  outline: none;
}

/* BUDGET */
.dm-budget {
  position: relative;
  cursor: pointer;
}

.dm-budget input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 16px 0;
  cursor: pointer;
  background: transparent;
}

.dm-arrow {
  position: absolute;
  right: 0;
  top: 18px;
}

/* DROPDOWN */
.dm-budget-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  display: none;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dm-budget-list div {
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.dm-budget-list div:hover {
  background: #f5f5f5;
}

/* OPEN STATE */
.dm-budget.active .dm-budget-list {
  display: block;
}

/* RIGHT */
.dm-right h4 {
  margin-bottom: 20px;
}

/* TAGS */
.dm-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.dm-tags input {
  display: none;
}

.dm-tags label span {
  padding: 8px 14px;
  border: 1px solid #ccc;
  border-radius: 20px;
  cursor: pointer;
  display: inline-block;
  transition: 0.3s;
}

.dm-tags input:checked + label span {
  background: #093d74;
  color: #fff;
}

/* BUTTON ROW */
.dm-full {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start; /* DESKTOP: LEFT */
  margin-top: 20px;
}

/* BUTTON */
.dm-btn {
  background: #093d74;
  color: #fff;
  padding: 14px 40px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 4px;
}

.dm-btn:hover {
  transform: translateY(-2px);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 900px) {
  .dm-form {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dm-title h2 {
    font-size: 34px;
  }

  .dm-full {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }
}

/* MOBILE */
@media (max-width: 600px) {

  .dm-form-section {
    padding: 60px 15px;
  }

  .dm-title h2 {
    font-size: 26px;
  }

  .dm-left input {
    font-size: 14px;
  }

  .dm-tags label span {
    font-size: 12px;
    padding: 6px 10px;
  }

  .dm-btn {
    width: 100%;
    padding: 12px;
  }

  .dm-full {
    justify-content: center; /* MOBILE: CENTER */
  }
}












.services789 {
  padding: 100px 40px;
  background: #fff;
}

/* CONTAINER */
.container789 {
  max-width: 1350px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.card789 {
  background: #f3f3f3;
  padding: 40px;
  min-height: 450px;
  border-radius: 20px;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  opacity: 0;
  transform: translateX(-80px);
  transition: all 0.8s ease;
}

.card789.show {
  opacity: 1;
  transform: translateX(0);
}

.card789:hover {
  transform: translateY(-8px);
}

/* NUMBER */
.number789 {
  font-size: 18px;
  font-weight: 600;
  color: #444;
}

/* TITLE */
.card789 h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-top: 20px;
}

/* LINE */
.line789 {
  width: 70px;
  height: 2px;
  background: #093D74;
  margin: 25px 0;
}

/* TEXT */
.card789 p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-top: 10px;
}

/* ========================= */
/* 🔥 RESPONSIVE BREAKPOINTS */
/* ========================= */

/* Large Tablets */
@media (max-width: 1200px) {
  .container789 {
    grid-template-columns: repeat(2, 1fr);
  }

  .card789 {
    padding: 30px;
  }

  .card789 h2 {
    font-size: 32px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .services789 {
    padding: 80px 20px;
  }

  .container789 {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .card789 {
    min-height: auto;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services789 {
    padding: 60px 15px;
  }

  .card789 {
    padding: 25px;
  }

  .card789 h2 {
    font-size: 26px;
  }

  .card789 p {
    font-size: 16px;
  }

  .number789 {
    font-size: 16px;
  }

  .line789 {
    width: 50px;
  }
}







/* ========================= */
/* 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;
  }
}


.dd-process-section{
display:block;
padding:70px 60px;
}

.dd-process-wrap{
max-width:1400px;
margin:auto;
display:flex;
gap:70px;
align-items:flex-start;
}


/* LEFT */

.dd-process-left{
width:48%;
}

.dd-process-count{
font-size:34px;
margin-bottom:30px;
display:block;
}

.dd-process-images{
  overflow: visible;
}

.dd-process-images img{
  width: 100%;
  height: auto;
  display: none;
  object-fit: contain;
}

.dd-process-images img.dd-active-image{
  display: block;
}


/* RIGHT */

.dd-process-right{
width:52%;
}

.dd-process-title{
font-size:58px;
font-weight:500;
line-height:1.1;
margin-bottom:30px;
}

.dd-process-text{
font-size:22px;
line-height:1.6;
margin-bottom:40px;
}



/* ACCORDION */

.dd-accordion-box{
border-top:1px solid #111;
padding:28px 0;
}

.dd-accordion-box:last-child{
border-bottom:1px solid #111;
}

.dd-accordion-head{
display:flex;
justify-content:space-between;
align-items:center;
cursor:pointer;
}

.dd-accordion-head h3{
font-size:30px;
font-weight:500;
}

.dd-arrow{
font-size:42px;
transition:.4s;
}

.dd-accordion-content{
max-height:0;
overflow:hidden;
transition:.5s ease;
}

.dd-accordion-content p{
padding-top:25px;
font-size:22px;
line-height:1.7;
max-width:90%;
}

.dd-accordion-box.dd-open .dd-accordion-content{
max-height:500px;
}

.dd-accordion-box.dd-open .dd-arrow{
transform:rotate(180deg);
}



/* Tablet */

@media(max-width:1100px){

.dd-process-wrap{
gap:50px;
}

.dd-process-title{
font-size:45px;
}

.dd-accordion-head h3{
font-size:25px;
}

.dd-accordion-content p{
font-size:18px;
}

.dd-process-images img{
height:500px;
}

}



/* Mobile */

@media(max-width:991px){

.dd-process-wrap{
flex-direction:column;
}

.dd-process-left,
.dd-process-right{
width:100%;
}

.dd-process-images img{
height:450px;
}

.dd-process-title{
font-size:38px;
}

}

@media(max-width:767px){

.dd-process-section{
padding:50px 20px;
}

.dd-process-title{
font-size:30px;
}

.dd-process-text{
font-size:17px;
}

.dd-accordion-head h3{
font-size:20px;
}

.dd-accordion-content p{
font-size:16px;
max-width:100%;
}

.dd-arrow{
font-size:30px;
}

.dd-process-images img{
height:280px;
}

}








/* ================= 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;
}

}