* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    xerofi-blue: #1e88e5;
    xerofi-light-blue: #4cb5f5;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-logo {
    width: 200px;
    height: auto;
    margin-bottom: 30px;
    animation: logoFadeIn 1s ease-in-out;
}

.loading-spinner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pulse-ring {
    border: 3px solid var(--xerofi-blue);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    position: absolute;
    animation: pulsing 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    opacity: 0;
}

.pulse-ring.delay-1 {
    animation-delay: 0.33s;
}

.pulse-ring.delay-2 {
    animation-delay: 0.66s;
}

@keyframes pulsing {
    0% {
        transform: scale(0.1);
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 7rem;
    background: #fff;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    width: 10%;
    margin-right: 0;
}

.logo {
    width: 100%;
    height: auto;
}

.navbar-toggler {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #218fcf;
    cursor: pointer;
}

.nav-items {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.navbar-menu {
    list-style: none;
    display: flex;
    gap: 3rem;

    margin: 0;
    margin-top: 1%;
    padding: 0;
}
i.fa-solid.fa-chevron-down {
    color: #218fcf;
}
.navbar-menu li {
    position: relative;
}

.navbar-menu li a {
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: background-color 0.5s ease-in-out;
}

.navbar-menu li a:hover {
    color: #007bff;
}

.dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #fff;
    border: 1px solid #218fcf;
    width: 37rem;
    height: auto;
    box-shadow: 1px 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    top: 100%;
    z-index: 5;
}
.dropdown-menu {
    display: none;
    list-style: none;
    width: 100%;
}
.dropdown-img {
    width: 20rem;
    height: 21rem;
    object-fit: cover;
    border-radius: 5px 0 0 4px;
}

.dropdown-menu li a {
    display: block;
    padding: 0.7rem;
    padding-right: 2rem;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    color: #333;
    white-space: nowrap;
    margin-left: 0.5em;
    transition: all 0.2s ease-in-out;
    text-align: center;
}
.dropdown-menu li a:hover {
    border-left: 4px solid #1e88e5;
    border-left-style: dotted;
    margin-left: 0.5em;
}
.dropdown:hover .dropdown-menu {
    display: block;
    position: relative;
    border: 0;
    background-color: 0;
}
.dropdown:hover .dropdown-content {
    display: flex;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background-color: #218fcf;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.4s ease-in-out;
}

.contact-btn:hover {
    background-color: #2980b9;
}

.language-selector {
    display: flex;
    align-items: center;
    cursor: pointer;
    background-color: #e0ecf2;
    color: #218fcf;
    font-size: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    gap: 0.7rem;
    border: 1px solid #218fcf;
    transition: all 0.5s ease-in-out;
    width: auto;
}

.language-selector img {
    width: 25px;
    height: auto;
    display: inline-block;
}
.language-selector {
    position: relative;
    cursor: pointer;
}

.lang-dropdown {
    position: absolute;
    font-size: 1rem;
    font-family: "Poppins", sans-serif;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 4px;
    box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    list-style: none;
    padding: 1rem 0;
    min-width: 150px;
    width: fit-content;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 10;
    transition: all 0.5s ease-in-out;
}

.language-selector:hover .lang-dropdown {
    display: hidden;
}

.lang-dropdown li {
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.lang-dropdown li a {
    text-decoration: none;
}
.lang-dropdown li:hover {
    background: #f5f5f5;
}

.lang-dropdown img {
    width: 20px;
    height: 15px;
}

.carousel-item {
    height: 75vh;
    position: relative;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
            ellipse at top left,
            rgba(33, 143, 207, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 50%
        ),
        radial-gradient(
            ellipse at bottom right,
            rgba(21, 101, 192, 0.7) 0%,
            rgba(0, 0, 0, 0.4) 50%
        ),
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(32, 67, 103, 0.8) 20%,
            rgba(33, 143, 207, 0.7) 40%,
            rgba(21, 101, 192, 0.9) 80%,
            rgba(13, 71, 161, 0.95) 100%
        );
    opacity: 0.95;
    z-index: 1;
    animation: overlayPulse 8s ease-in-out infinite;
}

@keyframes overlayPulse {
    0%,
    100% {
        opacity: 0.95;
        transform: scale(1);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.02);
    }
}

.carousel-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
    z-index: 2;
    pointer-events: none;
}
.carousel-control-prev i,
.carousel-control-next i {
    font-size: 3rem;
    color: #fff;
}

