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

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

/* =========================
         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 ABOUT SECTION
========================= */

.dtm-about-area {
  padding: 100px 0;
  background: #ffffff;
  overflow: hidden;
}

.dtm-about-area .row {
  display: flex;
  align-items: center;
}

/* =========================
   IMAGE SIDE
========================= */

.dtm-about-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;

  border-radius: 30px;
  overflow: hidden;

  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
}

.dtm-about-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}

/* =========================
   CONTENT SIDE
========================= */

.dtm-about-content {
  padding-left: 50px;
}

.dtm-about-tag {
  display: inline-block;
  padding: 10px 22px;

  border-radius: 50px;

  background: rgba(47, 48, 146, 0.08);
  color: #2f3092;

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 20px;
}

.dtm-about-content h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;

  color: #0f172a;

  margin-bottom: 22px;
}

.dtm-about-content p {
  font-size: 20px;
  line-height: 1.9;

  color: #000000;

  margin-bottom: 18px;
}

/* =========================
   FEATURES
========================= */

.dtm-about-features {
  display: flex;
  gap: 20px;

  margin-top: 35px;
  margin-bottom: 40px;
}

.dtm-about-feature {
  flex: 1;

  background: #f8fafc;

  border: 1px solid #e2e8f0;
  border-radius: 18px;

  padding: 24px 20px;

  text-align: center;

  transition: 0.3s ease;
}

