/* =========================
         RESET
      ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  padding-top: 100px;
}

/* =========================
         HEADER
      ========================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.main-header .container {
  max-width: 1320px;
  margin: auto;
  padding: 15px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
         LOGO
      ========================= */
.header-logo img {
  height: 81px;
  width: 142px;
  display: block;
  margin-right: 43px;
}

/* =========================
         NAVBAR
      ========================= */
.main-navbar {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s;
  position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
  color: #2f3092;
}

.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #2f3092;
  transition: 0.3s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
  width: 100%;
}

/* =========================
         EXPERIENCE BADGE
      ========================= */
.experience-badge img {
  height: 70px;
  width: auto;
  margin-left: 51px;
}

/* =========================
         MOBILE BUTTON
      ========================= */
.mobile-menu-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #2f3092;
  border-radius: 5px;
  cursor: pointer;

  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.mobile-menu-btn span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
}

/* =========================================
         MOBILE HEADER PERFECT ALIGNMENT
      ========================================= */
@media (max-width: 991px) {
  /* HEADER */
  .main-header {
    width: 100%;
    background: #fff;
  }

  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap; /* IMPORTANT */
    position: relative;
    padding: 12px 15px;
  }

  /* LOGO LEFT */
  .header-logo {
    flex: 0 0 auto;
  }

  .header-logo img {
    width: 110px;
    height: auto;
    display: block;
  }

  /* RIGHT SIDE AREA */
  .experience-badge {
    position: absolute;
    right: 78px; /* beside menu button */
    top: 50%;
    transform: translateY(-50%);
    display: block !important;
    z-index: 10;
  }

  .experience-badge img {
    width: 46px;
    height: auto;
    display: block;
  }

  /* MENU BUTTON RIGHT CORNER */
  .mobile-menu-btn {
    display: flex;
    width: 48px;
    height: 48px;
    border: none;
    background: #2f3092;
    border-radius: 5px;
    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;

    margin-left: auto;
    flex-shrink: 0;
    z-index: 20;
  }

  .mobile-menu-btn span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
  }

  /* NAVIGATION DROPDOWN */
  .main-navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    background: #fff;

    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
    z-index: 9;
  }

  .main-navbar.active {
    max-height: 500px;
    border-top: 1px solid #eee;
  }

  .nav-menu {
    width: 100%;
    list-style: none;

    display: flex;
    flex-direction: column;

    padding: 10px 0;
    margin: 0;
  }

  .nav-menu li {
    width: 100%;
  }

  .nav-menu li a {
    display: block;
    width: 100%;

    padding: 14px 20px;

    font-size: 16px;
    font-weight: 600;
    color: #000;

    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
  }
}

/* =========================================
         SMALL MOBILE
      ========================================= */
@media (max-width: 480px) {
  .header-logo img {
    width: 95px;
  }

  .experience-badge {
    right: 68px;
  }

  .experience-badge img {
    width: 40px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
  }
}
/* =========================
   PREMIUM FOOTER
========================= */

.footer-area {
  background: #0f172a;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-area::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 50%;
  filter: blur(10px);
}

.footer-area .container {
  position: relative;
  z-index: 2;
}

/* Logo */
.footer-logo img {
  max-width: 180px;
  margin-bottom: 25px;
}

/* Text */
.footer-text {
  color: #cbd5e1;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 30px;
  max-width: 420px;
}

/* Title */
.single-footer-widget .title h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

