* {
  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;
  }
}



/* html,
body {
  width: 100%;
  overflow-x: hidden;
} */



/* ================= 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);
}

/* ❌ REMOVED SHAPES COMPLETELY */
/* .shape, .shape1, .shape2 removed */

/* ================= TABLET ================= */
@media (max-width: 992px) {
  .hero {
    justify-content: center;
    text-align: center;
    padding: 0 40px;
  }

  .hero h1 {
    margin-left: 0;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
    min-height: 80vh;
  }

  .hero h1 {
    margin-left: 0;
    font-size: clamp(28px, 8vw, 60px);
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
  }

  .hero h1 {
    font-size: clamp(24px, 9vw, 45px);
  }
}












                                             /* 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;
  }
}









/* ===============================
GLOBAL STYLES
=============================== */

section {
    padding: 100px 20px;
}

img {
    max-width: 100%;
    display: block;
    border-radius: 20px;
}

h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

h3 {
    font-size: 25px;
    margin-bottom: 10px;
}

p {
    line-height: 1.8;
    color: #555;
}

/* ===============================
BRAND SECTION
=============================== */

.brand-section {
    position: relative;
    background: linear-gradient(270deg, #ffffff, #eef2ff, #ffffff);
    background-size: 600% 600%;
    animation: bgMove 10s ease infinite;
    overflow: hidden;
}

/* container */
.brand-container1 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===============================
ANIMATION (SMOOTH PROFESSIONAL)
=============================== */

.brand-image {
    flex: 1;
    min-width: 300px;

    opacity: 0;
    transform: translateX(-100px);
    transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.brand-text {
    flex: 1;
    min-width: 300px;

    opacity: 0;
    transform: translateX(100px);
    transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* ACTIVE STATE */
.brand-image.active,
.brand-text.active {
    opacity: 1;
    transform: translateX(0);
}
/* ===============================
IMAGE STYLE
=============================== */

.brand-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.brand-image img:hover {
    transform: scale(1.05);
}

/* ===============================
FLOATING SHAPES
=============================== */

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: float 6s infinite ease-in-out;
}

.float1 {
    width: 120px;
    height: 120px;
    background: #093D74;
    top: 20%;
    left: 10%;
}

.float2 {
    width: 90px;
    height: 90px;
    background: #093D74;
    bottom: 15%;
    right: 15%;
}

.float3 {
    width: 70px;
    height: 70px;
    background: #093D74;
    top: 60%;
    left: 50%;
}

/* ===============================
ANIMATIONS
=============================== */

@keyframes bgMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 992px) {
    .brand-container1 {
        flex-direction: column;
        text-align: center;
    }

    .brand-image {
        transform: translateX(-60px);
    }

    .brand-text {
        transform: translateX(60px);
    }
}

@media (max-width: 576px) {
    h2 {
        font-size: 26px;
    }

    p {
        font-size: 15px;
    }
}



/* ===============================
SERVICES SECTION (BASE)
=============================== */

.services-section {
    position: relative;
    background: #000;
    overflow: hidden;
    padding: 100px 20px;
}

/* DOT BACKGROUND */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 2px, transparent 2px);
    background-size: 40px 40px;
    animation: moveDots 20s linear infinite;
    z-index: 0;
}

