/* =========================
         RESET
      ========================= */
* {
  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: 2px 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;
  }
}
/* ==============================
             GALLERY SECTION
============================== */

.gallery-area {
  padding: 100px 0 110px;
  background: #f2f0eb;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ==============================
             SECTION TITLE
          ============================== */

.sec-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
}

.sec-title-left p {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c07d3a;
  margin-bottom: 10px;
}

.sec-title-left h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
}

.sec-title-right {
  font-size: 14px;
  color: #888;
  font-weight: 500;
  padding-bottom: 6px;
}

/* =====================================================
         PREMIUM GALLERY SECTION
      ===================================================== */

.gallery-area {
  position: relative;
  padding: 120px 0;
  background: #f7f7f5;
  overflow: hidden;
}

/* subtle background glow */
.gallery-area::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(201, 169, 110, 0.12) 0%,
    transparent 70%
  );
  z-index: 0;
}

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

/* =====================================================
         SECTION TITLE
      ===================================================== */

.sec-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 55px;
}

.sec-title-left p {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #2f3092;
  margin-bottom: 14px;
  position: relative;
  padding-left: 70px;
}

.sec-title-left p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #2f3092;
  transform: translateY(-50%);
}

.sec-title-left h1 {
  font-size: 58px;
  line-height: 1;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.03em;
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}
/* ==========================================
         MOBILE HEADER ALIGN FIX
      ========================================== */

@media (max-width: 768px) {
  .main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 10px 17px;
  }

  /* logo */
  .header-logo img {
    max-width: 120px;
    height: auto;
    display: block;
  }

  /* badge */
  .experience-badge {
    position: absolute;
    right: 88px; /* space before menu button */
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

  /* menu button */
  .mobile-menu-btn {
    width: 54px;
    height: 54px;
    margin-left: auto;
    flex-shrink: 0;
  }
}
/* =====================================================
         SECTION
===================================================== */

.gallery-area {
  padding: 54px 0;
  background: #f5f7fa;
}

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

.sec-title-center h1 {
  font-size: 36px;
  font-weight: 700;
  color: #111;
}

/* =====================================================
         GRID
===================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* =====================================================
         CARD
      ===================================================== */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  transition: 0.4s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);

  display: none;
}

.gallery-item.show {
  display: block;
}

.gallery-item:hover {
  transform: translateY(-10px);
}

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

.gallery-thumb {
  position: relative;
  overflow: hidden;
  height: 320px;
  background: #fff;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: 0.7s ease;
  padding: 10px;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* =====================================================
         OVERLAY
      ===================================================== */

.gallery-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);

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

  opacity: 0;
  transition: 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

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

.view-btn {
  width: 78px;
  height: 78px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.4);

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

  cursor: pointer;

  transition: 0.4s ease;
}

.view-btn:hover {
  transform: scale(1.1);
}

.view-btn svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* =====================================================
         HEADING
      ===================================================== */

.gallery-item h3 {
  padding: 22px;
  margin: 0;
  text-align: center;

  font-size: 18px;
  font-weight: 700;
}

.load-btn-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

#loadMoreBtn {
  padding: 16px 42px;
  border: none;
  border-radius: 3px;

  background: #2f3092;
  color: #fff;

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

  cursor: pointer;
  transition: 0.3s ease;
}

#loadMoreBtn:hover {
  background: #2f3092;
}
/* =====================================================
         LIGHTBOX
      ===================================================== */

.custom-lightbox {
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.96);

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

  opacity: 0;
  visibility: hidden;

  transition: 0.4s ease;

  z-index: 99999;
}

.custom-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-image {
  max-width: 88%;
  max-height: 84vh;
  border-radius: 20px;
}

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

.close-lightbox {
  position: absolute;
  top: 25px;
  right: 25px;

  width: 56px;
  height: 56px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

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

  font-size: 34px;
  cursor: pointer;
}

/* =====================================================
         NAVIGATION
      ===================================================== */

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 70px;
  height: 70px;
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.1);
  color: #fff;

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

  font-size: 32px;
  cursor: pointer;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

/* =====================================================
         COUNTER
      ===================================================== */

