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

body {
  padding-top: 38px;
}

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

.dtm-contact-section {
  padding: 100px 20px;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

.dtm-contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* =========================
   LEFT SIDE
========================= */

.dtm-contact-info {
  background: #2f3092;

  border-radius: 30px;
  padding: 50px 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dtm-contact-info::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;

  width: 250px;
  height: 250px;

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

.dtm-contact-heading {
  position: relative;
  z-index: 2;
}

.dtm-contact-heading span {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);

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

  margin-bottom: 18px;
}

.dtm-contact-heading h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;

  margin-bottom: 18px;
}

.dtm-contact-heading p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Contact Items */

.dtm-contact-card {
  position: relative;
  z-index: 2;
}

.dtm-contact-item {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.dtm-icon {
  min-width: 55px;
  height: 55px;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 15px;

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

  font-size: 20px;
}

.dtm-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
}

.dtm-text p {
  margin: 0;
  line-height: 1.7;
  color: #fff;
}

/* =========================
   FORM SECTION
========================= */

.dtm-contact-form-box {
  background: #fff;
  border-radius: 30px;
  padding: 50px;

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

  border: 1px solid #e2e8f0;
}

.dtm-form-title span {
  color: #2f3092;
  font-size: 15px;
  font-weight: 600;
}

.dtm-form-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #0f172a;

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

.dtm-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.dtm-form-group {
  margin-bottom: 20px;
}

.dtm-form-group input,
.dtm-form-group select,
.dtm-form-group textarea {
  width: 100%;
  border: 1px solid #dbe4ee;
  background: #f8fafc;

  height: 58px;
  border-radius: 14px;

  padding: 0 18px;
  font-size: 15px;

  transition: all 0.3s ease;
  outline: none;
}

.dtm-form-group textarea {
  height: 150px;
  padding-top: 18px;
  resize: none;
}

.dtm-form-group input:focus,
.dtm-form-group select:focus,
.dtm-form-group textarea:focus {
  border-color: #2f3092;
  background: #fff;
}

/* Button */

