/* ===== GLOBAL SAFE WIDTH ===== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

/* ===== PRELOADER ===== */

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;

  background: #fff;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  overflow: hidden;

  z-index: 999999;

  transition: transform 0.9s ease-in-out;
}

.preloader.hide {
  transform: translateY(-100%);
}

/* ===== NAV ===== */

/* @import url("responsive.css"); */

.custom-nav {
  position: sticky;
  top: 0;
  z-index: 100;
}

/* ===== DIAMOND ===== */

.diamond {
  position: relative;

  width: 160px;
  height: 160px;

  transform: rotate(45deg);

  border: 4px solid #0183c6;

  display: flex;
  justify-content: center;
  align-items: center;

  animation: morph 3s ease-in-out infinite;
}

@keyframes morph {
  0% {
    transform: rotate(45deg) scale(1);

    border-radius: 0;
  }

  50% {
    transform: rotate(45deg) scale(1.2);

    border-radius: 20%;
  }

  100% {
    transform: rotate(45deg) scale(1);

    border-radius: 0;
  }
}

/* ===== GLOW ===== */

.diamond::before {
  content: "";

  position: absolute;

  inset: 10px;

  filter: blur(10px);

  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

/* ===== OUTER FRAME ===== */

.frame {
  position: absolute;

  width: 220px;

  height: 220px;

  border: 2px dashed rgba(15, 187, 239, 0.75);

  transform: rotate(45deg);

  animation: rotateFrame 10s linear infinite;
}

@keyframes rotateFrame {
  from {
    transform: rotate(45deg);
  }

  to {
    transform: rotate(405deg);
  }
}

/* ===== LOGO ===== */

.logo {
  width: 200px;

  max-width: 70vw;

  height: auto;

  object-fit: contain;

  transform: rotate(-45deg);

  filter: blur(10px);

  animation: zoomIn 1.5s ease forwards;

  z-index: 2;
}

@keyframes zoomIn {
  to {
    filter: blur(0);

    transform: rotate(-45deg) scale(1);
  }
}

/* ============================
   BOTTOM HORIZONTAL LINES
============================ */

.loading-lines {
  position: absolute;

  left: 50%;

  bottom: 50px;

  transform: translateX(-50%);

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 300px;

  width: 100%;
}

.loading-lines span {
  width: 140px;

  height: 6px;

  background: #0183c6;

  border-radius: 100px;
}

/* ============================
      RESPONSIVE DESIGN
============================ */

/* Large Laptop */

@media (max-width: 1200px) {
  .diamond {
    width: 140px;

    height: 140px;
  }

  .frame {
    width: 200px;

    height: 200px;
  }

  .logo {
    width: 170px;
  }

  .loading-lines {
    gap: 250px;
  }

  .loading-lines span {
    width: 120px;
  }
}

/* Tablet */

@media (max-width: 768px) {
  .diamond {
    width: 120px;

    height: 120px;

    border-width: 3px;
  }

  .frame {
    width: 170px;

    height: 170px;
  }

  .logo {
    width: 140px;
  }

  .loading-lines {
    bottom: 35px;

    gap: 120px;
  }

  .loading-lines span {
    width: 90px;

    height: 5px;
  }
}

/* Mobile */

@media (max-width: 480px) {
  .diamond {
    width: 90px;

    height: 90px;

    border-width: 3px;
  }

  .frame {
    width: 130px;

    height: 130px;

    border-width: 1px;
  }

  .logo {
    width: 105px;
  }

  .loading-lines {
    bottom: 25px;

    gap: 45px;
  }

  .loading-lines span {
    width: 65px;

    height: 4px;
  }
}

/* Small Mobile */

@media (max-width: 360px) {
  .diamond {
    width: 75px;

    height: 75px;
  }

  .frame {
    width: 110px;

    height: 110px;
  }

  .logo {
    width: 90px;
  }

  .loading-lines {
    gap: 25px;
  }

  .loading-lines span {
    width: 50px;
  }
}

/* Ultra Wide Screens */

@media (min-width: 1600px) {
  .diamond {
    width: 190px;

    height: 190px;
  }

  .frame {
    width: 260px;

    height: 260px;
  }

  .logo {
    width: 230px;
  }

  .loading-lines {
    gap: 500px;
  }

  .loading-lines span {
    width: 170px;
  }
}

/* Mobile Landscape */

@media (max-height: 500px) and (orientation: landscape) {
  .preloader {
    height: 100svh;
  }

  .diamond {
    width: 90px;

    height: 90px;
  }

  .frame {
    width: 130px;

    height: 130px;
  }

  .logo {
    width: 100px;
  }

  .loading-lines {
    bottom: 15px;
  }

  .loading-lines span {
    width: 70px;

    height: 4px;
  }
}

/* Extra Small Devices */

@media (max-width: 320px) {
  .diamond {
    width: 65px;

    height: 65px;
  }

  .frame {
    width: 100px;

    height: 100px;
  }

  .logo {
    width: 75px;
  }

  .loading-lines {
    gap: 15px;
  }

  .loading-lines span {
    width: 40px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial;
}



.custom-nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.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: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;

  padding: 0 clamp(20px, 6vw, 80px); /* responsive padding */
  overflow: hidden;
  text-align: left;
}

/* CONTENT */
.content-container {
  max-width: 1200px;
  z-index: 2;
  width: 100%;
}

/* HEADING */
.hero h1 {
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 600;
  line-height: 1.1;
  margin-left: 55px; /* tighter look */
  color: #000;
  letter-spacing: -2px;
}

/* ================= IMAGE RESPONSIVE ================= */
.hero img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 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); }

