/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.header {
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo img {
  height: 50px;
}

/* MENU */
.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #1b4f9c;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: 0.3s;
}

/* HOVER EFFECT */
.menu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  transition: 0.3s;
}

.menu a:hover::after {
  width: 100%;
}

.menu a:hover {
  color: #00b894;
}

/* RIGHT SIDE */
.right-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* PHONE BUTTON */
.phone-btn {
  text-decoration: none;
  background: #f1f7ff;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 12px;
  color: #1b4f9c;
  line-height: 1.4;
  transition: 0.3s;
}

.phone-btn b {
  font-size: 14px;
}

.phone-btn:hover {
  background: #1b4f9c;
  color: #fff;
}

/* CONTACT BUTTON */
.contact-btn {
  text-decoration: none;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  color: #fff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1b4f9c;
  margin: 4px 0;
  transition: 0.3s;
}

/* BOTTOM STRIP */
.bottom-strip {
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
}

/* MOBILE */
@media (max-width: 900px) {

  .menu {
    position: absolute;
    top: 80px;
    left: -100%;
    width: 100%;
    background: #fff;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px 0;
    transition: 0.3s;
  }

  .menu.active {
    left: 0;
  }

  .right-buttons {
    gap: 10px;
  }

  .phone-btn {
    display: none;
  }

  .contact-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}
.phone-btn {
  text-decoration: none;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 12px;
  color: #1b4f9c;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #1b4f9c;
  transition: all 0.3s ease;
}

.phone-btn span {
  font-size: 11px;
  color: #777;
}

.phone-btn b {
  font-size: 16px;
  color: #1b4f9c;
}

/* Hover */
.phone-btn:hover {
  background: #1b4f9c;
  color: #fff;
}

.phone-btn:hover b,
.phone-btn:hover span {
  color: #fff;
}
.phone-btn {
  text-decoration: none;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 12px;
  color: #1b4f9c;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #1b4f9c;
  transition: all 0.3s ease;
}

.phone-btn span {
  font-size: 11px;
  color: #777;
}

.phone-btn b {
  font-size: 16px;
  color: #1b4f9c;
}

/* Hover */
.phone-btn:hover {
  background: #1b4f9c;
  color: #fff;
}

.phone-btn:hover b,
.phone-btn:hover span {
  color: #fff;
}
/* DROPDOWN */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* DROPDOWN MENU */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 240px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  padding: 10px 0;
  display: none;
  flex-direction: column;
  z-index: 999;
}

/* LINKS */
.dropdown-menu a {
  padding: 10px 20px;
  text-decoration: none;
  color: #1b4f9c;
  font-size: 14px;
  transition: 0.3s;
}

/* HOVER */
.dropdown-menu a:hover {
  background: #f5faff;
  color: #00b894;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  display: flex;
}
/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100%;
  background: #fff;
  z-index: 1001;
  padding: 20px;
  transition: 0.3s;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

/* OVERLAY */
.menu-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  top: 0;
  left: 0;
  display: none;
  z-index: 1000;
}

.menu-overlay.active {
  display: block;
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.close-menu {
  font-size: 20px;
  cursor: pointer;
}

/* LINKS */
.mobile-menu a {
  display: block;
  padding: 12px 0;
  text-decoration: none;
  color: #1b4f9c;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

/* DROPDOWN */
.mobile-dropdown {
  border-bottom: 1px solid #eee;
}

.dropdown-toggle {
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  color: #1b4f9c;
  font-weight: 500;
}




/* SLIDES */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ACTIVE SLIDE */
.slide.active {
  opacity: 1;
  z-index: 1;
}

/* BUTTONS */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 12px 15px;
  cursor: pointer;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}

/* LEFT */
.prev {
  left: 20px;
}

/* RIGHT */
.next {
  right: 20px;
}

/* HOVER */
.slider-btn:hover {
  background: linear-gradient(90deg, #1b4f9c, #00b894);
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-slider {
    height: 60vh;
  }

  .slider-btn {
    font-size: 16px;
    padding: 10px 12px;
  }

  .prev {
    left: 10px;
  }

  .next {
    right: 10px;
  }
}
/* HERO SECTION */
.hero-slider {
  position: relative;
  width: 100%;
  height: 70vh; /* reduce panniruken */
  overflow: hidden;
}
@media (max-width: 768px) {
  .hero-slider {
    height: 50vh;
  }
}

/* DOTS */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  display: inline-block;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #00b894;
  transform: scale(1.2);
}
/* SECTION */
.advanced-services {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  text-align: center;
}

/* TITLE */
.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b4f9c;
  margin-bottom: 50px;
  position: relative;
}