/* Links */
.footer-links {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

.footer-links li a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

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

/* Contact */
.contact-info {
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-info li {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info li i {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;

  flex-shrink: 0;
}

.contact-info li span {
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.contact-info li p {
  color: #cbd5e1;
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
}

/* Social */
.footer-social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-social-links li a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #ffffff;
  font-size: 16px;

  transition: all 0.3s ease;
}

.footer-social-links li a:hover {
  background: #2f3092;
  transform: translateY(-4px);
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 70px;
  padding: 25px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: #94a3b8;
  font-size: 15px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .footer-area {
    padding-top: 70px;
  }

  .single-footer-widget {
    margin-bottom: 40px;
  }

  .footer-text {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .footer-area {
    padding-top: 60px;
  }

  .single-footer-widget .title h3 {
    font-size: 22px;
  }

  .footer-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .footer-links li a,
  .contact-info li p {
    font-size: 15px;
  }

  .contact-info li {
    gap: 14px;
  }

  .contact-info li i {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 150px;
  }

  .footer-social-links {
    gap: 10px;
  }

  .footer-social-links li a {
    width: 40px;
    height: 40px;
  }
}
/* =========================
   DTM BREADCRUMB
========================= */

.dtm-breadcrumb-area {
  padding: 140px 20px 90px;

  background: #2f3092;

  position: relative;
  overflow: hidden;
}

/* Decorative Glow */

.dtm-breadcrumb-area::before {
  content: "";

  position: absolute;
  top: -120px;
  right: -120px;

  width: 320px;
  height: 320px;

  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.dtm-breadcrumb-area::after {
  content: "";

  position: absolute;
  bottom: -100px;
  left: -100px;

  width: 260px;
  height: 260px;

  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

/* Heading */

.dtm-breadcrumb-area h1 {
  position: relative;
  z-index: 2;

  color: #ffffff;

  font-size: 64px;
  font-weight: 800;

  margin-top: -55px;
  line-height: 1.2;
  letter-spacing: 1px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .dtm-breadcrumb-area {
    padding: 120px 20px 80px;
  }

  .dtm-breadcrumb-area h1 {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .dtm-breadcrumb-area {
    padding: 100px 15px 70px;
  }

  .dtm-breadcrumb-area h1 {
    font-size: 40px;
  }
}

@media (max-width: 480px) {
  .dtm-breadcrumb-area h1 {
    font-size: 32px;
  }
}
.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ===============================
   CLIENTS SECTION
================================== */
.clients-section {
  padding: 80px 0;
  background: #f8f9fc;
}

.clients-section .container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* Heading */
.section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-tag {
  display: inline-block;
  padding: 8px 18px;
  background: rgba(13, 110, 253, 0.1);
  color: #2f3092;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: 38px;
  color: #111;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-heading p {
  max-width: 750px;
  margin: auto;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* ===============================
   CLIENT GRID
================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Client Card */
.client-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 20px;
  height: 140px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Logo Image */
.client-card img {
  max-width: 100%;
  max-height: 90px;
  object-fit: contain;
  display: block;
}

/* ===============================
   TABLET RESPONSIVE
================================== */
@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading h2 {
    font-size: 32px;
  }
}

/* ===============================
   MOBILE RESPONSIVE
================================== */
@media (max-width: 767px) {
  .clients-section {
    padding: 60px 0;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .client-card {
    padding: 18px;
    height: 140px;
  }

  .client-card img {
    width: 100%;
    max-height: 90px;
    object-fit: contain;
  }

  .section-heading h2 {
    font-size: 26px;
  }

  .section-heading p {
    font-size: 14px;
  }
}

/* ===============================
   SMALL MOBILE
================================== */
@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .client-card {
    height: 150px;
    padding: 20px;
  }

  .client-card img {
    max-height: 110px;
    width: 100%;
    object-fit: contain;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    gap: 3px; /* decrease gap */
  }
}
/* TOP HEADER */
.top-header {
  width: 100%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  border-bottom: 2px solid #f1f1f1;

  padding: 8px 15px;
  min-height: 75px; /* IMPORTANT */
}

/* WRAPPER */
.header-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
}

/* MAIN TITLE */
.top-center {
  font-family: "Poppins", sans-serif;
  font-size: 35px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;

  background: linear-gradient(90deg, #8a278f, #2f3092);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  text-align: center;
}

/* SUB TITLE */
.top-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8a278f;
  margin-top: 3px;
  text-align: center;
}

/* MAIN HEADER */
.main-header {
  position: fixed;
  top: 62px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

/* BODY SPACE */
body {
  padding-top: 145px;
}

/* MOBILE */
@media (max-width: 768px) {
  .top-center {
    font-size: 16px;
    padding: 0 10px;
  }
}
/* FLOATING WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.55);
}