/* ================= SHAPES ================= */
.shape {
  position: absolute;
  width: clamp(60px, 12vw, 180px);
  height: clamp(60px, 12vw, 180px);
  background: #0378a6;
  transform: rotate(45deg);
  z-index: 1;
}

.shape1 {
  top: 30%;
  right: 15%;
}
.shape2 {
  top: 25%;
  right: 8%;
}


/* ================= MOBILE ================= */

@media (max-width: 992px){

  .hero{
    min-height:70vh;
    justify-content:flex-start;
    text-align:left;
    padding:0 25px;
  }

  .hero h1{
    margin-left:0;
    margin-top:40px;
    max-width:100%;
  }

  .shape{
    transform:rotate(45deg) scale(.75);
    transform-origin:center;
  }

  .shape1{
    top:30%;
    right:15%;
  }

  .shape2{
    top:25%;
    right:8%;
  }
}


@media (max-width:768px){

  .shape{
    transform:rotate(45deg) scale(.6);
  }

  .shape1{
    top:30%;
    right:15%;
  }

  .shape2{
    top:25%;
    right:8%;
  }
}


@media (max-width:480px){

  .hero{
    min-height:70vh;
    padding:0 20px;
  }

  .hero h1{
    font-size:34px;
    margin-top:60px;
    line-height:1.1;
  }

  .shape{
    transform:rotate(45deg) scale(.5);
  }

  .shape1{
    top:30%;
    right:15%;
  }

  .shape2{
    top:25%;
    right:8%;
  }
}


@media (max-width:430px){

  .hero{
    min-height:65vh;
    padding:0 15px;
    justify-content:flex-start;
    text-align:left;
  }

  .hero h1{
    font-size:34px;
    line-height:1.1;
    margin-top:60px;
    margin-left:0;
    padding-left:0;
    max-width:100%;
  }

  /* Desktop jaisa shape */
  .shape{
    width:180px;
    height:180px;
    transform:rotate(45deg) scale(.45);
    transform-origin:center;
  }

  .shape1{
    top:30%;      /* Desktop jaisa */
    right:15%;    /* Desktop jaisa */
  }

  .shape2{
    top:25%;      /* Desktop jaisa */
    right:8%;     /* Desktop jaisa */
  }

  .bg-lines::before,
  .bg-lines::after{
    opacity:.3;
  }
}



/* 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: 30%; /* ✅ overlap avoid */
  }

  .stats-box.show .stats-line {
    width: 60%;
  }
}

/* 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 */
  }
}

/* SECTION WRAPPER */

.container0000 {
  display: flex;
  max-width: 1300px;
  margin: 100px auto;
  gap: 60px;
  align-items: center;
  padding: 0 20px;
}