.carousel-caption {
    font-family: "Montserrat", sans-serif;
    width: 80%;
    text-align: center;
    position: absolute;
    margin: 0 auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translate(-50%, -40%);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.carousel-caption h1 {
    margin: 0 auto;
    font-size: 5rem;
    text-align: center;
    font-weight: 700;
    max-width: 80rem;
    margin-bottom: 0.1em;
}
.carousel-caption p {
    font-size: 1.5rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 3rem;
}
.sectionbtn a {
    margin-top: 2rem;
    margin-right: 1em;
    background-color: #218fcf;
    text-align: center;
    font-weight: 400;
    font-size: 1.3em;
    color: white;
    padding: 0.8em 2em;
    text-decoration: none;
    font-family: "Poppins", sans-serif;
    border: 2px solid #218fcf;
    border-radius: 0.3em;
    transition: all 0.3s ease;
    transform: translateY(0);
}
.sectionbtn a:hover {
    background-color: #1565c0;
    border: 2px solid #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 143, 207, 0.3);
}
#btnabout {
    background-color: transparent;
    border: 2px solid white;
    padding: 0.8em 2em;
    transition: all 0.3s ease;
    transform: translateY(0);
}
#btnabout:hover {
    background-color: white;
    color: #218fcf;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
}

.arrowkanan {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    transform: translateX(0);
}

.sectionbtn a:hover .arrowkanan {
    transform: translateX(5px);
}

#btnabout:hover .arrowkanan {
    transform: translateX(5px);
}

.ceo-section {
    padding: 6.5rem 3rem;
}

.ceo-image-bg {
    position: relative;
    background-image: url("/img/bgceo.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 10px;
    overflow: visible;
    margin-top: 1.5rem;
    height: 35rem;
    width: 34rem;
    margin-left: 35%;
}
.ceo-image-bg img {
    position: absolute;
    top: -15%;
    left: 55%;
    transform: translateX(-50%);
    width: 80%;
    height: auto;
    z-index: 2;
    border-radius: 8px;
}

.ceo-text-box {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    border-radius: 5px;
    color: white;
    background-color: #224770;
    width: auto;
    padding: 1.2em 2em;
    position: absolute;

    bottom: -10%;
    left: 50%;
    transform: translateX(-40%);
    z-index: 2;
}

.ceo-text-box h4 {
    font-weight: 600;
    width: auto;
    font-size: 2.5rem;
    white-space: nowrap;
}

.ceo-text-box p {
    color: white;
    font-size: 1.5rem;
    font-weight: 500;
}
.introbox {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.8;
  padding: 2rem;
  text-align: justify;
}
.introbox h2 {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: #218fcf;
  color: #224770;
}

.introbox p {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #272829;
}
.introbox .muted {
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #7e7e7e;
    line-height: 1.1;
}
.plus {
    color: #218fcf;
    font-size: 1rem;
}
.phead {
    font-weight: 600;
    font-size: 1rem;
}
.text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #218fcf;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s ease-in-out;
    padding: 2.5em;
    margin-top: 1rem;
}
.icon-wrap:hover {
    background-color: #1f4f78;
}

.icon-wrap i {
    font-size: 3rem;
}

.services-section {
    padding: 80px 7rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.services-heading {
    font-size: 3.5rem;
    font-weight: 800;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    letter-spacing: 1px;
}

.services-heading::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #218fcf, #4cb5f5);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.services-subtext {
    font-size: 1.3rem;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cardwrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.service-card {
    font-family: "Montserrat", sans-serif;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    height: 35rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
        0 8px 16px -4px rgba(33, 143, 207, 0.1);
}

.service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.9) 100%
    );
    pointer-events: none;
    transition: all 0.4s ease;
}

.service-content {
    display: flex;
    position: relative;
    z-index: 2;
    color: #fff;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 3rem 2rem;
}

.service-content i {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.servicewrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0;
    text-align: center;
    flex-grow: 1;
}

