body,
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Karla", sans-serif;
  scroll-behavior: smooth;
  font-weight: 400;
  font-size: 16px;
  background-color: var(--black);
  line-height: 1.6;
  max-width: 100%;
}

p,
li {
  margin: 0;
  color: var(--white);
}

a {
  text-decoration: none;
  font-size: 16px;
  color: var(--tc1);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ltc1);
}

/* Heading Styles */
h1,
h2,
h3,
h4 {
  font-family: "Gelasio", serif;
  font-weight: normal;
  line-height: 1.2;
  margin: 0;
  max-width: 100%;
  color: var(--tc1);
}

h5,
h6 {
  font-family: "Karla", sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  max-width: 100%;
  color: var(--white);
}

/* Specific heading sizes */
h1 {
  font-size: 64px;
  font-weight: 600;
}

h2 {
  font-size: 48px;
  font-weight: 600;
}

h3 {
  font-size: 40px;
  font-weight: 600;
}

h4 {
  font-size: 32px;
  font-weight: 500;
}

h5 {
  font-size: 24px;
  font-weight: 500;
}

h6 {
  font-size: 20px;
  font-weight: 500;
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}
.container-blog {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.full-hr {
  width: 100%;
  border: none;
  border-top: 1px solid var(--dgray);
  margin: 40px 0;
}

/* Header - Start */
header {
  height: 100px;
  background-color: transparent;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition:
    height 0.3s ease,
    background-color 0.3s ease;
}

header.sticky {
  height: 80px;
  background-color: rgba(21, 20, 23, 0.9);
  /* var(--black) with 90% opacity */
}

.header-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  width: 150px;
  height: auto;
  transition: width 0.3s ease;
}

header.sticky .brand-logo {
  width: 120px;
}

.header-content-left {
  min-width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.header-content-right {
  min-width: 250px;
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
  gap: 30px;
}

.header-content-center {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.header-content-center a {
  text-transform: uppercase;
  color: var(--white);
}

.header-content-center a:hover,
.header-content-center a.active,
.header-content-center a:focus {
  color: var(--ltc1);
}

/* Hamburger Menu */
.hamburger-menu {
  display: none;
  cursor: pointer;
  font-size: 16px;
  color: var(--white);
  transition: color 0.3s ease;
}

.hamburger-menu:hover {
  color: var(--white);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 30px;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--tc1);
}

.mobile-menu-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.mobile-menu-nav a {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  color: var(--tc1);
}

.mobile-menu-btn {
  margin-top: 20px;
}

.btn-header {
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  background-color: var(--tc1);
  color: var(--white);
  border: 1px solid var(--tc1);
  transition: all 0.3s ease;
}

.btn-header:hover {
  background-color: var(--dtc1);
  color: var(--white);
  border: 1px solid var(--dtc1);
}

/* Mobile Styles - Breakpoint at 1100px */
@media (max-width: 1100px) {
  .btn-header {
    padding: 10px;
    border-radius: 0;
    font-weight: 500;
    font-size: 14px;
    background-color: var(--tc1);
    color: var(--white);
    border: 1px solid var(--tc1);
    transition: all 0.3s ease;
  }

  .btn-header:hover {
    background-color: var(--dtc1);
    color: var(--white);
    border: 1px solid var(--dtc1);
  }

  .header-content-center {
    display: none;
  }

  .hamburger-menu {
    display: block;
    width: 45px;
    height: 45px;
    background-color: var(--tc1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .header-content-left {
    min-width: auto;
  }

  .header-content-right {
    min-width: auto;
    gap: 10px;
  }

  .brand-logo {
    width: 100px;
  }

  header.sticky .brand-logo {
    width: 100px;
  }
}

@media (max-width: 450px) {
  .brand-logo {
    width: 100px;
    height: auto;
  }
}

/* Header - End */
/* Footer - Start */
footer {
  background-color: var(--tc1);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 50px;
}

.footer-grid-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0;
}

.footer-grid-item img {
  width: 150px;
  height: auto;
}

.footer-grid-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--white);
  font-family: "MonaSans", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.footer-grid-item p {
  color: var(--gray);
  margin-top: 10px;
  line-height: 1.5;
}

.footer-grid-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid-item ul li {
  margin-bottom: 5px;
}

.footer-grid-item ul li a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-grid-item ul li a:hover {
  color: var(--black);
}

.social-container-footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin-top: 10px;
}

.social-container-footer a {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  color: var(--black) !important;
  border-radius: 0;
  transition: color 0.3s ease;
}

.social-container-footer a:hover {
  background-color: var(--black);
  color: var(--white) !important;
}

.footer-end {
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (max-width: 767.98px) {
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }

  .footer-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0;
  }
}

/* Footer - End */
/* Buttons */
.btn {
  padding: 10px 20px;
  border-radius: 0;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-pri {
  background-color: var(--tc1);
  color: var(--white);
  border: 1px solid var(--tc1);
}

.btn-pri:hover {
  background-color: var(--dtc1);
  color: var(--white);
  border: 1px solid var(--dtc1);
}

.btn-sec {
  background-color: transparent;
  color: var(--tc1);
  border: 1px solid var(--tc1);
}

.btn-sec:hover {
  background-color: var(--tc1);
  color: var(--white);
  border: 1px solid var(--tc1);
}

.btn-sec-white {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--white);
}