.lightbox-counter {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);

  color: #fff;
}

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

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

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-thumb img {
    height: 260px;
  }

  .lightbox-image {
    max-width: 94%;
    max-height: 72vh;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 52px;
    height: 52px;
    font-size: 24px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}
.gallery-item {
  display: none;
}

.gallery-item.show {
  display: block;
}
.gallery-item {
  display: none;
}

.gallery-item.show {
  display: block;
}
/* =========================
         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: 37px 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: 18px;
    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;
  }
}
/* ===== ABOUT SECTION ===== */

.about-section {
  width: 100%;
  padding: 80px 8%;
  background: #f8f9fc;
  font-family: "Poppins", sans-serif;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 13px;
  max-width: 1200px;
  margin: auto;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-tag {
  display: inline-block;
  background: #7a1ea1;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 20px;
}

.about-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 43px;
  color: #23236b;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content p {
  font-size: 18px;
  color: #000000;
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-info {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  flex: 1;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.info-box:hover {
  transform: translateY(-5px);
}

.info-box h3 {
  font-size: 32px;
  color: #7a1ea1;
  margin-bottom: 10px;
}

.info-box p {
  font-size: 15px;
  color: #000000;
  margin: 0;
}

.about-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 14px 32px;
  background: #23236b;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #23236b;
  color: #ffffff;
}

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

@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

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

@media (max-width: 768px) {
  .about-section {
    padding: 22px 5%;
  }

  /* Move About Tag Above Image */
  .about-container {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    display: contents;
  }

  .about-tag {
    order: -2;
    margin-bottom: 15px;
    align-self: center;
  }

  .about-image {
    order: -1;
  }

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

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

  .about-info {
    flex-direction: column;
  }

  .about-btn {
    width: 51%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .about-content h2 {
    font-size: 24px;
  }

  .about-tag {
    font-size: 12px;
  }

  .info-box h3 {
    font-size: 26px;
  }
}

/* =========================
   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;
  }
}
/* ═══════════════════════════════════════
   BANNER SLIDER — FULL CSS
═══════════════════════════════════════ */

.tm-banner-slider-area {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #1a1a1a;
  line-height: 0;
}

/* ── Track ── */
.tm-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s ease-in-out;
  will-change: transform;
}
.tm-slide::after {
  pointer-events: none;
}
.tm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── Each Slide ── */
.tm-slide {
  min-width: 100%;
  flex-shrink: 0;
  position: relative;
  height: 480px;
  overflow: hidden;
  line-height: normal;
}

.tm-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Gradient — darkens LEFT side so text is readable ── */
.tm-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.15) 35%,
    rgba(0, 0, 0, 0.7) 65%,
    rgba(0, 0, 0, 0.75) 100%
  );
}

/* ── Slide Content — LEFT side ── */
.tm-slide-content {
  position: absolute;
  z-index: 2;
  left: 6%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  color: #fff;
  text-align: left;
}

.tm-slide-content h1 {
  font-size: 1.9rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.2;
  color: #fff;
  font-size: 38px;
}

.tm-slide-content p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.25rem;
}

/* ── Read More Button ── */
.tm-btn-primary {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: #2f3092;
  text-decoration: none;
  border-bottom: 1.5px solid #2f3092;
  padding-bottom: 2px;
  letter-spacing: 0.02em;
}

.tm-btn-primary:hover {
  color: #fff;
  border-color: #fff;
}

/* ── Arrows ── */
.tm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.tm-arrow:hover {
  background: rgba(0, 0, 0, 0.72);
}

.tm-arrow-prev {
  left: 14px;
}
.tm-arrow-next {
  right: 14px;
}

/* ── Dots ── */
.tm-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
  line-height: 0;
}

.tm-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: block;
}

.tm-dots button.active {
  background: #fff;
  border-color: #fff;
}