.servicewrap i {
    background: linear-gradient(135deg, #218fcf 0%, #4cb5f5 100%);
    padding: 1.5rem;
    border-radius: 16px;
    font-size: 2.5rem;
    box-shadow: 0 8px 32px rgba(33, 143, 207, 0.3);
    transition: all 0.3s ease-out;
    transform-origin: center;
}

.service-card:hover .servicewrap i {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(33, 143, 207, 0.2);
}

.service-title {
    display: block;
    width: 100%;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    line-height: 1.3;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.btnwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-width: 160px;
    height: 50px;
}

.service-btn {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    font-family: "Poppins", sans-serif;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.btnwrap i {
    font-size: 1rem;
    transition: all 0.3s ease;
    transform-origin: center;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-top: auto;
}

.btnwrap:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btnwrap:hover .service-btn {
    color: #218fcf;
}

.btnwrap:hover i {
    color: #218fcf;
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%,
    100% {
        transform: translateX(0) scale(1);
    }
    50% {
        transform: translateX(4px) scale(1.2);
    }
}

.comingsoon {
    border-color: rgba(215, 63, 28, 0.9);
    background: rgba(215, 63, 28, 0.25);
}

.comingsoon:hover {
    background: rgba(215, 63, 28, 0.85);
    border-color: #d73f1c;
    color: white;
    cursor: not-allowed;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(215, 63, 28, 0.3);
}

.comingsoon:hover .service-btn {
    color: white;
}

.comingsoon:hover i {
    color: white;
    animation: clockSpin 1s ease-in-out;
}

@keyframes clockSpin {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.1);
    }
    100% {
        transform: rotate(360deg) scale(1);
    }
}

.youtube-section {
    padding: 6.5rem 7rem;
}
.kiriYoutube {
    width: 30% !important;
}
.kananYoutube {
    width: 70% !important;
}

.youtube-left-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 20rem;

    min-height: 300px;
}

.youtube-left-box .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: linear-gradient(
        135deg,
        rgba(33, 143, 207, 0.9),
        rgba(21, 101, 192, 0.8)
    );
    z-index: 2;
    pointer-events: none;
}

.youtube-content {
    font-family: "Montserrat", sans-serif;
    margin-top: 2rem;
    position: relative;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    z-index: 3;
    padding: 2rem 4rem;

    color: #fff;
}

.youtube-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.95;
    letter-spacing: 0.5px;
    background-color: white;
    color: #333;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.youtube-label i {
    font-size: 1.4rem;
    color: #ff0000;
    transition: all 0.3s ease;
}

.youtube-label span {
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

.youtube-label:hover i {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.youtube-content .subheading {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.channel-title {
    font-size: 3.4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 6.5rem;

    text-transform: uppercase;
}

.video-scroller {
    overflow-x: auto;
    padding-bottom: 1rem;
    scrollbar-color: #218fcf #eaeaea;
}

.video-scroller iframe {
    flex: 0 0 auto;
    border-radius: 10px;
    border: none;
}
.video-scroller {
    overflow-x: auto;
    scrollbar-color: #218fcf #eaeaea;
    scrollbar-width: thin;
}

.video-scroller::-webkit-scrollbar {
    height: 20px;
}

.video-scroller::-webkit-scrollbar-track {
    background-color: #eaeaea;
    border-radius: 10px;
    margin: 2px;
}

.video-scroller::-webkit-scrollbar-thumb {
    background-color: #218fcf;
    border-radius: 8px;
    border: 2px solid #eaeaea;
}
.video-scroller::webkit-scrollbar-button {
    display: none;
}

.video-scroller::-webkit-scrollbar-thumb:hover {
    background-color: #18648f;
}
/* Box kanan (selaras desain kiri) */
.see-more-box {
    min-width: 500px;
    height: 520px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(33, 143, 207, 0.9),
        rgba(21, 101, 192, 0.8)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat", sans-serif;
    position: relative;
    overflow: hidden;
}

/* Efek overlay lembut */
.see-more-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    z-index: 1;
}

/* Tombol kanan (disamakan gaya dengan kiri tapi lebih tegas) */
.btn-learn-more-kanan {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.9);
    padding: 0.7rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-learn-more-kanan:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #218fcf;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-learn-more-kanan i {
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.btn-learn-more-kanan:hover i {
    transform: translate(2px, -2px);
    opacity: 0.9;
}

footer {
    background-color: #2073ad !important;
    font-family: "Montserrat", sans-serif;
}
footer .container-fluid {
    padding: 0;
    padding: 1rem 7rem;
}

footer .bg-white {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.footsocial i {
    font-size: 1.5rem;
    vertical-align: middle;
}
.footlogo {
    font-family: "Akatab", sans-serif;
}
.footlogo h4 {
    font-weight: 700;
    font-size: 6.3em;
    height: fit-content;
    margin-bottom: 0;
    padding-bottom: 0;
    padding-top: 0;
}
.footlogo p {
    margin-top: 0;
    margin-bottom: 4rem;
    padding-top: 0;
    font-weight: 300;
    font-size: 1.5em;
}

footer .bg-white:hover {
    transform: translateY(-3px);
}
.footcontent h5 {
    font-size: 1.7rem;
    font-weight: 600;
}
.footcontent ul li i,
a {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 2.4;
}
.footcontent ul li i {
    margin-right: 1rem;
}
footer .bi {
    font-size: 1.2rem;
}
.footsocial {
    color: #2073ad;
}

footer a:hover {
    color: rgba(255, 255, 255, 0.8) !important;
}

footer hr {
    opacity: 0.3;
}
.disabledlink {
    cursor: not-allowed;
}
#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 8rem;
    right: 3rem;
    z-index: 100;
    background-color: white;
    border: none;
    outline: none;
    width: 4rem;
    height: 4rem;
    border-radius: 10px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease-in-out;

    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
#scrollTopBtn i {
    color: #218fcf;
    font-size: 2.5rem;
}
#scrollTopBtn:hover {
    background-color: #ebe9e9;
}

.xerofiHeroContainer {
    position: relative;
    height: 25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 7rem;
}

.xerofiHeroBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/img/abouthead.jpg");
    background-size: cover;
    background-position: center;
}

.xerofiGradientOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(33, 111, 207, 0.8) 10%,
        rgba(33, 111, 207, 0.7) 35%,
        rgba(33, 111, 207, 0.5) 45%,
        rgba(33, 111, 207, 0.35) 75%,
        rgba(33, 111, 207, 0.24) 100%
    );
}

.xerofiContentWrapper {
    position: relative;
    color: white;
    text-align: center;
    max-width: 100%;
    z-index: 2;
}

.introtitlexerofi {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
}

.xerofiSubtitle {
    font-size: 1.5rem;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
}

.AboutXerofiAtas {
    position: relative;
    overflow: hidden;
}
.aboutcontainer {
    padding: 3rem 7rem;
    font-family: Montserrat, sans-serif;
    text-align: justify;
}
.aboutcontainer p {
    font-family: poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.AboutXerofiAtas .section-title {
    color: #2b547e;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.AboutXerofiAtas .service-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.AboutXerofiAtas .service-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-family: poppins, sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
}

.AboutXerofiAtas .check-icon {
    color: #4caf50;
    margin-right: 0.75rem;
    margin-top: 0.1rem;
    font-size: 1.5rem;
    min-width: 24px;
}

.AboutXerofiAtas .image-container {
    position: relative;
    width: 100%;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-left: 15rem;
}

.AboutXerofiAtas .image-wrapper {
    position: absolute;
    z-index: 2;
    width: fit-content;
    border-radius: 8px;
    overflow: hidden;
    bottom: 5%;
    right: 0%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.AboutXerofiAtas .image-wrapper img {
    width: 45rem;
    height: 35rem;
    object-fit: cover;
    border-radius: 8px;
}

.AboutXerofiAtas .blue-box {
    position: relative;
    width: 45rem;
    height: 35rem;
    background-color: #218fcf;
    bottom: 0%;
    right: 17%;
    z-index: 1;
    border-radius: 8px;
}

.bagian-visi-misi {
    background-color: white;
    padding-top: 0;
    padding-bottom: 3rem;
}

.konten-visi,
.konten-misi {
    background-color: #218fcf;
    background-size: cover;
    height: 100%;
    text-align: justify;
}
.konten-visi {
    padding: 4.5rem 4.5rem 4.5rem 7rem;
}
.konten-misi {
    padding: 4.5rem 7rem 4.5rem 4.5rem;
}

.kotak-judul h2 {
    font-weight: 700;
    font-family: Monserrat, sans-serif;
    display: inline-block;
    color: white;
}
.lead {
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

.partners .container-fluid {
    padding: 0 7rem 3rem;
}

.partners-title {
    color: #2b4c7e;
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}
.partnerdesc {
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
    text-align: justify;
    width: 95%;
}
.partners-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.partners-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.partners-list i {
    margin-right: 1.1rem;
    margin-top: 5px;
    font-size: 1.2rem;
    padding: 0.7rem;
    background-color: #218fcf;
    color: white;
    border-radius: 8px;
}
.partners-list span {
    margin-top: 5px;
    color: #272829;
    font-size: 1.3rem;
    font-weight: 400;
    font-family: Poppins, sans-serif;
}

.partner-card {
    height: 25rem;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
    position: relative;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    border-radius: 10px;
    height: 100%;
    background-color: rgba(53, 89, 113, 0.75);
    z-index: 1;
}

.partner-img-wrap {
    position: relative;
    margin-top: 1.2rem;
    height: 100%;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: flex-end;
    z-index: 2;
}

.partner-img-wrap img {
    width: 120%;
    height: 120%;
    position: relative;
    object-fit: contain;
}

.partner-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background-color: rgba(33, 143, 207, 0.75);
    color: white;
    text-align: center;
    font-family: Montserrat, sans-serif;
    border-radius: 0 0 10px 10px;
    z-index: 3;
}

.partner-info h5 {
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.2rem;
}

.partner-info p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 1rem;
}

.clientHeadContainer {
    position: relative;
    height: 25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 3rem 7rem;
}

.clientImgBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("/img/service2.jpg");
    background-size: cover;
    background-position: center;
}

.clientGradientOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(33, 111, 207, 0.8) 10%,
        rgba(33, 111, 207, 0.7) 35%,
        rgba(33, 111, 207, 0.5) 45%,
        rgba(33, 111, 207, 0.35) 75%,
        rgba(33, 111, 207, 0.24) 100%
    );
}

.clientHeadWrapper {
    position: relative;
    color: white;
    text-align: center;
    max-width: 100%;
    z-index: 2;
}

.clientTitle {
    font-size: 5.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 5px;
}

.clientsList {
    padding: 4rem 7rem;
    background-color: #f8f9fa;
    width: 100%;
    max-width: 100%;
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
}

.tenth-col {
    width: 10%;
    box-sizing: border-box;
}

.clientsList .logo-container {
    height: 7rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    background-color: white;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.clientsList .logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.clientsList img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.customer-satisfaction-section {
    min-height: 10rem;
    overflow: hidden;
}

.customer-satisfaction-section .image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.customer-satisfaction-section .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(77, 182, 156, 0.9) 55%,
        rgba(77, 182, 156, 0.8) 65%,
        rgba(77, 182, 156, 0.6) 75%,
        rgba(77, 182, 156, 0.45) 85%,
        rgba(77, 182, 156, 0.24) 100%
    );
    z-index: 2;
}

.customer-satisfaction-section .content-wrapper {
    position: relative;
    z-index: 3;
    padding: 2rem 7rem;
    gap: 3rem;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.content-wrapper {
    display: flex;
    align-items: center;
}
.ratingTextWrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    margin-right: 3rem;
}
.ratingTextWrapper h2 {
    font-family: Montserrat, sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
}
.ratingTextWrapper p {
    font-family: Poppins, sans-serif;
    text-align: justify;
    font-size: 1.2rem;
    font-weight: 400;
}
.ratingNumber {
    font-size: 1.8rem;
    font-family: Montserrat, sans-serif;
}
.ratingIcon {
    margin-left: 1rem;
    font-size: 2.3rem;
}
.box-rate {
    padding: 1.5rem 3rem;
}

.gallery-heading {
    height: 30rem;
    overflow: hidden;
    position: relative;
}

.gradient-overlay-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 143, 207, 0.85);
    z-index: 1;
}

.gallery-text-content {
    position: relative;
    padding-left: 10rem;
    font-family: Montserrat, sans-serif;
    z-index: 2;
}

.gallery-text-content h5 {
    letter-spacing: 1px;
    font-size: 2rem;
    font-weight: 500;
}

.gallery-text-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn-toggle-group .btn {
    border-radius: 10px;
    font-weight: 500;
    min-width: 100px;
}

.gallery-section {
    padding: 4rem 7rem;
    height: 100%;
}

.box-header {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    cursor: pointer;
}
.box-header h2 {
    font-weight: 500;
}
.box-header .fa-circle-chevron-down {
    color: #218fcf;
    transition: transform 0.5s ease-in-out;
}

.box-header .fa-circle-chevron-down.rotated {
    transform: rotate(180deg);
}

.gallery-item {
    overflow: hidden;
}

.gallery-image {
    cursor: pointer;
    border-radius: 10px;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 20rem;
    object-fit: cover;
}

.gallery-image:hover {
    transform: scale(1.1);
}

.gallery-container {
    transition: opacity 0.6s ease-in-out, max-height 0.7s ease-in-out;
    opacity: 1;
    max-height: 3000px;
    overflow: hidden;
}

.gallery-container.hidden {
    opacity: 0;
    max-height: 0;
}