.btn-sec-white:hover {
  background-color: var(--white);
  color: var(--tc1);
  border: 1px solid var(--white);
}

.btn-sec-black {
  background-color: transparent;
  color: var(--white);
  border: 1px solid var(--lblack);
}

.btn-sec-black:hover {
  color: var(--tc1);
  border: 1px solid var(--tc1);
}

.btn-red {
  background-color: #742521;
  color: var(--white);
  border: 1px solid #742521;
}

.btn-red:hover {
  background-color: #742521;
  color: var(--white);
  border: 1px solid #742521;
}

/* General CSS */
.full-width {
  width: 100% !important;
}
.page-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(21, 20, 23, 0.5),
    rgba(21, 20, 23, 1)
  );
  z-index: 1;
}

.page-title-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  gap: 20px;
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.page-title-content h1 {
  font-size: 50px;
}

.item--center-start {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}

.item--center-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.center-text {
  text-align: center;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.grid-four {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.hm-sec-three-txt ul {
  margin-top: -15px;
}

.hm-sec-three-txt li {
  margin-left: -15px;
}

@media (max-width: 767.98px) {
  .grid-two {
    display: grid;
    grid-template-columns: 1fr;
  }

  .grid-three {
    display: grid;
    grid-template-columns: 1fr;
  }

  .page-title-content h1 {
    font-size: 35px;
  }
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;
}

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

.form-row {
  display: flex;
  width: 100%;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background-color: var(--black);
  border: 1px solid var(--dgray);
  color: var(--white);
  font-family: "Karla", sans-serif;
  font-size: 16px;
  outline: none;
  transition: border-color 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--dgray);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--tc1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-send-inquiry {
  width: 100%;
  padding: 15px;
  background-color: #6366f1;
  color: var(--white);
  border: none;
  font-family: "Karla", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send-inquiry:hover {
  background-color: #4f46e5;
}

.btn-send-inquiry i {
  font-size: 18px;
}

@media (max-width: 767.98px) {
  .form-row-two {
    grid-template-columns: 1fr;
  }
}

/* General */
.breadcrumb {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 0px;
  z-index: 10;
}

.breadcrumb a {
  text-decoration: none;
  font-size: 16px;
  font-family: "Karla", sans-serif;
}

.breadcrumb i {
  color: var(--white);
}

/* 404 Page */
.page-title-404 {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 100px 0;
  color: var(--white);
  background-color: var(--black);
}

.error-page-ctn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.error-page-ctn h1 {
  font-size: 200px !important;
}

@media (max-width: 767.98px) {
  .error-page-ctn h1 {
    font-size: 100px !important;
  }
}

/* WhatsApp Popup */
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-floating-button {
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
}

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

.whatsapp-floating-button i {
  color: white;
  font-size: 28px;
}

.whatsapp-popup-content {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 320px;
  background: var(--black);
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.whatsapp-popup.active .whatsapp-popup-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.whatsapp-popup-header {
  background: #151716;
  color: white;
  padding: 20px 20px;
  border-radius: 15px 15px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #212422;
}

.whatsapp-popup-title {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 10px;
}

.whatsapp-popup-header img {
  width: 40px;
  height: 40px;
  border-radius: 100px;
}

.whatsapp-popup-header h6 {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.whatsapp-popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.whatsapp-popup-close:hover {
  opacity: 1;
}

.whatsapp-popup-body {
  background-color: #151716;
  padding: 20px;
  border-radius: 0 0 15px 15px;
}

.whatsapp-popup-body p {
  color: #151716;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.one-text {
  background-color: #d4e9e2;
  padding: 5px 10px;
  border-radius: 0px 10px 10px 10px;
  margin-right: 30px !important;
}

.two-text {
  background-color: #26d365de;
  padding: 5px 10px;
  border-radius: 10px 0px 10px 10px;
  margin-left: 30px !important;
}

.whatsapp-popup-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-popup-call {
  display: flex;
  justify-content: end;
  background-color: transparent;
}

.whatsapp-popup-call a {
  color: var(--white);
  padding: 6px 8px 4px 8px;
  border: 1px solid #212422;
  border-radius: 50px;
  font-size: 14px;
}

.whatsapp-popup-call a:hover,
.whatsapp-popup-call a:focus,
.whatsapp-popup-call a:active {
  color: #26d365de;
}

.whatsapp-btn {
  padding: 10px 15px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.whatsapp-btn-primary {
  background: #26d567;
  color: var(--black);
}

.whatsapp-btn-primary:hover {
  background: rgba(37, 211, 101, 0.644);
  color: var(--black);
  transform: translateY(-1px);
}

.whatsapp-btn-secondary {
  background-color: transparent;
  border: 0;
  color: var(--gray);
  font-size: 14px !important  ;
}

.whatsapp-btn-secondary:hover {
  color: var(--white);
}

.whatsapp-btn i {
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .whatsapp-popup {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-floating-button {
    width: 50px;
    height: 50px;
  }

  .whatsapp-floating-button i {
    font-size: 24px;
  }

  .whatsapp-popup-content {
    width: 280px;
    right: -10px;
  }
}