.services-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

/* CARD */
.service-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

/* HOVER GLOW */
.service-box::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 0%;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  transition: 0.4s;
  z-index: 0;
}

.service-box:hover::before {
  height: 100%;
}

/* ICON */
.service-icon {
  font-size: 35px;
  color: #1b4f9c;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
  transition: 0.3s;
}

/* TITLE */
.service-box h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #1b4f9c;
  z-index: 1;
  position: relative;
}

/* TEXT */
.service-box p {
  font-size: 14px;
  color: #555;
  z-index: 1;
  position: relative;
}

/* HOVER EFFECT */
.service-box:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-box:hover h3,
.service-box:hover p,
.service-box:hover .service-icon {
  color: #fff;
}

/* ICON ANIMATION */
.service-box:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-title {
    font-size: 24px;
  }
}
/* SECTION */
.why-choose {
  padding: 90px 20px;
  background: #f8fbff;
  text-align: center;
}

/* HEADING */
.why-title {
  font-size: 34px;
  font-weight: 700;
  color: #1b4f9c;
}

.why-title span {
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.why-subtitle {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 15px;
  color: #666;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  text-align: left;
  position: relative;
  transition: 0.3s ease;
}

/* ICON CIRCLE */
.why-card i {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* TITLE */
.why-card h3 {
  font-size: 18px;
  color: #1b4f9c;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ICON ANIMATION */
.why-card:hover i {
  transform: scale(1.1);
}

/* SMALL CORNER DOT */
.why-card::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  width: 10px;
  height: 10px;
  background: #00b894;
  border-radius: 50%;
}

/* RESPONSIVE */

/* Tablet */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .why-container {
    grid-template-columns: 1fr;
  }

  .why-title {
    font-size: 26px;
  }
}
/* SECTION */
.why-choose {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  text-align: center;
}

/* TITLE */
.why-title {
  font-size: 34px;
  font-weight: 700;
  color: #1b4f9c;
  margin-bottom: 70px;
}

/* GRID */
.why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.why-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 18px;
  border: 1px solid #eef2f7;
  transition: 0.4s;
  position: relative;
}

/* CENTER CARD HIGHLIGHT */
.why-card:nth-child(2),
.why-card:nth-child(5) {
  transform: scale(1.08);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  border: none;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  color: #fff;
}

/* ICON */
.why-card i {
  font-size: 26px;
  margin-bottom: 10px;
  color: #00b894;
}

/* CENTER ICON WHITE */
.why-card:nth-child(2) i,
.why-card:nth-child(5) i {
  color: #fff;
}

/* TITLE */
.why-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: #1b4f9c;
}

/* CENTER TITLE */
.why-card:nth-child(2) h3,
.why-card:nth-child(5) h3 {
  color: #fff;
}

/* TEXT */
.why-card p {
  font-size: 14px;
  color: #666;
}

/* CENTER TEXT */
.why-card:nth-child(2) p,
.why-card:nth-child(5) p {
  color: #f1f1f1;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-card:nth-child(2),
  .why-card:nth-child(5) {
    transform: none;
  }
}

@media (max-width: 600px) {
  .why-container {
    grid-template-columns: 1fr;
  }
}
.work-process {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f172a, #1e3a8a);
  text-align: center;
  color: #fff;
}

.process-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 60px;
}

/* Wrapper */
.process-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
}