.inHouse-heading {
    height: 30rem;
}
.gradient-overlay-inHouse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.inHouseHead-text {
    position: relative;
    height: 20rem;
    width: 55%;
    padding-left: 7rem;
    padding-right: 3rem;
    font-family: Montserrat, sans-serif;
    background: rgba(33, 143, 207, 0.85);
    z-index: 2;
}
.textHeadInhouse {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    gap: 1.5rem;
}
.textHeadInhouse h5 {
    font-size: 4.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.inHouseHead-text p {
    color: white;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    font-size: 1.4rem;
    text-align: justify;
    margin-top: 1.2rem;
}

.inHouse-metode {
    padding: 4.2rem 7rem;
}
.metode-heading {
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.metode-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #218fcf;
    margin: 0.5rem auto 0;
}

.metode-subtext {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #272829;
    max-width: 1500px;
    margin: 0 auto;
}

.benefit-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.4s ease-in-out;
    display: flex;
    justify-content: start;
    flex-direction: column;
}

.benefit-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.benefit-card-header i {
    font-size: 1.5rem;
    color: #218fcf;
    margin-right: 1rem;
}

.benefit-card-header h5 {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #272829;
    text-transform: uppercase;
}

.benefit-card p {
    color: #272829;
    font-family: poppins, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    margin-top: 0.7rem;
}

.benefit-card:hover {
    background-color: #2389d7;
    transform: translateY(-5px);
}

.benefit-card:hover .benefit-card-header i,
.benefit-card:hover .benefit-card-header h5,
.benefit-card:hover p {
    color: #fff;
}

.inhouseTraining {
    padding: 4rem 7rem 4rem 7rem;
    background-color: #f2f2f2;
}

.training-heading {
    font-size: 3rem;
    font-weight: 700;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    position: relative;
    margin-bottom: 1rem;
}

.training-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: #218fcf;
    margin: 0.5rem auto 0;
}

.training-subtext {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    color: #272829;
    max-width: 1500px;
    margin: 0 auto;
}

.customized-box {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 50rem;
    min-height: 300px;
}

.customized-box .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;
    object-fit: cover;
    z-index: 1;
}

.customized-box .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40%;

    background: rgba(0, 0, 0, 0.15);
    z-index: 2;
    pointer-events: none;
}

.customized-content {
    font-family: "Montserrat", sans-serif;
    background-color: white;
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    z-index: 3;
    padding: 2rem 4rem;
    color: #272829;
}
.customized-content .mini-text {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.mini-text .fa-square-pen {
    height: fit-content;
    font-size: 1.4rem;
    color: #218fcf;
}
.customized-content h5 {
    font-size: 1.2rem;
    width: fit-content;
    margin-bottom: 0;
}
.customized-title {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #218fcf;
    text-transform: uppercase;
}
.customized-content p {
    font-size: 1.1rem;
    font-family: Poppins, sans-serif;
    font-weight: 400;
    text-align: justify;
}
.customized-box .btn-learn-more {
    display: inline-flex;
    margin-top: 3rem;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 500;
    width: fit-content;
    gap: 0.5rem;
    color: white;
    background-color: #218fcf;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.customized-box .btn-learn-more:hover {
    background-color: #1e83bd;
    color: white;
    gap: 0.7rem;
}

.built-box {
    clear: both;
    width: 100%;
    height: 50rem;
    overflow: hidden;
    background-color: white;
    border-radius: 8px;
    padding: 3rem;
    display: flex;
    gap: 10rem;
    justify-content: center;
    color: black;
}
.built-content {
    width: 50%;
}
.built-content .mini-text {
    display: inline-flex;
    align-items: center;
    font-size: 1.2rem;
    gap: 0.6rem;
    margin-bottom: 1rem;
    color: #272829;
}
.built-content .mini-text h5 {
    margin-bottom: 0;
    font-family: Montserrat, sans-serif;
}
.built-content .mini-text .fa-square-check {
    height: fit-content;
    color: #218fcf;
}

.built-title {
    color: #218fcf;
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.moduledesc {
    color: #272829;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    font-weight: 400;
}
.selectModule {
    padding: 2rem 3rem;
    font-family: Poppins, sans-serif;
    width: 90%;
    color: #272829;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 3px solid #218fcf;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    font-size: 1.2rem;
}
.selectModule:hover {
    background-color: #f2f2f2;
    color: #272829;
    transform: translateY(5px);
}

.selectModule.active {
    background-color: #218fcf;
    color: #fff;
    transform: translateY(5px);
}
.built-module {
    padding: 2rem 3rem;
    border-radius: 10px;
    background-color: #218fcf;
    color: #272829;
}
.built-module {
    h2 {
        font-size: 1.7rem;
        font-weight: 600;
        font-family: Montserrat, sans-serif;
        color: white;
    }
    ul {
        margin-top: 1rem;
        list-style: none;
        padding-left: 0;
        line-height: 2.5;
    }
    ul li {
        font-size: 1.2rem;
        color: white;

        font-family: Poppins, sans-serif;
        border-bottom: 2px solid white;
    }
}

.contactBanner {
    padding: 4rem 7rem;
    background-color: white;
}

.contactBanner .left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}
.leftTextContact {
    font-family: Montserrat, sans-serif;
}
.leftTextContact h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #218fcf;
}
.leftTextContact h3 {
    font-size: 1.7rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #272829;
}
.leftTextContact p {
    font-family: Poppins, sans-serif;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    text-align: justify;
}