/* VIDEO */
.video-container {
  flex: 1;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.9s ease;
}

.video-container video {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* TEXT */
.text-container {
  flex: 1;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.9s ease;
}

.text-container h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black;
}

.text-container p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
}

/* ACTIVE STATE */
.container0000.show .video-container,
.container0000.show .text-container {
  opacity: 1;
  transform: translateX(0);
}

/* TABLET */
@media (max-width: 992px) {
  .container0000 {
    flex-direction: column;
  }

  .video-container,
  .text-container {
    transform: translateY(60px);
  }

  .container0000.show .video-container,
  .container0000.show .text-container {
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .text-container h2 {
    font-size: 24px;
  }

  .text-container p {
    font-size: 14px;
  }
}

/* <!-- ///////////////////////stats-section//////// --> */

/* SECTION */
.stats-section {
  background: linear-gradient(90deg, #86c5ff 0%, #65d9f0 100%);
  padding: 80px 8%;
  text-align: center;
}

/* H1 */
.stats-section h1 {
  font-size: 45px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: black;
  margin-bottom: 45px;
  position: relative;
  display: inline-block;
}

/* .stats-section h1::after {
  content: "";
  width: 200px;
  height: 5px;
  background: #0158A7;
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  border-radius: 50px;
} */

/* H2 */
.stats-section h2 {
  max-width: 1200px;
  margin: 0 auto 80px;
  font-size: clamp(32px, 6vw, 60px);
  line-height: 1.1;
  font-weight: 700;
  color: black;
}

/* STATS */
.stats-row1 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 250px;
}

.stat-number {
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  color: black;
  line-height: 1;
}

.stat-text {
  margin-top: 20px;
  font-size: clamp(16px, 2.5vw, 22px);
  color: black;
  font-weight: 500;
}

/* BUTTON (✅ SMALLER) */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 260px; /* ✅ smaller */
  height: 60px; /* ✅ smaller */
  background: #0154a0;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px; /* ✅ smaller */
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  transform: translateY(-5px);
  color: #0158a7;
  cursor: pointer;
}

/* ANIMATION */
.animate-item {
  opacity: 0;
  transform: translateY(80px);
  transition: all 0.9s ease;
}

.animate-item.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-0 {
  transition-delay: 0s;
}
.delay-1 {
  transition-delay: 0.2s;
}
.delay-2 {
  transition-delay: 0.5s;
}
.delay-3 {
  transition-delay: 0.8s;
}
.delay-4 {
  transition-delay: 1.1s;
}
.delay-5 {
  transition-delay: 1.4s;
}