/* Line (desktop) */
.process-wrapper::before {
  content: "";
  position: absolute;
  top: 35px;
  left: 5%;
  width: 90%;
  height: 4px;
  background: linear-gradient(to right, #22c55e, #06b6d4);
  z-index: 0;
}

/* Each Step */
.process-step {
  width: 18%;
  position: relative;
  z-index: 1;
  transition: 0.4s;
}

/* Icon Circle */
.process-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: linear-gradient(135deg, #22c55e, #06b6d4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transition: 0.4s;
}

/* Title */
.process-step h4 {
  margin-top: 15px;
  font-size: 16px;
}

/* Hover Effects 🔥 */
.process-step:hover .process-icon {
  transform: scale(1.2) rotate(8deg);
  box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}

.process-step:hover h4 {
  color: #22c55e;
}

/* Animation */
.process-step {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.process-step:nth-child(1) { animation-delay: 0.2s; }
.process-step:nth-child(2) { animation-delay: 0.4s; }
.process-step:nth-child(3) { animation-delay: 0.6s; }
.process-step:nth-child(4) { animation-delay: 0.8s; }
.process-step:nth-child(5) { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {

  .process-wrapper {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-left: 40px;
    gap: 30px;
  }

  /* Animated vertical line 🔥 */
  .process-wrapper::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #22c55e, #4ade80);
    animation: lineFlow 3s infinite linear;
  }

  @keyframes lineFlow {
    0% { background-position: 0 0; }
    100% { background-position: 0 200px; }
  }

  /* Step Card */
  .process-step {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    padding: 15px 20px;
    border-radius: 15px;

    /* Glass effect 😍 */
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);

    transition: 0.4s;
  }

  /* Step number 🔢 */
  .process-step::before {
    content: attr(data-step);
    position: absolute;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
    background: #22c55e;
    color: #fff;
    font-size: 12px;
    padding: 5px 8px;
    border-radius: 20px;
    font-weight: bold;
  }

  /* Icon */
  .process-icon {
    width: 55px;
    height: 55px;
    font-size: 20px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Glow */
  .process-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(34,197,94,0.4);
    border-radius: 50%;
    filter: blur(15px);
    z-index: -1;
  }

  /* Text */
  .process-step h4 {
    margin: 0;
    font-size: 16px;
  }

  /* Hover 🔥 */
  .process-step:hover {
    transform: translateX(10px);
    background: rgba(255,255,255,0.15);
  }
}
@media (max-width: 600px) {

  .why-card {
    text-align: center;
    padding: 25px 20px;
  }

  .why-card i {
    margin: 0 auto 15px;
    display: flex;
  }

}
.why-card {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 30px 20px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: 0.4s;
  position: relative;
}
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.why-card i {
  animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.why-card:hover {
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  color: #fff;
}

.why-card:hover h3,
.why-card:hover p {
  color: #fff;
}
.why-card i {
  margin: 0 auto 15px;
  display: flex;
}
.why-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.why-card i {
  width: 65px;
  height: 65px;
  font-size: 24px;
}
.service-box {
  border: 1px solid rgba(0,184,148,0.2);
}
.service-box:hover .service-icon {
  transform: scale(1.2) rotate(8deg);
}.service-box:hover h3 {
  color: #00b894;
}
/* CTA SECTION */
.cta-section {
  padding: 120px 20px;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

/* Glow Background */
.cta-section::before,
.cta-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.08);
  filter: blur(100px);
  border-radius: 50%;
}

.cta-section::before {
  top: -100px;
  left: -100px;
}

.cta-section::after {
  bottom: -100px;
  right: -100px;
}

/* CONTAINER */
.cta-container {
  max-width: 800px;
  margin: auto;
  color: #fff;
  position: relative;
  z-index: 1;
}

/* TITLE */
.cta-container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* TEXT */
.cta-container p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* BUTTON WRAPPER */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.btn-primary {
  background: #fff;
  color: #1b4f9c;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* OUTLINE BUTTON */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #fff;
  color: #1b4f9c;
  transform: scale(1.05);
}

/* ANIMATION */
.cta-container {
  animation: fadeUp 0.8s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

  .cta-container h2 {
    font-size: 26px;
  }

  .cta-container p {
    font-size: 14px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }
}
.work-process {
  padding-bottom: 120px;
}
.cta-section {
  margin-top: 40px;
}
.btn-primary {
  font-weight: 700;
  letter-spacing: 0.3px;
}
.cta-section {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.btn-primary,
.btn-outline {
  transition: all 0.3s ease;
}

/* SECTION */
.clients {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  text-align: center;
  overflow: hidden;
}

/* TITLE */
.clients-title {
  font-size: 32px;
  font-weight: 700;
  color: #1b4f9c;
  margin-bottom: 50px;
  position: relative;
}

.clients-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* CONTAINER */
.clients-container {
  overflow: hidden;
  position: relative;
}

/* TRACK (Scrolling) */
.clients-track {
  display: flex;
  gap: 50px;
  width: max-content;
  animation: scrollClients 25s linear infinite;
}

/* IMAGE STYLE */
.clients-track img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: 0.3s;
  filter: grayscale(100%);
}

/* Hover Effect 🔥 */
.clients-track img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* SCROLL ANIMATION */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.clients-container::before,
.clients-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.clients-container::before {
  left: 0;
  background: linear-gradient(to right, #f5faff, transparent);
}

.clients-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
.clients-container::before,
.clients-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}

.clients-container::before {
  left: 0;
  background: linear-gradient(to right, #f5faff, transparent);
}

.clients-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
/* SECTION */
.clients {
  padding: 100px 20px;
  background: #ffffff;
  text-align: center;
  overflow: hidden;
}

/* TITLE */
.clients-title {
  font-size: 34px;
  font-weight: 700;
  color: #1b4f9c;
  margin-bottom: 60px;
  position: relative;
}

.clients-title::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* CONTAINER */
.clients-container {
  position: relative;
  overflow: hidden;
}

/* TRACK */
.clients-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: scrollClients 30s linear infinite;
}

/* PAUSE ON HOVER */
.clients-container:hover .clients-track {
  animation-play-state: paused;
}

/* LOGO CARD 🔥 */
.clients-track img {
  height: 60px;
  padding: 15px 25px;
  background: #ffffff;
  border-radius: 15px;
  border: 1px solid #e5e7eb;

  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.4s;
}

/* HOVER EFFECT 😍 */
.clients-track img:hover {
  transform: translateY(-8px) scale(1.1);
  filter: grayscale(0%);
  opacity: 1;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* SCROLL */
@keyframes scrollClients {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* EDGE FADE (WHITE MATCH) */
.clients-container::before,
.clients-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 120px;
  height: 100%;
  z-index: 2;
}

.clients-container::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.clients-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}
/* LOGO STYLE FIX */
.clients-track img {
  height: 60px;
  padding: 15px 25px;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e5e7eb;

  /* REMOVE THIS ❌ */
  /* opacity: 0.7; */
  /* filter: grayscale(100%); */

  /* ADD THIS ✅ */
  opacity: 1;
  filter: grayscale(30%);
  transition: 0.4s ease;
}

/* HOVER 🔥 */
.clients-track img:hover {
  transform: translateY(-8px) scale(1.1);
  filter: grayscale(0%);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {

  .clients-title {
    font-size: 24px;
  }

  .clients-track {
    gap: 25px;
  }

  .clients-track img {
    height: 45px;
    padding: 10px 15px;
  }
}


/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0f172a, #1b4f9c);
  color: #fff;
  padding: 70px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* CONTAINER */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* LINE */
.footer-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00b894, #22c55e);
  margin-bottom: 15px;
  border-radius: 3px;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.6;
  color: #cbd5e1;
}

/* HEADINGS */
.footer h3 {
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

/* LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00b894;
  padding-left: 5px;
}

/* SOCIAL ICONS 🔥 */
.social-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.social-icons a:hover {
  background: linear-gradient(135deg, #00b894, #22c55e);
  transform: translateY(-5px) scale(1.1);
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-item .icon {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00b894;
  flex-shrink: 0;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #94a3b8;
}
/* Tablet */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-logo {
    margin: auto;
  }

  .footer-line {
    margin: 10px auto;
  }
}
.footer {
  border-top: 3px solid;
  border-image: linear-gradient(90deg, #00b894, #22c55e) 1;
}
/* FOOTER BASE */
.footer {
  background: linear-gradient(135deg, #0f172a, #1b4f9c);
  color: #fff;
  padding: 80px 20px 20px;
  position: relative;
  overflow: hidden;
}

/* 🔥 Animated Top Line */
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00b894, #22c55e, #00b894);
  background-size: 200% 100%;
  animation: moveLine 3s linear infinite;
}

@keyframes moveLine {
  0% { background-position: 0%; }
  100% { background-position: 100%; }
}

/* GRID */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* LOGO */
.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

/* GREEN LINE */
.footer-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #00b894, #22c55e);
  margin-bottom: 15px;
  border-radius: 3px;
  box-shadow: 0 0 10px rgba(34,197,94,0.6);
}

/* TEXT */
.footer p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* HEADINGS */
.footer h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  padding-bottom: 8px;
}

/* Glow underline */
.footer h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: #22c55e;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
  box-shadow: 0 0 10px #22c55e;
  transition: 0.4s;
}

.footer h3:hover::after {
  width: 70px;
}

/* LINKS */
.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #22c55e;
  padding-left: 6px;
}