/* CONTENT WRAPPER */
.services-container2 {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===============================
ANIMATION ADD (IMPORTANT)
=============================== */

.services-left,
.services-right {
    flex: 1;
    min-width: 300px;
    color: #fff;

    opacity: 0;
    transition: all 1.1s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

/* LEFT TEXT → FROM LEFT */
.services-left {
    transform: translateX(-120px);
}

/* RIGHT IMAGE → FROM RIGHT */
.services-right {
    transform: translateX(120px);
}

/* ACTIVE STATE */
.services-left.active,
.services-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT STYLE */
.description {
    line-height: 1.8;
    color: white;
}

/* IMAGE */
.services-right img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: 0.4s;
}

.services-right img:hover {
    transform: scale(1.05);
}

/* DOT ANIMATION */
@keyframes moveDots {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

/* RESPONSIVE */
@media(max-width:900px) {
    .services-container2 {
        flex-direction: column;
        text-align: center;
    }

    .services-right img {
        width: 90%;
        margin: auto;
    }
}









/* ===============================
APP SECTION
=============================== */

.app-section {
    background: #f7f7f7;
    overflow: hidden;
}

.app-container3 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Default hidden state */
.app-image,
.app-content {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transition: all 0.8s ease;
}

.app-image,
.app-content {
    transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Image starts from left */
.app-image {
    transform: translateX(-100px);
}

/* Content starts from right */
.app-content {
    transform: translateX(100px);
}

/* Active animation */
.app-show .app-image {
    opacity: 1;
    transform: translateX(0);
}

.app-show .app-content {
    opacity: 1;
    transform: translateX(0);
}

/* Image hover effect */
.app-image img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: 0.4s;
}

.app-image img:hover {
    transform: scale(1.05);
}





/* ===============================
VIDEO SECTION
=============================== */

.video-section {
    position: relative;
    padding: 100px 20px;
    background: #000;
    overflow: hidden;
}

/* ===============================
TRIANGLE SHAPES
=============================== */

.video-section span {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid rgba(249, 245, 245, 0.98);
    animation: triangleMove 10s linear infinite;
}

.video-section span:nth-child(1) {
    left: 10%;
    top: 90%;
    animation-duration: 12s;
}

.video-section span:nth-child(2) {
    left: 35%;
    top: 95%;
    animation-duration: 9s;
}

.video-section span:nth-child(3) {
    left: 60%;
    top: 85%;
    animation-duration: 11s;
}

.video-section span:nth-child(4) {
    left: 80%;
    top: 92%;
    animation-duration: 10s;
}

/* TRIANGLE ANIMATION */

@keyframes triangleMove {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(-900px) rotate(360deg);
        opacity: 0;
    }
}

/* ===============================
CONTAINER
=============================== */

.video-container4 {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===============================
BASE
=============================== */

.video-text,
.video-image {
    flex: 1;
    min-width: 300px;
}

/* ===============================
SCROLL ANIMATION
CONTENT LEFT SE
IMAGE RIGHT SE
=============================== */

.video-text {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 0.9s ease;
}

.video-image {
    opacity: 0;
    transform: translateX(120px);
    transition: all 0.9s ease;
}

/* ACTIVE STATE */

.video-text.show {
    opacity: 1;
    transform: translateX(0);
}

.video-image.show {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

/* ===============================
TEXT STYLE
=============================== */

.video-text {
    color: #fff;
}

.video-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.video-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #bbb;
}

.video-description {
    font-size: 17px;
    line-height: 1.8;
    color: #ddd;
}

/* ===============================
IMAGE STYLE
=============================== */

.video-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.video-image img:hover {
    transform: scale(1.05);
}

/* ===============================
REMOVE OLD FADE EFFECT
=============================== */

.fade,
.delay-1,
.delay-2 {
    opacity: inherit;
    animation: none !important;
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

    .video-section {
        padding: 80px 20px;
    }

    .video-container4 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .video-title {
        font-size: 32px;
    }

    .video-subtitle {
        font-size: 20px;
    }

    .video-description {
        font-size: 16px;
    }

    .video-image img {
        width: 90%;
        margin: auto;
    }

    /* MOBILE PAR BOTTOM SE */

    .video-text,
    .video-image {
        transform: translateY(80px);
    }

    .video-text.show,
    .video-image.show {
        opacity: 1;
        transform: translateY(0);
    }

    .video-image.show {
        transition-delay: 0.2s;
    }
}

@media (max-width: 576px) {

    .video-section {
        padding: 60px 15px;
    }

    .video-title {
        font-size: 28px;
    }

    .video-subtitle {
        font-size: 18px;
    }

    .video-description {
        font-size: 15px;
        line-height: 1.7;
    }
}





/* ===============================
DIGITAL MARKETING SECTION
=============================== */

.dm-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

/* CONTAINER */
.dm-container5 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* LEFT + RIGHT COLUMNS */
.dm-image,
.dm-text {
    flex: 1;
    min-width: 300px;

    /* animation base */
    opacity: 0;
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

/* LEFT SIDE START POSITION */
.dm-image {
    transform: translateX(-100px);
}

/* RIGHT SIDE START POSITION */
.dm-text {
    transform: translateX(100px);
}

/* WHEN SCROLL ACTIVE */
.dm-image.show,
.dm-text.show {
    opacity: 1;
    transform: translateX(0);
}

/* IMAGE STYLE */
.dm-image img {
    width: 100%;
    display: block;
    border-radius: 10px;
    transition: 0.4s ease;
}

/* HOVER EFFECT */
.dm-image img:hover {
    transform: scale(1.05);
}

/* TEXT STYLING */
.dm-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #111;
}

.dm-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dm-container5 {
        flex-direction: column;
        text-align: center;
    }

    .dm-image,
    .dm-text {
        transform: translateY(60px);
    }

    .dm-image.show,
    .dm-text.show {
        transform: translateY(0);
    }
}







/* ===============================
UI UX SECTION
=============================== */

.uiux-section {
    position: relative;
    background: #000;
    padding: 100px 20px;
    overflow: hidden;
}

/* DOT BACKGROUND ANIMATION */
.uiux-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.25) 2px, transparent 2px);
    background-size: 40px 40px;
    animation: moveDots 20s linear infinite;
    z-index: 0;
}

