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

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  color: #111;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Remove default link styles */
a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: inherit;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for form elements */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove button styles */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Header */
.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.page-header {
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 10px;
}

.nav-container {
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 100px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  color: #111;
  font-size: 24px;
  font-weight: 700;
  color: #6a1b9a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo:hover {
  color: #6a1b9a;
}

.logo img {
  width: 60px;
}

/* Nav */
.nav {
  align-items: center;
  gap: 38px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 36px;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  font-size: 15px;
  font-weight: normal;
  text-decoration: none;
  color: #111;
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Hover color */
.nav-list > li > a:hover {
  font-weight: 500;
  color: #6a1b9a;
}

.nav-list > li > a.active {
  font-weight: 500;
  color: #6a1b9a;
}

/* Submenu */
.submenu {
  position: absolute;
  top: 40px;
  left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 16px;
  padding: 10px 0;
  backdrop-filter: blur(10px);
  box-shadow: 0 15px 33px 0 rgba(13, 46, 149, 0.1019607843);
  border: 1px solid #e8e8e8;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.submenu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 15%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid rgba(0, 0, 0, 0);
  border-right: 8px solid rgba(0, 0, 0, 0);
  border-bottom: 12px solid #fff;
}

.submenu li {
  border-bottom: 1px solid #f0f0f0;
  padding: 10px 18px;
}
.submenu li:last-child {
  border-bottom: none;
}

.submenu li a {
  display: block;
  font-size: 14px;
  color: #222;
  text-decoration: none;
}

.submenu li a.active {
  color: #6a1b9a;
  font-weight: 500;
}

.submenu li p {
  font-size: 14px;
  color: #222;
  margin: 0;
}

.submenu li a:hover {
  /* background: #f6f2fb; */
  color: #6a1b9a;
  font-weight: 500;
}

/* Show submenu */
.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.get_in_touch {
  padding: 10px 20px;
  background-color: #6a1b9a;
  color: #fff;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* Hamburger */
.hamburger {
  display: none;
}

.main-container {
  padding: 72px 0px 0px;
}

.banner {
  max-width: unset !important;
  width: unset !important;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 70px);
  height: 100%;
  max-height: 900px;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.home-content-section {
  max-width: 1650px;
  padding: 54px 68px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0px auto;
}

.home-content-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.card-content-left {
  flex: 1 1;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  max-width: 30%;
}

.card-content-right {
  flex: 1 1;
}

.home-content-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
}

.home-content-card p {
  font-size: 16px;
  color: #555;
}

.home-content-card h4 {
  font-size: 26px;
  font-weight: 600;
  color: #333;
  text-align: center;
}

.what-we-offer-cards {
  margin: 24px 0px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 290px;
  text-align: center;
  padding: 0px 24px;
}

.offer-card img {
  width: 100px;
}

.offer-card h5 {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
}

.why-choose-us-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-us-card h3 {
  font-size: 30px;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
}
.why-choose-us-card p {
  font-size: 16px;
  color: #555;
  padding: 0px 110px;
  text-align: center;
}

.why-choose-us-badges {
  margin: 24px 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 42px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px 10px 12px;
  background: linear-gradient(180deg, #f8fafc, #f1f4f7);
  border-radius: 40px;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
}

.badge-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #6bb6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  color: #6bb6ff;
  margin-right: 12px;
  /* box-shadow: inset 0 0 0 3px #e8f4ff; */
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.badge-2 {
  border-color: #ff9a6b;
  color: #ff9a6b;
}

.badge-3 {
  border-color: #6a1b9a;
  color: #6a1b9a;
}

.badge-4 {
  border-color: #1f3c88;
  color: #1f3c88;
}

.badge-5 {
  border-color: #00b894;
  color: #00b894;
}

.badge-text {
  font-size: 15px;
  font-weight: 600;
  color: #1f3c88;
  white-space: nowrap;
}

footer {
  background-color: #f8f8f8;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
footer h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #6a1b9a;
  font-weight: 600;
}

.footer {
  width: 100%;
  max-width: 1400px;
  background-color: #f8f8f8;
  padding: 40px 100px;
  display: flex;
  justify-content: space-between;
}
.footer i {
  color: #6a1b9a;
}
.footer_addresses {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer_addresses p {
  font-weight: normal;
}
.footer__contact p {
  margin-bottom: 8px;
}

address {
  max-width: 250px;
}
.footer__quicklink li {
  margin-bottom: 8px;
}
.footer__quicklink a:hover {
  color: #6a1b9a;
}

.copyright {
  text-align: center;
  padding: 20px 0;
  font-size: 14px;
  color: #666;
}

.slideanim {
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(0.85);
  filter: blur(8px);
  opacity: 0.2;
}
.slide {
  animation-name: slide;
  -webkit-animation-name: slide;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  visibility: visible;
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}
@keyframes slide {
  0% {
    opacity: 0;
    transform: translateY(70%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@-webkit-keyframes slide {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
  }
}

.carousel-item {
  width: 100%;
  text-align: center;
  font-size: 48px;
  font-weight: 800;
  color: #f0f0f0;
  padding: 24px 36px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.5);
}