.contactBanner .right-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.contactBanner .contact-box {
    background: linear-gradient(
            rgba(33, 143, 207, 0.85),
            rgba(33, 143, 207, 0.85)
        ),
        url("service1.jpg") center/cover no-repeat;
    padding: 2rem 4rem;
    border-radius: 0.5rem;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 48rem;
    position: relative;
}

.contactBanner .contact-box a.btn-contact {
    font-size: 2.2rem;
    position: relative;
    color: #218fcf;
    background-color: white;
    border: none;
    font-family: Montserrat, sans-serif;
    font-weight: 800;
    padding: 0.2rem 10rem;
    border-radius: 10px;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1rem;
    transition: all 0.3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
.contactBanner .contact-box a.btn-contact:hover {
    background-color: #f2f2f2;
}

.contactBanner .contact-info {
    font-size: 1.5rem;
    position: relative;
    font-family: Montserrat, sans-serif;
    line-height: 1.5;
    font-weight: 400;
    display: flex;
    flex-direction: row;
    gap: 1.2rem;
    align-items: center;
    justify-content: center;
}

.card-custom {
    border: none;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    margin-top: 2rem;
}

.image-container {
    background-position: center;
    background-size: 120%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.8s ease-in-out;
}

.card-custom:hover .image-container {
    background-size: 130%;
}
.card-custom:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.headCorService {
    font-family: Montserrat, sans-serif;
    font-size: 2.2rem;
    color: #218fcf;
    font-weight: 600;
    text-transform: uppercase;
}
.pCorService {
    text-align: justify;
    font-family: Poppins, sans-serif;
    font-size: 1rem;
    line-height: 2;
    margin-top: 1rem;
}

.card-footer {
    padding: 0;
    border: none;
}

.blue-bar {
    width: 100%;
    height: 1rem;
    background-color: #218fcf;
}

.ContactUsGradientOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(34, 71, 112, 0.75) 0%,
        rgba(34, 71, 112, 1) 100%
    );
}
.ContactUsHeroBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ContactUsForm {
    padding: 4rem 7rem;
}

.ContactUsForm .row {
    gap: 2rem;
    align-items: flex-start;
}

.ContactUsForm .FormContact .row.mb-3 {
    gap: 0;
    margin-bottom: 1.5rem;
}

.ContactUsForm .FormContact .col-md-6 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.ContactUsForm .col-12.col-lg-6 {
    flex: 1 1 0;
}

.ContactUsForm .col-12.col-lg-6.contact-info-col {
    flex: 0 1 auto;
    max-width: 50%;
}
.FormContact {
    font-family: Montserrat, sans-serif;
}
.FormContact h2 {
    color: #218fcf;
    text-transform: uppercase;
    font-size: 3rem;
    font-weight: 600;
}
.FormContact p {
    color: #7e7e7e;
    font-size: 1.2rem;
    font-family: Poppins, sans-serif;
    font-weight: 400;
}
.form-control,
.form-select {
    border: 2px solid #218fcf;
    font-family: Montserrat, sans-serif;
    padding: 1rem;
}
.form-label {
    color: #272829;
    font-weight: 500;
    font-size: 1.2rem;
}
input::placeholder {
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: #7e7e7e;
}
select {
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: #7e7e7e;
}
select:focus,
select:valid {
    font-weight: 400;
    font-family: Poppins, sans-serif;
    color: #7e7e7e;
}
.btn-submitContact {
    background-color: #218fcf;
    font-weight: 500;
    border: none;
    font-size: 1.1rem;
    color: white;
    border-radius: 10px;
    font-family: Poppins, sans-serif;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-submitContact:hover {
    background-color: #1e83bd;
}
.btn-whatsapp {
    border: 2px solid #25d366;
    color: #25d366;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
}
.btn-whatsapp:hover {
    color: white;
    background-color: #25d366;
}
.btn-clear {
    border: 2px solid red !important;
    background-color: transparent;
    font-weight: 500;
    font-size: 1.1rem;
    color: red !important;
    border-radius: 10px;
    font-family: Poppins, sans-serif;
    transition: all 0.3s ease-in-out;
}
.btn-clear:hover {
    background-color: red !important;
    color: white !important;
}

.contact-info-col {
    border-radius: 10px;
    font-family: Montserrat, sans-serif;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.contact-info-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
            45deg,
            rgba(33, 143, 207, 0.9) 0%,
            rgba(76, 181, 245, 0.85) 50%,
            rgba(33, 143, 207, 0.9) 100%
        ),
        url("../img/contact/map.webp") center/cover no-repeat;
    z-index: -1;
}