/* SOCIAL ICONS */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  transition: 0.3s;
}

/* Glow pulse */
.social-icons a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(34,197,94,0.4);
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0;
  transition: 0.3s;
}

.social-icons a:hover::after {
  opacity: 1;
}

.social-icons a:hover {
  transform: translateY(-6px) scale(1.1);
  background: linear-gradient(135deg, #00b894, #22c55e);
}

/* CONTACT */
.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item .icon {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact-item:hover .icon {
  background: linear-gradient(135deg, #00b894, #22c55e);
  color: #fff;
}

/* COPYRIGHT */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 13px;
  color: #94a3b8;
  position: relative;
}

/* Neon divider */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22c55e, transparent);
  box-shadow: 0 0 10px rgba(34,197,94,0.6);
}
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-item {
    justify-content: center;
    text-align: left;
  }

  .footer-logo {
    margin: auto;
  }

  .footer-line {
    margin: 10px auto;
  }
}

/* HAMBURGER ICON */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.hamburger span{
  width:28px;
  height:3px;
  background:#2bb673;
}
.hamburger:hover span{
  background:#1b4f9c;  /* blue on hover */
}

/* MOBILE MENU */
.mobile-menu{
  position:fixed;
  top:0;
  left:-300px;
  width:280px;
  height:100%;
  background:#fff;
  box-shadow:5px 0 20px rgba(0,0,0,0.15);
  padding:20px;
  transition:.4s;
  z-index:2000;
}