.dtm-submit-btn {
  background: linear-gradient(135deg, #2f3092 0%, #4338ca 100%);

  color: #fff;
  border: none;

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

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

  transition: all 0.3s ease;
}

.dtm-submit-btn:hover {
  transform: translateY(-3px);

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

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

@media (max-width: 991px) {
  .dtm-contact-wrapper {
    grid-template-columns: 1fr;
  }

  .dtm-contact-info,
  .dtm-contact-form-box {
    padding: 30px 22px;
    border-radius: 22px;
    margin-left: -21px;
    margin-right: -24px;
  }
  .dtm-contact-heading h2,
  .dtm-form-title h2 {
    font-size: 32px;
  }
}

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

  .dtm-form-grid {
    grid-template-columns: 1fr;
  }

  .dtm-contact-info,
  .dtm-contact-form-box {
    padding: 30px 22px;
    border-radius: 22px;
  }

  .dtm-contact-heading h2,
  .dtm-form-title h2 {
    font-size: 28px;
    line-height: 1.3;
  }

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

  .dtm-submit-btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .dtm-contact-item {
    gap: 14px;
  }

  .dtm-icon {
    min-width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .dtm-contact-heading h2,
  .dtm-form-title h2 {
    font-size: 24px;
  }
}
/* =========================
   DTM MAP SECTION
========================= */

.dtm-map-section {
  padding: 59px 20px;
  background: #ffffff;
}

/* Heading */

.dtm-map-heading {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.dtm-map-heading span {
  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-map-heading h2 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;

  line-height: 1.2;
  margin-bottom: 20px;
}

.dtm-map-heading p {
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

/* Map Wrapper */

.dtm-map-wrapper {
  border-radius: 30px;
  overflow: hidden;

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

  border: 1px solid #e2e8f0;
}

/* Iframe */

.dtm-map-wrapper iframe {
  width: 100%;
  height: 550px;
  border: 0;
  display: block;
}

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

@media (max-width: 991px) {
  .dtm-map-heading h2 {
    font-size: 38px;
  }

  .dtm-map-wrapper iframe {
    height: 450px;
  }
}

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

  .dtm-map-heading {
    margin-bottom: 40px;
  }

  .dtm-map-heading h2 {
    font-size: 30px;
  }

  .dtm-map-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .dtm-map-wrapper {
    border-radius: 20px;
  }

  .dtm-map-wrapper iframe {
    height: 350px;
  }
}

@media (max-width: 480px) {
  .dtm-map-heading h2 {
    font-size: 26px;
  }

  .dtm-map-wrapper iframe {
    height: 300px;
  }
}
/* =========================
   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;
  }
}
/* =========================================
   PRODUCT GALLERY SECTION
========================================= */

.project-gallery-area {
  padding: 90px 0;
  background: #f8fafc;
}

/* Section Block */

.gallery-block {
  margin-bottom: 90px;
}

/* Section Heading */

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2f3092;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;

  width: 70px;
  height: 4px;

  background: #2f3092;
  border-radius: 20px;

  transform: translateX(-50%);
}

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

.gallery-item {
  position: relative;

  background: #ffffff;

  border-radius: 18px;
  overflow: hidden;

  margin-bottom: 25px;

  border: 1px solid #e5e7eb;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

  transition: all 0.35s ease;

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

  min-height: 360px;
}

/* Hover */

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

  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* =========================================
   IMAGE PERFECT FIT
========================================= */

.gallery-item img {
  width: 100%;
  height: 320px;

  object-fit: contain; /* FULL IMAGE SHOW */
  object-position: center;

  display: block;

  padding: 14px;
  background: #fff;

  transition: transform 0.4s ease;
}

/* Image Hover */

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

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

.gallery-enquiry-btn {
  text-align: center;
  margin-top: 12px;
}

.gallery-enquiry-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 40px;

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

  color: #ffffff;
  text-decoration: none;

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

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(47, 48, 146, 0.2);
}

/* Button Hover */

.gallery-enquiry-btn a:hover {
  transform: translateY(-4px);

  box-shadow: 0 16px 35px rgba(47, 48, 146, 0.3);
}

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

@media (max-width: 991px) {
  .project-gallery-area {
    padding: 70px 0;
  }

  .gallery-block {
    margin-bottom: 70px;
  }

  .section-title {
    margin-bottom: 35px;
  }

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

  .gallery-item {
    min-height: 320px;
  }

  .gallery-item img {
    height: 280px;
    padding: 12px;
  }
}

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

@media (max-width: 767px) {
  .project-gallery-area {
    padding: 60px 0;
  }

  .gallery-block {
    margin-bottom: 55px;
  }

  .section-title {
    margin-bottom: 28px;
  }

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

  .gallery-item {
    border-radius: 14px;
    min-height: 260px;
    margin-bottom: 20px;
  }

  .gallery-item img {
    height: 230px;

    object-fit: contain;

    padding: 10px;
  }

  .gallery-enquiry-btn a {
    width: 100%;
    max-width: 280px;

    font-size: 15px;
    padding: 14px 24px;
  }
}

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

@media (max-width: 480px) {
  .section-title h2 {
    font-size: 22px;
  }

  .gallery-item {
    min-height: 230px;
  }

  .gallery-item img {
    height: 200px;
    padding: 8px;
  }

  .gallery-enquiry-btn a {
    font-size: 14px;
    padding: 13px 22px;
  }
}
.gallery-enquiry-btn {
  text-align: center;
  margin-top: 15px;
}

.gallery-enquiry-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 15px 36px;

  background: #25d366;

  color: #fff;
  text-decoration: none;

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

  border-radius: 50px;

  transition: all 0.3s ease;

  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25);
}

.gallery-enquiry-btn a i {
  font-size: 22px;
}

.gallery-enquiry-btn a:hover {
  background: #1ebe5d;

  transform: translateY(-4px);

  box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35);
}

/* Mobile */

@media (max-width: 767px) {
  .gallery-enquiry-btn a {
    width: 100%;
    max-width: 280px;

    font-size: 15px;
    padding: 14px 22px;
  }

  .gallery-enquiry-btn a i {
    font-size: 20px;
  }
}
.dtm-email-link {
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    gap: 3px; /* decrease gap */
  }
}
.sub-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 9px;
  margin-top: 20px;
}
.box-size-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
  margin: 20px 0;
}
.gallery-block .row.single-item {
  display: flex;
  justify-content: center;
}
.partner-banner {
  display: block;
  background: linear-gradient(135deg, #8a278f, #c084fc);
  padding: 30px 40px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(138, 39, 143, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(138, 39, 143, 0.45);
  text-decoration: none;
}

.partner-line1 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.partner-line2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff0ff;
  margin-bottom: 0;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .partner-banner {
    padding: 20px 16px;
    border-radius: 8px;
    margin-top: 15px;
  }

  .partner-line1 {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }

  .partner-line2 {
    font-size: 1rem;
    letter-spacing: 0.3px;
  }
}

@media (max-width: 480px) {
  .partner-line1 {
    font-size: 1.9rem;
  }

  .partner-line2 {
    font-size: 1.9rem;
  }
}

/* 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);
}