.contact-info-col::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(255, 255, 255, 0.02) 100px,
        rgba(255, 255, 255, 0.02) 102px
    );
    z-index: -1;
}

.contact-info-col h2 {
    font-weight: 800;
    font-size: 3.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.1;
}

.contact-info-col p {
    font-weight: 300;
    font-size: 1.6rem;
    text-align: justify;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    line-height: 1.4;
    font-style: italic;
}

.contact-info-col .kontakRows {
    color: white !important;
    display: flex !important;
    align-items: center !important;
    margin-bottom: 1.5rem !important;
    padding: 1rem 1.2rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    transition: all 0.3s ease !important;
}

.contact-info-col .kontakRows:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
}

.kontakRows div h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.kontakRows div p {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0;
}

.contact-info-col .icon-box {
    width: 45px !important;
    height: 45px !important;
    background-color: #fff !important;
    color: #218fcf !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 50% !important;
    font-size: 1.1rem !important;
    margin-right: 1rem !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
}

.XerofiMaps {
    padding: 4rem 7rem;
}
.XerofiMaps iframe {
    width: 100%;
    height: 30rem;
    border-radius: 10px;
    border: 3px solid #218fcf;
}

.ck.ck-editor__main > .ck-editor__editable {
    border-radius: 8px !important;
    border: 2px solid #218fcf !important;
    min-height: 200px;
}

.ck.ck-toolbar {
    border: 2px solid #218fcf !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
}

.ck.ck-editor__main > .ck-editor__editable {
    border-radius: 0 0 8px 8px !important;
}

.ck.ck-statusbar {
    display: none !important;
}

.FAQ {
    padding: 5rem 7rem;
}
.faq-image-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.image-zoom-container {
    overflow: hidden;
    border-radius: 0.375rem;
}

.zoom-image {
    transition: transform 0.8s ease-in-out;
}

.zoom-image:hover {
    transform: scale(1.1);
}
.accordion-content {
    font-family: Poppins, sans-serif;
    background-color: white;
    margin-top: 1rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    padding: 2rem 3rem;
    width: 100%;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: justify;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.headFAQ {
    font-family: Montserrat, sans-serif !important;
    font-size: 2rem;
    font-weight: 500 !important;
}

.FAQ {
    padding: 5rem 7rem;
    background-color: #f8f9fa;
}

.faq-header {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    font-family: Montserrat, sans-serif;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}
.faq-header i {
    color: #218fcf;
}
.faq-header:hover {
    background-color: #f0f0f0;
}

.faq-header.active {
    background-color: #218fcf;
    color: white;
}

.faq-header.active i {
    transform: rotate(180deg);
    color: white;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.faq-content {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 0 0 8px 8px;
    display: none;
    margin-top: -4px;
    font-family: Poppins, sans-serif;
    font-size: 1.2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-container {
    margin-bottom: 20px;
}

.fa-circle-chevron-down {
    transition: transform 0.3s ease;
}

.contact-faq {
    padding: 4rem 7rem;
    background-color: #f2f2f2;
}

.contact-faq-item {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.contact-faq-header {
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 1px solid #218fcf;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
}
.contact-faq-header i {
    color: #218fcf;
    font-size: 2rem;
}

.contact-faq-header:hover {
    background-color: #f0f0f0;
}

.contact-faq-header.active {
    background-color: #218fcf;
    color: white;
    border-radius: 8px 8px 0 0;
}

.contact-faq-header.active i {
    transform: rotate(180deg);
    color: white;
}

.contact-faq-title {
    font-size: 1.5rem;
    font-weight: 500;
}

.contact-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #ffffff;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: Poppins, sans-serif;
}

.contact-faq-content .content-inner {
    border-top: 1px solid #eee;
}

.contact-faq-header i {
    transition: transform 0.3s ease;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}