.mobile-menu.active{
  left:0;
}


/* MENU HEADER */
.menu-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:25px;
}

.menu-header img{
  height:40px;
}

.close-menu{
  background:#ff3b3b;
  color:white;
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  cursor:pointer;
}


/* MENU LINKS */
.mobile-menu a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 0;
  text-decoration:none;
  font-weight:500;
  color:#333;
  border-bottom:1px solid #eee;
}

.mobile-menu a:hover{
  color:#3bb54a;
}


/* OVERLAY */
.menu-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.4);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:1500;
}

.menu-overlay.active{
  opacity:1;
  visibility:visible;
}


/* RESPONSIVE */
@media(max-width:900px){

  .menu{
    display:none;
  }

  .hamburger{
    display:flex;
  }

  .phone-btn,
  .contact-btn{
    display:none;
  }

}
/* DROPDOWN */
.mobile-dropdown{
  border-bottom:1px solid #eee;
}

.dropdown-toggle{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
  cursor:pointer;
  font-weight:500;
  color:#333;
}

.dropdown-toggle i{
  margin-right:10px;
  color:#3bb54a;
}

.dropdown-toggle span{
  font-size:18px;
  transition:.3s;
}

/* HIDDEN CONTENT */
.dropdown-content{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
  padding-left:10px;
}

/* ACTIVE */
.mobile-dropdown.active .dropdown-content{
  max-height:400px;
}

/* ROTATE + ICON */
.mobile-dropdown.active .dropdown-toggle span{
  transform:rotate(45deg);
}

/* LINKS */
.dropdown-content a{
  display:block;
  padding:10px 0;
  font-size:14px;
  color:#555;
  text-decoration:none;
}

.dropdown-content a:hover{
  color:#2bb673;
}

/* MOBILE MENU ICON COLOR */
.mobile-menu a i{
  color:#2bb673;   /* green */
  font-size:16px;
  width:20px;
}
/* CONTACT SECTION */
.menu-contact{
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid #eee;
}

.menu-contact h4{
  font-size:16px;
  color:#1b4f9c;
  margin-bottom:12px;
  font-weight:600;
}

.contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
}

.contact-item i{
  color:#2bb673;
  font-size:16px;
  width:20px;
}

.contact-item span{
  font-size:14px;
  color:#444;
}
.contact-item a{
  color:#444;
  text-decoration:none;
  font-size:14px;
}

.contact-item a:hover{
  color:#2bb673;
}
/* CONTACT SECTION COMPACT */
.menu-contact{
  margin-top:10px;        /* before 20px */
  padding-top:10px;       /* before 15px */
}

.menu-contact h4{
  margin-bottom:8px;      /* before 12px */
  font-size:14px;
}

.contact-item{
  padding:5px 0;          /* before 8px */
  margin-bottom:5px;      /* extra gap remove */
}

.contact-item span,
.contact-item a{
  font-size:13px;         /* slightly small */
}
/* LOGO BOX FIX */
.footer-logo-box{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px;                /* reduce space */
  border-radius:15px;
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(255,255,255,0.08);
  transition:0.3s;
}

/* LOGO SIZE FIX */
.footer-logo{
  width:90px;                 /* smaller */
}

/* HOVER LIGHT EFFECT */
.footer-logo-box:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,184,148,0.2);
}
@media(max-width:600px){
  .footer-logo{
    width:80px;
  }
}