/* CONTAINER */
.uiux-container6 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* TEXT + IMAGE BASE */
.uiux-text,
.uiux-image {
    flex: 1;
    min-width: 300px;

    opacity: 0;
    transition: all 0.8s ease;
    will-change: transform, opacity;
}

/* LEFT TEXT START */
.uiux-text {
    transform: translateX(-120px);
}

/* RIGHT IMAGE START */
.uiux-image {
    transform: translateX(120px);
}

/* ACTIVE STATE */
.uiux-text.show,
.uiux-image.show {
    opacity: 1;
    transform: translateX(0);
}

/* TEXT STYLE */
.uiux-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #fff;
}

.uiux-subtitle {
    font-size: 26px;
    margin-bottom: 15px;
    color: #bbb;
}

.uiux-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ddd;
}

/* IMAGE STYLE */
.uiux-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

/* IMAGE HOVER */
.uiux-image img:hover {
    transform: scale(1.05);
}

/* DOT ANIMATION */
@keyframes moveDots {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-120px, -120px);
    }
}

/* RESPONSIVE */
@media(max-width:900px) {

    .uiux-container6 {
        flex-direction: column;
        text-align: center;
    }

    .uiux-title {
        font-size: 28px;
    }

    .uiux-subtitle {
        font-size: 22px;
    }

    .uiux-image img {
        width: 90%;
        margin: auto;
    }

    /* MOBILE ANIMATION FIX */
    .uiux-text,
    .uiux-image {
        transform: translateY(60px);
    }

    .uiux-text.show,
    .uiux-image.show {
        transform: translateY(0);
    }
}






/* ===============================
OVERLAY SECTION
=============================== */

.overlay-section {
    position: relative;
    background: #fff;
    padding: 100px 20px;
    overflow: hidden;
}

/* CONTAINER */
.overlay-container7 {
    max-width: 1300px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===============================
ANIMATION BASE
=============================== */

.overlay-image,
.overlay-text {
    flex: 1;
    min-width: 300px;
    opacity: 0;
    transition: all 0.9s ease;
    will-change: transform, opacity;
}

/* IMAGE LEFT SE AYE */
.overlay-image {
    transform: translateX(-120px) scale(0.95);
}

/* CONTENT RIGHT SE AYE */
.overlay-text {
    transform: translateX(120px) scale(0.95);
}

/* SHOW ANIMATION */
.overlay-image.show,
.overlay-text.show {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* CONTENT THODA DELAY SE AYE */
.overlay-text.show {
    transition-delay: 0.25s;
}

/* ===============================
IMAGE STYLING
=============================== */

.overlay-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.overlay-image img:hover {
    transform: scale(1.05);
}

/* ===============================
TEXT STYLING
=============================== */

.overlay-text {
    color: #000;
}

.overlay-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.overlay-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.overlay-description {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

    .overlay-section {
        padding: 80px 20px;
    }

    .overlay-container7 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .overlay-image,
    .overlay-text {
        transform: translateY(80px) scale(0.95);
    }

    .overlay-image.show,
    .overlay-text.show {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .overlay-text.show {
        transition-delay: 0.2s;
    }

    .overlay-title {
        font-size: 32px;
    }

    .overlay-subtitle {
        font-size: 20px;
    }

    .overlay-description {
        font-size: 16px;
    }
}

@media (max-width: 576px) {

    .overlay-section {
        padding: 60px 15px;
    }

    .overlay-title {
        font-size: 28px;
    }

    .overlay-subtitle {
        font-size: 18px;
    }

    .overlay-description {
        font-size: 15px;
        line-height: 1.7;
    }
}







/* ===============================
APP UI UX SECTION
=============================== */

.appui-section {
    position: relative;
    background: #000;
    padding: 100px 20px;
    overflow: hidden;
}

/* ===============================
DOT BACKGROUND
=============================== */

.appui-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.25) 2px,
        transparent 2px
    );
    background-size: 40px 40px;
    animation: dotMove 20s linear infinite;
    z-index: 0;
}

/* ===============================
CONTAINER
=============================== */

.appui-container8 {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* ===============================
TEXT & IMAGE
=============================== */

.appui-text,
.appui-image {
    flex: 1;
    min-width: 300px;
}

/* ===============================
SCROLL ANIMATION
=============================== */

/* CONTENT LEFT SE AYE */
.appui-text {
    opacity: 0;
    transform: translateX(-120px);
    transition: all 0.9s ease;
}

/* IMAGE RIGHT SE AYE */
.appui-image {
    opacity: 0;
    transform: translateX(120px);
    transition: all 0.9s ease;
}

/* ACTIVE STATE */

.appui-text.show {
    opacity: 1;
    transform: translateX(0);
}

.appui-image.show {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
}

/* ===============================
TEXT STYLING
=============================== */

.appui-text {
    color: #fff;
}

.appui-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.appui-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #bbb;
}

