@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700|Roboto:400,500,700&display=swap");

/* ======================
   #BASE STYLES 
   ====================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

/* body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #091e40;
  background-color: #fff;
} */

/* ======================
      #TYPOGRAPHY
      ====================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: calc(1.37383rem + 1.48598vw);
}
@media (min-width: 1200px) {
  h1 {
    font-size: 2.48832rem;
  }
}

.display-4 {
  font-size: calc(1.37383rem + 1.48598vw);
  font-weight: 900;
  line-height: 1;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 2.48832rem;
  }
}

p {
  margin-bottom: 1rem;
}

a {
  color: #723182;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #5b2768;
  text-decoration: underline;
}

.text-center {
  text-align: center !important;
}
.text-justify {
  text-align: justify !important;
}
.fw-semi-bold {
  font-weight: 600 !important;
}

/* ======================
      #LAYOUT & CONTAINERS
      ====================== */
.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 1rem);
  padding-left: var(--bs-gutter-x, 1rem);
  margin-right: auto;
  margin-left: auto;
  position: relative;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1540px) {
  .container {
    max-width: 1480px;
  }
}

section {
  position: relative;
  padding: 4rem 0;
}
@media (min-width: 992px) {
  section {
    padding: 7.5rem 0;
  }
}

.row {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) / -2);
  margin-left: calc(var(--bs-gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

/* ======================
      #COMPONENTS
      ====================== */
/* ----- Cards ----- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem;
}

.charge-card {
  background-color: #d5d9e0;
  border-radius: 13px;
  padding: 20px;
  box-shadow: 0 1px 2px 0 rgba(188, 181, 181, 0.5);
  max-width: 300px;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.charge-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.card-style-01 {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 33px;
  border: none;
}

.card-style-02 {
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 33px;
  border: none;
  background-color: #f9fafd;
}

.qcard {
  background-color: aliceblue;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-block;
  font-weight: 500;
  line-height: 1.5;
  color: #778295;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.56rem 1.8rem;
  font-size: 1rem;
  border-radius: 0.313rem;
  transition: all 0.15s ease-in-out;
}

.btn-lg {
  padding: 0.4rem 1.8rem;
  font-size: 1rem;
  border-radius: 0.625rem;
}

.btn-outline-primary {
  color: #1f3a63;
  border-color: #712cf9;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #712cf9;
  border-color: #723182;
}

.btn-outline-warning {
  color: #1f3a63;
  border-color: #712cf9;
}
.btn-outline-warning:hover {
  color: #fff;
  background-color: #712cf9;
  border-color: #723182;
}

.rounded-pill {
  border-radius: 50rem !important;
}

/* ----- Forms ----- */
.form-control {
  display: block;
  width: 100%;
  padding: 0.56rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #d5d9e0;
  border-radius: 0.313rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #723182;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(114, 49, 130, 0.25);
}

/* ----- Background Holders ----- */
.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-holder-left {
  position: absolute;
  width: 50%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

.bg-holder-right {
  position: absolute;
  width: 50%;
  min-height: 100%;
  top: 0;
  right: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  will-change: transform, opacity, filter;
  backface-visibility: hidden;
  background-repeat: no-repeat;
  z-index: 0;
}

/* ----- Blog Components ----- */
.blog-img {
  width: 85%;
  border-radius: 13px;
  margin-bottom: 1rem;
}

.blog-img-60 {
  width: 60%;
  max-width: 100%;
  height: auto;
  border-radius: 13px;
}

.profile-img {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 5px;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.author {
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  font-weight: 100;
  background-color: #505050;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  margin-top: 1rem;
}

.truncate {
  display: -webkit-box;
  max-width: 100%;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ======================
      #UTILITIES
      ====================== */
/* Spacing */
.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.py-6 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}
.pt-8 {
  padding-top: 7.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.mt-6 {
  margin-top: 4rem !important;
}

/* Flexbox */
.d-flex {
  display: flex !important;
}
.flex-center {
  align-items: center;
  justify-content: center;
}
.align-items-center {
  align-items: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}

/* Display */
.d-block {
  display: block !important;
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
}

/* Position */
.position-relative {
  position: relative !important;
}

/* Colors */
.bg-gray {
  background-color: #eee;
}
.text-700 {
  color: #b9b1bb !important;
}

/* Sizing */
.min-vh-md-75 {
  min-height: 75vh !important;
}

/* ======================
      #ANIMATIONS
      ====================== */
@keyframes moveCharger {
  0%,
  100% {
    top: 75%;
  }
  25%,
  75% {
    top: 78%;
  }
  50% {
    top: 85%;
  }
}

.bg-holder-left {
  animation: moveCharger 3s infinite linear;
}

.ani {
  opacity: 0;
  transform: translateX(-10px);
  transition: all 1s ease-in-out;
}
.ani.isVisible {
  opacity: 1;
  transform: translateY(0);
}

.ani.h5,
.ani.h3 {
  transition-delay: 200ms;
}
.ani img {
  transition-delay: 400ms;
}
.ani ul {
  transition-delay: 500ms;
}
.ani p {
  transition-delay: 600ms;
}

/* ======================
      #RESPONSIVE ADJUSTMENTS
      ====================== */
@media (max-width: 991px) {
  .header__expandMenu {
    top: 7.9rem;
  }
  .tip {
    top: 7.45rem;
  }
}

@media (max-width: 768px) {
  section {
    padding: 2rem 0;
  }

  .blog-img-60 {
    width: 100%;
  }

  .bg-holder-left,
  .bg-holder-right {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .p-5-responsive {
    padding: 5rem 0 !important;
  }
  .p-0-responsive {
    padding: 0.1rem 0 !important;
  }

  .quote {
    margin: 1rem;
    font-size: 1.2rem;
  }
}
.gap-3 {
  gap: 10px;
}

/* ======================
   #FOOTER STYLES
   ====================== */

/* Background holder for footer wave effect */
.bg-holder {
  position: absolute;
  width: 100%;
  min-height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 0;
}

/* Main footer container */
.py-0 {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

/* Content container with semi-transparent background */
.container[style*="background-color: #ffffff9e"] {
  position: relative;
  z-index: 1;
  border-radius: 12px 12px 0 0;
  margin-top: 100px;
}

/* Footer content layout */
.pb-5 {
  padding-bottom: 3rem;
}

.pt-8 {
  padding-top: 6rem;
}

/* Footer columns */
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

/* Footer headings */
.fs-1 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

/* Footer links */
.text-700 {
  color: #6c757d;
}

.fs--2 {
  font-size: 0.875rem;
}

.text-decoration-none {
  text-decoration: none;
}

/* Office addresses */
.list-unstyled li p {
  margin-top: 0.5rem;
  color: #6c757d;
  line-height: 1.5;
}

/* Social media icons */
.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 1rem;
}

/* Copyright section */
.fs--1 {
  font-size: 0.875rem;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .row.justify-content-between > div {
    width: 50%;
    margin-bottom: 2rem;
  }

  .pt-8 {
    padding-top: 4rem;
  }
}

@media (max-width: 768px) {
  .row.justify-content-between > div {
    width: 100%;
  }

  .container[style*="background-color: #ffffff9e"] {
    margin-top: 50px;
  }
}

/* Additional utility classes */
.rounded-lg {
  border-radius: 1rem;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