/* =========================
   🔥 MOBILE BOTTOM NAV
========================= */
.bottom-nav{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  height:65px;
  background:#fff;
  display:flex;
  justify-content:space-around;
  align-items:center;
  box-shadow:0 -5px 20px rgba(0,0,0,0.1);
  z-index:9999;
}

/* NAV ITEMS */
.bottom-nav a{
  text-decoration:none;
  color:#555;
  font-size:12px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:3px;
  transition:0.3s;
}

/* ICON */
.bottom-nav i{
  font-size:20px;
}

/* HOVER */
.bottom-nav a:hover{
  color:#1b4f9c;
}

/* 🔥 CALL BUTTON (highlight) */
.call-btn{
  color:#25D366;
  font-weight:600;
}

.call-btn i{
  background:#25D366;
  color:#fff;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-top:-20px;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* =========================
   💬 FLOATING WHATSAPP
========================= */
.whatsapp-float{
  position:fixed;
  right:15px;
  bottom:80px; /* bottom nav mela */
  width:55px;
  height:55px;
  background:#25D366;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
  z-index:9999;
  transition:0.3s;
}

/* HOVER */
.whatsapp-float:hover{
  transform:scale(1.1);
}

/* 🔥 PULSE ANIMATION (optional) */
.whatsapp-float{
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{box-shadow:0 0 0 0 rgba(37,211,102,0.6);}
  70%{box-shadow:0 0 0 15px rgba(37,211,102,0);}
  100%{box-shadow:0 0 0 0 rgba(37,211,102,0);}
}

/* =========================
   📱 MOBILE ONLY
========================= */
@media(min-width:768px){
  .bottom-nav,
  .whatsapp-float{
    display:none;
  }
}
.whatsapp-float{
  border:none !important;
  text-decoration:none !important;
  outline:none !important;
}
.bottom-nav{
  position:fixed;
}

/* glowing top line */
.bottom-nav::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:2px;
  background:linear-gradient(90deg,#1b4f9c,#2bb673);
  box-shadow:0 0 10px rgba(0,184,148,0.6);
}
/* CALL BUTTON FIX */
.call-btn{
  position:relative;
}

.call-btn i{
  position:absolute;
  top:-0px;   /* move up */
  left:50%;
  transform:translateX(-50%);
  
  background:#25D366;
  color:#fff;
  width:40px;
  height:40px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

body {
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}


#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* LOGO */
.loader-logo {
  width: 120px;
  animation: logoFade 1.5s ease-in-out infinite alternate;
}

/* LOGO ANIMATION 🔥 */
@keyframes logoFade {
  from { opacity: 0.5; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1.05); }
}

/* SPINNER */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #00b894;
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}
.loader-logo {
  filter: drop-shadow(0 0 10px #00b894);
}
#loader {
  transition: all 0.5s ease;
}
/* 💬 FLOATING WHATSAPP - ALL DEVICES */
.whatsapp-float{
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s;
}

.whatsapp-float:hover{
  transform: scale(1.1);
}

/* Mobile adjust */
@media(max-width:768px){
  .whatsapp-float{
    bottom: 80px;
  }
}

.contact-item:hover .icon {
  background: #ffffff;
  color: #1b4f9c;
}

/* 🔥 FLOATING SOCIAL BAR */

.social-bar {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-bar a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

/* Colors */
.social-bar .whatsapp { background: #25D366; }
.social-bar .youtube { background: #FF0000; }
.social-bar .twitter { background: #000; }
.social-bar .instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #4f5bd5);
}
.social-bar .facebook { background: #3b5998; }
.social-bar .call { background: #4CAF50; }
.social-bar .top { background: #666; }
.social-bar .email { background: #d44638; }

/* Hover */
.social-bar a:hover {
  transform: scale(1.1);
}

/* Mobile hide (optional) */
@media(max-width:768px){
  .social-bar {
    display: none;
  }
}



/* FOOTER CONTACT FIX */
.footer-contact a {
  color: #ffffff;   /* white text */
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: 0.3s;
}

/* Hover effect 🔥 */
.footer-contact a:hover {
  color: #00ffb3;
}

/* ICON ALIGN FIX */
.footer-contact .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON COLOR */
.footer-contact .icon i {
  color: #00ffb3;
}


.footer-contact a {
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-contact a:hover {
  text-shadow: 0 0 8px rgba(0,255,179,0.6);
}