/* ================= TABLET ================= */
@media (max-width: 991px) {
  .stats-section {
    padding: 80px 30px;
    text-align: center;
  }

  .stats-section h1 {
    font-size: 16px;
    letter-spacing: 2px;
  }

  .stats-section h2 {
    margin-bottom: 60px;
    text-align: center;
    max-width: 700px; /* ✅ fix uneven text */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
  }

  .stats-row1 {
    flex-direction: column;
    gap: 50px;
    align-items: center;
  }

  .stat-item {
    text-align: center;
  }

  .cta-btn {
    width: 200px;
    height: 55px;
    font-size: 16px;
    margin: 0 auto;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
  .stats-section {
    padding: 70px 20px;
    text-align: center;
  }

  .stats-section h1 {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .stats-section h1::after {
    width: 40px;
    height: 2px;
  }

  .stats-section h2 {
    margin-bottom: 50px;
    text-align: center;
    max-width: 100%; /* ✅ full width mobile */
    line-height: 1.2;
  }

  .stats-row1 {
    align-items: center;
  }

  .stat-item {
    text-align: center;
  }

  .stat-number {
    font-size: 70px;
  }

  .stat-text {
    font-size: 18px;
  }

  .cta-btn {
    width: 180px;
    height: 50px;
    font-size: 15px;
    margin: 0 auto;
  }
}

/* keygrid-wrapper */

.keygrid-wrapper {
  max-width: 1300px;
  margin: auto;
  padding: 80px 20px;
  margin-top: 80px;
}

.keygrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT VIDEO */
.intro-start-video {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 500px;
}

.intro-start-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
}

/* RIGHT CONTENT */
.keygrid-maintitle {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
  line-height: 1.2;
}

.keygrid-description {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  max-width: 520px;
}

/* =========================
   SCROLL ANIMATION
========================= */

/* initial state */
.keygrid-col__c,
.keygrid-col__b {
  opacity: 0;
  transition: all 0.8s ease;
}

/* left video */
.keygrid-col__c {
  transform: translateX(-100px);
}

/* right content */
.keygrid-col__b {
  transform: translateX(100px);
}

/* active state */
.keygrid-wrapper.show .keygrid-col__c,
.keygrid-wrapper.show .keygrid-col__b {
  opacity: 1;
  transform: translateX(0);
}

/* RESPONSIVE FIX */

@media (max-width: 1024px) {
  .keygrid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .intro-start-video {
    height: 420px; /* ✅ balanced */
  }

  .keygrid-maintitle {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .keygrid-wrapper {
    padding: 60px 15px;
  }

  .intro-start-video {
    height: 300px; /* ✅ better mobile */
  }

  .keygrid-maintitle {
    font-size: 26px;
  }

  .keygrid-description {
    font-size: 15px;
  }

  /* animation smooth */
  .keygrid-col__c,
  .keygrid-col__b {
    transform: translateY(40px); /* ✅ better than X */
  }

  .keygrid-wrapper.show .keygrid-col__c,
  .keygrid-wrapper.show .keygrid-col__b {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .intro-start-video {
    height: 250px;
  }

  .keygrid-maintitle {
    font-size: 22px;
  }

  .keygrid-description {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* SECTION */
.section {
  min-height: 90vh;
  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 0.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 0.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 0.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: 15px;
  color: #000;
  text-decoration: none;
  transition: 0.3s;
}

.newsvc-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #0158a7;
  transition: width 0.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;
  }
}

/* ///////////////////// FAQ SECTION //////////////////////////////// */

.faq-main-sec {
  padding: 80px 20px;
  background: #f8f8f8;
  font-family: Arial;
}

.faq-container03 {
  max-width: 1300px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
}

.faq-check {
  display: none;
}

.faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 30px;
  font-weight: 600;
  cursor: pointer;
}

.faq-plus {
  font-size: 26px;
  transition: 0.3s;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-check:checked ~ .faq-content {
  max-height: 600px;
  margin-top: 20px;
}

.faq-check:checked + .faq-title .faq-plus {
  transform: rotate(45deg);
}

.faq-grid {
  display: flex;
  gap: 30px;
  align-items: center;
}

.faq-image img {
  width: 260px;
  border-radius: 10px;
}

.faq-text {
  flex: 1;
}

.faq-text ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq-text li {
  margin-bottom: 6px;
}

/* TABLET FIX */
@media (max-width: 1024px) {
  .faq-heading {
    font-size: 30px;
  }

  .faq-title {
    font-size: 22px;
  }

  .faq-image img {
    width: 220px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .faq-image img {
    width: 100%;
  }

  .faq-title {
    font-size: 18px;
  }

  .faq-heading {
    font-size: 24px;
  }

  .faq-main-sec {
    padding: 60px 15px;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .faq-heading {
    font-size: 20px;
  }

  .faq-title {
    font-size: 16px;
  }

  .faq-text {
    font-size: 14px;
  }
}

/*==========================
        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, 0.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: 0.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: 0.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: 0.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, 0.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;
  }
}

      .support-box {
        position: fixed;
        right: 25px;
        bottom: 25px;
        z-index: 9999;
      }

      /* BUTTONS */

      .ai-box {
        margin-bottom: 15px;
      }

      .ai-btn,
      .wa-btn {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;

        color: white;

        box-shadow: 0 10px 30px #0004;
      }

      /* AI BUTTON */

      .ai-btn {
        background: linear-gradient(135deg, #6c5ce7, #00bfff);

        font-size: 25px;

        animation: pulseAI 2s infinite;
      }

      @keyframes pulseAI {
        0% {
          box-shadow: 0 0 0 0 rgba(108, 92, 231, 0.6);
        }

        70% {
          box-shadow: 0 0 0 18px rgba(108, 92, 231, 0);
        }

        100% {
          box-shadow: 0 0 0 0 rgba(108, 92, 231, 0);
        }
      }

      /* WHATSAPP */

      .wa-btn {
        background: #20d466;

        animation: pulseWA 2s infinite;
      }

      .wa-btn svg {
        width: 32px;
        fill: white;
      }

      @keyframes pulseWA {
        0% {
          box-shadow: 0 0 0 0 rgba(32, 212, 102, 0.6);
        }

        70% {
          box-shadow: 0 0 0 18px rgba(32, 212, 102, 0);
        }

        100% {
          box-shadow: 0 0 0 0 rgba(32, 212, 102, 0);
        }
      }

      /* POPUP COMMON */

      .popup {
        position: absolute;
        right: 0;
        bottom: 75px;
        width: 380px;
        height: 600px;
        background: white;
        border-radius: 25px;
        overflow: hidden;
        box-shadow: 0 25px 60px #0005;
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        pointer-events: none;
        transition: 0.4s;
      }

      .popup.active {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
      }

      /* AI HEADER */

      .ai-header {
        height: 200px;
        background: #020b32;
        color: white;
        padding: 25px;
        position: relative;
      }

      .logo0 {
        font-size: 22px;
        font-weight: 800;
      }

      .ai-header h1 {
        font-size: 32px;
        line-height: 1.2;
        margin-top: 45px;
      }

      .close {
        position: absolute;
        right: 20px;
        top: 20px;
        font-size: 30px;
        cursor: pointer;
      }

      /* AI HOME */

      .ai-body {
        padding: 20px;
        height: 320px;
        overflow: auto;
      }

      .send-msg {
        background: white;
        border: 1px solid #ddd;
        padding: 18px;
        border-radius: 15px;
        display: flex;
        justify-content: space-between;
        cursor: pointer;
        box-shadow: 0 5px 20px #0001;
        font-weight: 600;
      }

      .search {
        margin-top: 15px;
        background: #f4f4f4;
        padding: 14px;
        border-radius: 12px;
      }

      .search input {
        border: none;
        background: none;
        outline: none;
      }

      /* ARTICLES */

      .article {
        padding: 18px 5px;
        color: #555;
        border-bottom: 1px solid #eee;
      }

      .article:hover {
        background: #f9f9f9;
        cursor: pointer;
      }

      /* CHAT */

.chat-area{
    display:none;
    flex-direction:column;
    height:calc(100% - 280px);
}

.messages{
    flex:1;
    overflow-y:auto;
    padding:15px;
}

      .msg {
        background: #f1f1f1;
        padding: 12px;
        border-radius: 12px;
        margin-bottom: 10px;
      }

      .user {
        background: #6c5ce7;
        color: white;
        margin-left: 50px;
      }

      .chat-input {
        display: flex;
        padding: 10px;
        gap: 8px;
      }

      .chat-input input {
        flex: 1;
        padding: 12px;
        border-radius: 25px;
        border: 1px solid #ddd;
      }

      .chat-input button {
        border: none;
        background: #6c5ce7;
        color: white;
        border-radius: 50%;
        width: 45px;
      }

      .chat-input{
    flex-shrink:0;
}

      /* WHATSAPP */

      .wa-header {
        background: #20d466;
        color: white;
        padding: 20px;
        display: flex;
        justify-content: space-between;
      }

      .wa-header button {
        background: none;
        border: 0;
        color: white;
        font-size: 28px;
      }

      .wa-body {
        padding: 20px;
      }

      .wa-body p {
        background: #f3f3f3;
        padding: 15px;
        border-radius: 12px;
      }

      .wa-body a {
        display: block;
        background: #20d466;
        color: white;
        padding: 14px;
        text-align: center;
        border-radius: 30px;
        text-decoration: none;
        font-weight: bold;
      }

      /* FOOTER */

      .footer1 {
        height: 80px;
        border-top: 1px solid #ddd;
        display: flex;
        justify-content: space-around;
        align-items: center;
      }

      .footer1 div {
        font-size: 13px;
        color: #777;
      }

      .footer1 div:hover {
        color: #000;
        cursor: pointer;
      }

      /* MOBILE */

      @media (max-width: 500px) {
        .popup {
          width: 320px;

          right: -10px;

          height: 580px;
        }
      }

      /* ===== Help Center Styles ===== */
      .help-search {
        display: flex;
        align-items: center;
        gap: 10px;
        background: #f5f5f5;
        padding: 14px;
        border-radius: 12px;
        margin-bottom: 20px;
      }
      .help-search input {
        border: none;
        outline: none;
        background: transparent;
        width: 100%;
      }
      .collection-title {
        font-size: 22px;
        margin: 10px 0 20px;
      }
      .help-item {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        padding: 16px 0;
        border-bottom: 1px solid #eee;
        cursor: pointer;
        transition: 0.3s;
      }
      .help-item:hover {
        padding-left: 8px;
        background: #fafafa;
      }
      .help-left h4 {
        margin: 0 0 6px;
      }
      .help-left p {
        margin: 0 0 6px;
        color: #666;
        line-height: 1.5;
      }
      .arrow {
        font-size: 28px;
        color: #888;
      }

      /* ===========================
   RESPONSIVE
=========================== */

/* Large Tablets */
@media (max-width:992px){

    .support-box{
        right:20px;
        bottom:20px;
    }

    .popup{
        width:360px;
        height:580px;
    }

}

/* Tablets */
@media (max-width:768px){

    .support-box{
        right:15px;
        bottom:15px;
    }

    .popup{
        width:340px;
        height:560px;
        right:0;
    }

    .ai-header{
        height:180px;
        padding:20px;
    }

    .ai-header h1{
        font-size:28px;
        margin-top:35px;
    }

    .logo0{
        font-size:20px;
    }

    .ai-body{
        height:300px;
        padding:15px;
    }

    .messages{
        padding:12px;
    }

    .chat-input{
        padding:10px;
    }

    .chat-input input{
        font-size:15px;
    }

}

/* Mobile */
@media (max-width:576px){

    .support-box{
        right:12px;
        bottom:12px;
    }

    .popup{
        position:fixed;
        left:10px;
        right:10px;
        bottom:90px;

        width:auto;
        height:calc(100vh - 120px);
        max-height:700px;

        border-radius:20px;
    }

    .ai-btn,
    .wa-btn{
        width:55px;
        height:55px;
    }

    .wa-btn svg{
        width:28px;
    }

    .ai-btn{
        font-size:22px;
    }

    .ai-header{
        height:170px;
        padding:18px;
    }

    .logo0{
        font-size:18px;
    }

    .ai-header h1{
        font-size:24px;
        margin-top:30px;
    }

    .close{
        font-size:26px;
    }

    .ai-body{
        height:260px;
        padding:15px;
    }

    .send-msg{
        padding:15px;
        font-size:15px;
    }

    .search{
        padding:12px;
    }

    .search input{
        width:100%;
        font-size:15px;
    }

    .article{
        padding:15px 5px;
        font-size:15px;
    }

    .msg{
        font-size:14px;
    }

    .chat-input input{
        padding:11px 14px;
        font-size:14px;
    }

    .chat-input button{
        width:42px;
        height:42px;
    }

    .footer1{
        height:65px;
    }

    .footer1 div{
        font-size:12px;
    }

    .collection-title{
        font-size:20px;
    }

    .help-left h4{
        font-size:16px;
    }

    .help-left p{
        font-size:14px;
    }

    .arrow{
        font-size:24px;
    }

}

/* Small Phones */
@media (max-width:400px){

    .popup{
        left:5px;
        right:5px;
        bottom:80px;
        height:calc(100vh - 90px);
        border-radius:16px;
    }

    .ai-btn,
    .wa-btn{
        width:50px;
        height:50px;
    }

    .wa-btn svg{
        width:25px;
    }

    .ai-btn{
        font-size:20px;
    }

    .ai-header{
        height:155px;
    }

    .ai-header h1{
        font-size:22px;
    }

    .logo0{
        font-size:17px;
    }

    .ai-body{
        padding:12px;
    }

    .send-msg{
        font-size:14px;
        padding:13px;
    }

    .search input{
        font-size:14px;
    }

    .chat-input{
        gap:6px;
    }

    .chat-input input{
        font-size:13px;
    }

    .chat-input button{
        width:40px;
        height:40px;
    }

}