.dtm-about-feature:hover {
  transform: translateY(-5px);

  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.dtm-about-feature h3 {
  font-size: 34px;
  font-weight: 800;

  color: #2f3092;

  margin-bottom: 8px;
}

.dtm-about-feature span {
  color: #000000;
  font-size: 16px;
}

/* =========================
   BUTTON
========================= */

.dtm-about-btn {
  display: inline-block;

  background: linear-gradient(135deg, #2f3092 0%, #4338ca 100%);

  color: #fff;
  text-decoration: none;

  padding: 16px 34px;
  border-radius: 14px;

  font-size: 16px;
  font-weight: 600;

  transition: 0.3s ease;
}

.dtm-about-btn:hover {
  transform: translateY(-4px);
  color: #fff;
}

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

@media (max-width: 991px) {
  .dtm-about-area {
    padding: 80px 0;
  }

  .dtm-about-area .row {
    flex-direction: column;
  }

  .dtm-about-content {
    padding-left: 0;
    margin-top: 50px;

    text-align: center;
  }

  .dtm-about-content h2 {
    font-size: 38px;
  }

  .dtm-about-content p {
    font-size: 17px;
  }

  .dtm-about-features {
    justify-content: center;
  }

  .dtm-about-image-wrap {
    max-width: 650px;
  }
}

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

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

  .dtm-about-image-wrap {
    max-width: 100%;
    border-radius: 20px;
  }

  .dtm-about-image-wrap img {
    border-radius: 20px;
  }

  .dtm-about-content {
    margin-top: 35px;
    text-align: center;
  }

  .dtm-about-tag {
    font-size: 13px;
    padding: 8px 18px;
  }

  .dtm-about-content h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .dtm-about-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  .dtm-about-features {
    flex-direction: column;
    gap: 15px;
  }

  .dtm-about-feature {
    width: 100%;
    padding: 20px;
  }

  .dtm-about-feature h3 {
    font-size: 28px;
  }

  .dtm-about-feature span {
    font-size: 14px;
  }

  .dtm-about-btn {
    width: 100%;
    text-align: center;

    padding: 15px 25px;
  }
}

/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {
  .dtm-about-area {
    padding: 35px 12px;
  }

  .dtm-about-content h2 {
    font-size: 26px;
  }

  .dtm-about-content p {
    font-size: 14px;
  }

  .dtm-about-feature h3 {
    font-size: 24px;
  }

  .dtm-about-feature {
    padding: 18px;
  }
}
.why-choose-area {
  padding: 100px 0 70px;
  background: #f8f8f8;
}

.sec-title {
  margin-bottom: 60px;
}

.sec-title p {
  color: #2f3092;
  font-weight: 600;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.sec-title h1 {
  font-size: 42px;
  font-weight: 800;
  color: #222;
}

.single-choose-box {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.single-choose-box:hover {
  transform: translateY(-8px);
}

.icon-holder {
  margin-bottom: 20px;
}

.icon-holder span {
  font-size: 55px;
  color: #2f3092;
}

.text-holder h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #222;
}

.text-holder p {
  color: #000000;
  line-height: 1.7;
}
@media only screen and (max-width: 991px) {
  .why-choose-area {
    padding: 80px 0 50px;
  }

  .sec-title {
    margin-bottom: 40px;
  }

  .sec-title h1 {
    font-size: 34px;
  }

  .single-choose-box {
    padding: 35px 25px;
  }
}

@media only screen and (max-width: 767px) {
  .why-choose-area {
    padding: 60px 0 40px;
  }

  .sec-title p {
    font-size: 14px;
  }

  .sec-title h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .single-choose-box {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .icon-holder span {
    font-size: 45px;
  }

  .text-holder h3 {
    font-size: 20px;
  }

  .text-holder p {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 480px) {
  .why-choose-area {
    padding: 37px 0 30px;
  }

  .sec-title h1 {
    font-size: 24px;
  }

  .single-choose-box {
    padding: 25px 18px;
    border-radius: 8px;
  }

  .icon-holder span {
    font-size: 40px;
  }

  .text-holder h3 {
    font-size: 18px;
  }

  .text-holder p {
    font-size: 14px;
  }
}
/* =========================
         PREMIUM CTA SECTION
      ========================= */

.cta-area {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}

.container {
  max-width: 1320px;
  margin: auto;
}

/* CARD */
.cta-style-two {
  position: relative;
  overflow: hidden;
  padding: 70px;
  border-radius: 32px;

  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);

  border: 1px solid rgba(255, 255, 255, 0.6);

  box-shadow:
    0 10px 40px rgba(15, 23, 42, 0.08),
    0 2px 10px rgba(15, 23, 42, 0.04);

  backdrop-filter: blur(10px);
}

/* Decorative Glow Shapes */
.cta-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.shape-one {
  width: 260px;
  height: 260px;
  top: -120px;
  right: -100px;
  background: rgba(47, 48, 146, 0.08);
  filter: blur(10px);
}

.shape-two {
  width: 220px;
  height: 220px;
  bottom: -120px;
  left: -80px;
  background: rgba(59, 130, 246, 0.08);
  filter: blur(10px);
}

/* Content */
.cta-content {
  position: relative;
  z-index: 2;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: rgba(47, 48, 146, 0.08);
  color: #2f3092;

  padding: 10px 20px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;

  margin-bottom: 24px;
}

/* Heading */
.cta-content h1 {
  font-size: 52px;
  line-height: 1.15;
  font-weight: 800;

  color: #0f172a;

  margin-bottom: 24px;
  max-width: 750px;
}

/* Paragraph */
.cta-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #000000;

  max-width: 650px;
  margin: 0;
}

/* Action */
.cta-action {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Button */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #23236b;

  color: #fff;
  text-decoration: none;

  padding: 18px 34px;
  border-radius: 16px;

  font-size: 16px;
  font-weight: 700;

  transition: all 0.35s ease;

  box-shadow: 0 12px 30px rgba(47, 48, 146, 0.25);

  white-space: nowrap;
  margin-top: 98px;
}

/* Hover */
.cta-btn:hover {
  transform: translateY(-4px);
  color: #fff;

  box-shadow: 0 18px 40px rgba(47, 48, 146, 0.35);
}

.cta-btn span {
  transition: transform 0.3s ease;
}

.cta-btn:hover span {
  transform: translateX(4px);
}

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

/* Large Tablet */
@media (max-width: 991px) {
  .cta-style-two {
    padding: 60px 40px;
    text-align: center;
  }

  .cta-content h1 {
    font-size: 42px;
    max-width: 100%;
  }

  .cta-content p {
    max-width: 100%;
  }

  .cta-action {
    margin-top: 40px;
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .cta-area {
    padding: 11px 15px;
  }

  .cta-style-two {
    padding: 45px 25px;
    border-radius: 24px;
    margin-right: -34px;
    margin-left: -34px;
  }

  .cta-content h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .cta-content p {
    font-size: 16px;
    line-height: 1.7;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    margin-top: 0px;
  }

  .shape-one {
    width: 180px;
    height: 180px;
  }

  .shape-two {
    width: 150px;
    height: 150px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .cta-content h1 {
    font-size: 28px;
  }

  .cta-tag {
    font-size: 13px;
    padding: 8px 16px;
  }
}
/* =========================
   BREADCRUMB AREA
========================= */

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

  background: #2f3092;

  position: relative;
  overflow: hidden;
}

/* Decorative Glow */

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

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

  width: 320px;
  height: 320px;

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

.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 */

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

  color: #ffffff;

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

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

  margin-bottom: 0;
}

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

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

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

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

  .breadcrumb-area h1 {
    font-size: 40px;
    margin-top: -35px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-area {
    padding: 90px 15px 60px;
  }

  .breadcrumb-area h1 {
    font-size: 32px;
    margin-top: -20px;
  }
}
.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* 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);
}
