/* General */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bs-dark-rgb: 31, 49, 35;
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #fff9fc;
}

::-webkit-scrollbar-thumb {
    background: rgb(var(--bs-dark-rgb));
}

body {
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0;
}

a {
    text-decoration: none;
}

ul,
ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

input,
select,
textarea,
button {
    outline: none !important;
    border: 0 !important;
    box-shadow: none !important;
}

textarea {
    resize: none;
}

.transition-all {
    transition: all .5s ease;
}

.backdrop-blur {
    backdrop-filter: blur(10px);
}

.bg-fixed-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.breadcrumb-section {
    background-image: url(/images/backgrounds/breadcrumb-bg.webp);
}

.dark-overlay::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    position: absolute;
    background: rgba(var(--bs-dark-rgb), .75);
}

.text-opacity-75:hover {
    --bs-text-opacity: 1;
}

.border-opacity-25:hover {
    --bs-border-opacity: .5;
}

.bg-opacity-10:hover {
    --bs-bg-opacity: .25;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: rgba(var(--bs-white-rgb), .5);
    font-size: .8rem;
    margin-inline: 4px;
}

.accordion-button:not(.collapsed) {
    background-color: rgb(var(--bs-dark-rgb));
    color: rgb(var(--bs-white-rgb)) !important;
}

/* Navbar */
.navbar {
    box-shadow: 0 4px 20px rgba(225, 213, 163, .25);
}

.navbar-logo {
    height: 64px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-item:hover {
    background: rgba(var(--bs-white-rgb), .1) !important;
    padding-left: 2rem !important;
}

/* Section */
.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #fff;
}

.home section:nth-child(even) .section-title:after,
body:not(.home) .section-title:after {
    background: rgb(var(--bs-dark-rgb));
}

/* Hero */
.hero {
    background-image: url(/images/backgrounds/hero-bg.webp);
}

.hero-title {
    font-size: 3.2rem;
}

.hero-title .highlight:after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, .1);
    z-index: -1;
}

.hero-text {
    max-width: 600px;
}

.feature-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    padding: .125rem;
    background: linear-gradient(45deg,
            transparent,
            rgba(var(--bs-white-rgb), .5),
            transparent);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: border-animate 2s linear infinite;
}

@keyframes border-animate {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 200% 50%;
    }
}

.feature-item:hover {
    transform: translateX(-12px);
    background: rgba(255, 255, 255, .25) !important;
}

.feature-icon {
    width: 50px;
    height: 50px;
}

.button:hover {
    transform: translateY(-4px);
}

.button:hover i {
    transform: translateX(4px);
}

/* Responsive dizayn üçün media query-lər */
@media (min-width: 0px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-text {
        font-size: .9rem;
    }
}

@media (min-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: .95rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
}

@media (min-width: 992px) {
    .hero {
        height: calc(100vh - 106px);
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

/* Features */
.info-icon {
    width: 70px;
    height: 70px;
}

.services {
    background-image: url(/images/backgrounds/services-bg.webp);
}

.results {
    background-image: url(/images/backgrounds/results-bg.webp);
}

.slick-slide {
    margin-inline: 1rem;
}

.slick-dots {
    bottom: -3rem;
}

.home section:nth-child(even) .slick-dots li button:before,
body:not(.home) .slick-dots li button:before {
    color: rgb(var(--bs-dark-rgb)) !important;
}

.slick-dots li button:before {
    color: rgb(var(--bs-white-rgb)) !important;
}

/* Footer */
.footer-logo {
    height: 48px;
}

.social-link {
    width: 36px;
    height: 36px;
}

.social-link:hover {
    transform: translateY(-4px);
}

.footer-links a:hover {
    padding-left: 4px;
}


/* --- */
.staff-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.partner-box {
    aspect-ratio: 1/1;
}

.partner-logo {
    height: 150px;
}

/* --- */
.detail-icon i {
    width: 40px;
}

/* --- */

/* Fabs */
/* Whatsapp */
.fab {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    z-index: 999;
    right: 30px;
}

.fab i {
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

.fab.whatsapp {
    bottom: 70px;
    background-color: #2CD46B;
}

.fab.go-to-top {
    bottom: 20px;
}