.appui-description {
    font-size: 17px;
    line-height: 1.8;
    color: #ddd;
}

/* ===============================
IMAGE STYLING
=============================== */

.appui-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
}

.appui-image img:hover {
    transform: scale(1.05);
}

/* ===============================
REMOVE OLD FADE ANIMATION
=============================== */

.fade,
.delay-1,
.delay-2 {
    animation: none !important;
}

/* ===============================
DOT BACKGROUND ANIMATION
=============================== */

@keyframes dotMove {

    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-120px, -120px);
    }

}

/* ===============================
RESPONSIVE
=============================== */

@media (max-width: 900px) {

    .appui-section {
        padding: 80px 20px;
    }

    .appui-container8 {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .appui-title {
        font-size: 32px;
    }

    .appui-subtitle {
        font-size: 20px;
    }

    .appui-description {
        font-size: 16px;
    }

    .appui-image img {
        width: 90%;
        margin: auto;
    }

    /* MOBILE PAR BOTTOM SE AYE */

    .appui-text,
    .appui-image {
        transform: translateY(80px);
    }

    .appui-text.show,
    .appui-image.show {
        opacity: 1;
        transform: translateY(0);
    }

    .appui-image.show {
        transition-delay: 0.2s;
    }
}

@media (max-width: 576px) {

    .appui-section {
        padding: 60px 15px;
    }

    .appui-title {
        font-size: 28px;
    }

    .appui-subtitle {
        font-size: 18px;
    }

    .appui-description {
        font-size: 15px;
        line-height: 1.7;
    }
}






























    
/* ================== WP BENEFITS SECTION ================== */

.wp-benefits{
    padding:100px 8%;
    background:#fff;
    color:#0b0b0b;
    overflow:hidden;
}

.wp-benefits .container{
    max-width:1300px;
    margin:0 auto;
}

.benefits-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
    flex-wrap:wrap;
}

/* ================== IMAGE ================== */

.benefits-content .image{
    flex:1 1 500px;
    text-align:center;

    opacity:0;
    transform:translateX(-120px);
}

.benefits-content .image.active{
    animation:benefitsImgLeft 1s ease forwards;
}

.benefits-content .image img{
    width: 100%;
    max-width: 650px;
    height: 400px;   /* 👈 yahan height increase kar do */
    object-fit: cover;

    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

/* ================== TEXT ================== */

.benefits-content .text{
    flex:1 1 500px;

    opacity:0;
    transform:translateX(120px);
}

.benefits-content .text.active{
    animation:benefitsTextRight 1s ease forwards;
}

.benefits-content .text h2{
    font-size:45px;
    margin-bottom:25px;
    color:#000;
    line-height:1.2;
}

.benefits-content .text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:25px;
    color:#000;
}

/* ================== LIST ================== */

.benefits-list{
    list-style:none;
    padding:0;
    margin-bottom:35px;
}

.benefits-list li{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:15px;
    font-size:16px;
}

.benefits-list li i{
    color:#00f5ff;
    font-size:20px;
    transition:.3s;
}

.benefits-list li:hover i{
    color:#093D74;
}

/* ================== ANIMATIONS ================== */

@keyframes benefitsImgLeft{
    0%{
        opacity:0;
        transform:translateX(-120px);
    }
    100%{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes benefitsTextRight{
    0%{
        opacity:0;
        transform:translateX(120px);
    }
    100%{
        opacity:1;
        transform:translateX(0);
    }
}

/* ================== TABLET ================== */

@media(max-width:992px){

    .wp-benefits{
        padding:80px 5%;
    }

    .benefits-content{
        flex-direction:column;
        text-align:center;
        gap:40px;
    }

    .benefits-content .image,
    .benefits-content .text{
        flex:1 1 100%;
    }

    .benefits-content .text h2{
        font-size:34px;
    }

    .benefits-content .text p{
        font-size:16px;
    }

    .benefits-list li{
        justify-content:center;
        font-size:15px;
    }
}

/* ================== MOBILE ================== */

@media(max-width:768px){

    .wp-benefits{
        padding:60px 20px;
    }

    .benefits-content .text h2{
        font-size:28px;
    }

    .benefits-content .text p{
        font-size:15px;
        line-height:1.7;
    }

    .benefits-content .image img{
        max-width:100%;
        height:auto;
    }
}

/* ================== SMALL MOBILE ================== */

@media(max-width:480px){

    .wp-benefits{
        padding:50px 15px;
    }

    .benefits-content .text h2{
        font-size:24px;
    }

    .benefits-content .text p{
        font-size:14px;
    }

    .benefits-list li{
        font-size:14px;
    }
}










/* ================= 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;
}

}