/* ═══════════════════════════════════════
   TABLET — 768px
═══════════════════════════════════════ */
@media (max-width: 768px) {
  .tm-slide {
    height: 220px;
  }

  .tm-slide img {
    object-fit: cover;
    object-position: right center;
  }

  .tm-slide::after {
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.1) 30%,
      rgba(0, 0, 0, 0.6) 58%,
      rgba(0, 0, 0, 0.72) 100%
    );
  }

  .tm-slide-content {
    left: 3%;
    right: auto;
    width: 50%;
    top: 50%;
    transform: translateY(-50%);
  }

  .tm-slide-content h1 {
    font-size: 1.78rem;
    margin-bottom: 0.35rem;
  }

  .tm-slide-content p {
    font-size: 0.7rem;
    margin-bottom: 0.55rem;
    line-height: 1.45;
  }

  .tm-btn-primary {
    font-size: 0.72rem;
  }

  .tm-arrow {
    display: none;
  }

  .tm-dots {
    bottom: 7px;
  }

  .tm-dots button {
    width: 7px;
    height: 7px;
  }
}

/* ═══════════════════════════════════════
   MOBILE — 480px
═══════════════════════════════════════ */
@media (max-width: 480px) {
  .tm-slide {
    height: 200px;
  }

  .tm-slide img {
    object-position: right center;
  }

  .tm-slide::after {
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.08) 28%,
      rgba(0, 0, 0, 0.62) 56%,
      rgba(0, 0, 0, 0.74) 100%
    );
  }

  .tm-slide-content {
    left: 2.5%;
    right: auto;
    width: 52%;
  }

  .tm-slide-content h1 {
    font-size: 0.85rem;
    margin-bottom: 0.3rem;
  }

  .tm-slide-content p {
    font-size: 0.66rem;
    margin-bottom: 0.45rem;
    line-height: 1.4;
  }

  .tm-btn-primary {
    font-size: 0.68rem;
  }

  .tm-dots button {
    width: 6px;
    height: 6px;
  }
}

/* ═══════════════════════════════════════
   SMALL MOBILE — 400px
═══════════════════════════════════════ */
@media (max-width: 400px) {
  .tm-slide {
    height: 106px;
  }

  .tm-slide-content {
    left: 2%;
    right: auto;
    width: 54%;
  }

  .tm-slide-content h1 {
    font-size: 1.78rem;
  }

  .tm-slide-content p {
    font-size: 0.62rem;
  }

  .tm-btn-primary {
    font-size: 0.65rem;
  }
}
.tm-btns {
  margin-top: 18px;
}

/* =========================
   SLIDE CONTENT
========================= */

.tm-slide-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  max-width: 600px;
}

/* Heading */
.tm-slide-content h1 {
  font-size: 43px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

/* =========================
   BUTTON SEPARATE SPACING
========================= */

.tm-btns {
  margin-top: 35px; /* space between text and button */
}

/* Button Style */
.tm-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: #2f3092;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.tm-btn-primary:hover {
  background: #ffffff;
  color: #2f3092;
}

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

@media (max-width: 768px) {
  .tm-slide-content {
    left: 5%;
    right: 5%;
    max-width: 90%;
  }

  .tm-slide-content h1 {
    font-size: 8px;
  }

  .tm-btns {
    margin-top: 25px;
  }

  .tm-btn-primary {
    padding: 4px 10px;
    font-size: 13px;
  }
}

.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    gap: 3px; /* decrease gap */
  }
}
/* HEADER HEIGHT FIX */
.tm-banner-slider-area {
  margin-top: 90px; /* adjust based on your header height */
}
/* ===============================
   HOME CLIENT SECTION
================================== */
.home-client-section {
  padding: 0px 0;
  background: #f8f9fc;
}

.home-client-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: #7a1ea1;
  color: #ffffff;
  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: 700px;
  margin: auto;
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

/* Grid */
.home-client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

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

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

/* Button */
.client-btn-area {
  text-align: center;
  margin-top: 45px;
}

.client-view-btn {
  display: inline-block;
  background: #2f3092;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 26px;
}

.client-view-btn:hover {
  background: #2f3092;
  color: #fff;
}

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

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

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

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

  .home-client-card {
    height: 130px;
    padding: 15px;
  }

  .home-client-card img {
    max-height: 80px;
  }

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

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

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

  .home-client-card {
    height: 140px;
  }

  .home-client-card img {
    max-height: 100px;
  }
}
/* 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: 73px;
  left: 0;
  width: 100%;
  z-index: 9999;
}

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

/* 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: 62px;
  height: 62px;
  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);
}
