:root {
    --primary-color: #ECDC7A;
}

body {
    background-color: #000;
    color: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.container {
    max-width: 1600px;
}

.hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    place-items: center;
    background: #15232c;
}

.hero-video,
.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
}

.hero-video {
    z-index: -2;
    object-fit: cover;
}

.hero-overlay {
    z-index: -1;
    background: rgba(4, 12, 18, 0.26);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(90%, 1000px);
    padding: 64px 0;
    text-align: center;
}

.hero-logo {
    display: block;
    width: min(72vw, 720px);
    max-height: 170px;
    object-fit: contain;
    margin-bottom: 42px;
}

.hero h1 {
    max-width: 900px;
    margin: 0 0 48px;
    color: #fff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.25;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-height: 49px;
    padding: 10px 34px;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 3px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 180ms ease, border-color 180ms ease;
}

.hero-button .phone-icon {
    color: #fff;
    font-size: 20px;
}

.hero-button:hover {
    background: rgba(236, 220, 122, 0.2);
    border-color: var(--primary-color);
    color: #fff;
}

.site-header {
    background: transparent;
    color: #fff;
    z-index: 99;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    font-family: "Poppins", sans-serif;
    box-shadow: rgba(255, 255, 255, 0.4) 0px 3px 8px;
    transition: background-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
    background: rgba(0, 0, 0, 0.94);
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.site-nav {
    min-height: 66px;
}

.header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-height: 66px;
    padding: 0 10px;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: block;
    width: 35px;
    height: 35px;
    /* overflow: hidden; */
    border-radius: 50%;
}

.social-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-links {
    display: flex;
    align-items: center;
    gap: 31px;
}

.main-links a,
.dropdown-toggle,
.header-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.main-links a:hover,
.dropdown-toggle:hover,
.header-phone:hover {
    color: var(--primary-color);
}

.header-phone {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 12px;
}

.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    padding: 0;
    border: 0;
    background: transparent;
    font-family: inherit;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 2px);
    left: 50%;
    display: flex;
    flex-direction: column;
    /* min-width: 200px;
    width: 100%; */
    width: 220px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #000;
    box-shadow: #ecdd7a18 0px 7px 29px 0px;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown-toggle::after {
    display: none;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: block;
    color: #fff;
    font-weight: 500;
    background-color: #000000;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    padding: 15px 15px 15px 15px;
    white-space: wrap;
}

.dropdown-menu a:hover {
    color: #fff
}

@media (max-width: 800px) {
    .header-content {
        grid-template-columns: 1fr auto;
        gap: 18px;
        padding: 14px 20px;
    }

    .main-links {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 20px;
    }

    .main-links a,
    .dropdown-toggle,
    .header-phone {
        font-size: 15px;
    }

    .dropdown-menu {
        top: calc(100% + 10px);
        min-width: 190px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding: 40px 0;
    }

    .hero-logo {
        margin-bottom: 28px;
    }

    .hero h1 {
        margin-bottom: 32px;
    }
}

.help-section {
    background: #000;
    padding: 60px 20px;
}


.help-slider-wrap {
    position: relative;
}

.help-swiper {
    width: calc(100% - 70px);
    overflow: hidden;
}

.help-slide {
    position: relative;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    transition: transform 280ms ease;
}

.help-slide:hover {
    z-index: 2;
    transform: scale(1.03);
}

.help-image-wrap {
    position: relative;
    height: 255px;
    overflow: hidden;
}


.help-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.help-image-title {
    position: absolute;
    z-index: 1;
    right: 12px;
    bottom: 42px;
    left: 12px;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: clamp(1rem, 1.7vw, 1.75rem);
    font-weight: 700;
    line-height: 1.1;
}

.help-slide h3 {
    margin: 17px 0 18px;
    font-family: "Arbutus Slab", Sans-serif;
    font-weight: 600;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.help-slide p {
    max-width: 480px;
    margin: 0 auto;
    color: #f4f4f4;
    font-family: "Poppins", sans-serif;
    font-size: 16px;

}

.help-arrow {
    position: absolute;
    z-index: 2;
    top: 50%;
    width: 38px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #ddd;
    font-size: 46px;
    font-weight: 300;
    line-height: 38px;
    transform: translateY(-50%);
}

.help-arrow:hover {
    color: var(--primary-color);
}

.help-prev {
    left: 0;
}

.help-next {
    right: 0;
}

@media (max-width: 767px) {
    .help-section {
        padding-top: 28px;
    }

    .help-swiper {
        width: calc(100% - 46px);
    }

    .help-image-wrap {
        height: 230px;
    }

    .help-slide p {
        font-size: 14px;
    }

    .help-prev {
        left: -4px;
    }

    .help-next {
        right: -4px;
    }
}

h2 {
    font-family: "Arbutus Slab", Sans-serif;
    font-weight: 600;
    font-size: clamp(1.8rem, 3vw, 2rem);
    margin-bottom: 40px;
    text-align: center;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-section {
    background: #000;
    padding: 58px 0 80px;
}

.contact-container {
    padding: 0 20px;
}

.contact-section h2 {
    margin-bottom: 48px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-field-full,
.contact-submit {
    grid-column: 1 / -1;
}

.form-field label {
    color: #e8e8e8;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    border: 1px solid #383838;
    border-radius: 2px;
    outline: 0;
    background: #121212;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.form-field input,
.form-field select {
    height: 51px;
    padding: 0 15px;
}

.form-field textarea {
    min-height: 148px;
    padding: 15px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #888;
}

.form-field select {
    appearance: auto;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    background: #171717;
}

.contact-submit {
    position: relative;
    min-height: 54px;
    border: 1px solid #fff;
    border-radius: 2px;
    background: transparent;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #000;
}

.contact-submit.is-loading {
    pointer-events: none;
    opacity: 0.9;
    cursor: wait;
    border-color: var(--primary-color);
    background: rgba(236, 220, 122, 0.12);
}

.contact-submit-text,
.contact-submit-spinner {
    display: inline-block;
    transition: opacity 180ms ease;
}

.contact-submit-spinner {
    position: absolute;
    inset: 0;
    display: none;
    margin: auto;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-top-color: #fff;
    border-radius: 50%;
    animation: contact-submit-spin 0.8s linear infinite;
}

.contact-submit.is-loading .contact-submit-text {
    opacity: 0;
}

.contact-submit.is-loading .contact-submit-spinner {
    display: block;
}

@keyframes contact-submit-spin {
    to {
        transform: rotate(360deg);
    }
}

.contact-popup-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-popup-modal.is-visible {
    display: flex;
}

.contact-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
}

.contact-popup-content {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    padding: 32px 24px 24px;
    border: 1px solid var(--primary-color);
    background: #151515;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    text-align: center;
}

.contact-popup-content h3 {
    margin: 0 0 14px;
    color: var(--primary-color);
    font-family: "Arbutus Slab", Sans-serif;
    font-size: 1.8rem;
}

.contact-popup-content p {
    margin: 0;
    color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.contact-popup-close:hover {
    color: var(--primary-color);
}

@media (max-width: 767px) {
    .contact-section {
        padding: 42px 0 60px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .form-field-full,
    .contact-submit {
        grid-column: auto;
    }
}


.home-contact-Wrap {
    border-top: 1px solid #5f5f5f;
    padding: 80px 20px;
}


.home-contact-container {
    display: grid;
    gap: 60px;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 1fr);
}

.home-contact-container>div {
    min-width: 0;
}

.home-contact-Wrap ul li {
    font-family: "Poppins", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.home-contact-Wrap ul li a {
    color: #fff;
    text-decoration: none;
    overflow-wrap: anywhere;
}

.home-contact-Wrap ul li a:hover {
    color: var(--primary-color);
}

footer {
    border-top: 1px solid #5f5f5f;
}

@media (max-width: 900px) {
    .home-contact-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .home-contact-container>div:last-child {
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .home-contact-Wrap {
        padding: 52px 20px;
    }

    .home-contact-Wrap ul {
        padding-left: 0;
    }

    .home-contact-Wrap ul li {
        align-items: flex-start;
        font-size: 16px;
    }

    .home-contact-Wrap ul li svg {
        flex: 0 0 24px;
    }
}



/* Footer Top */
.footer-top {
    padding: 80px 20px;
    display: grid;
    grid-template-columns: minmax(180px, 1.5fr) repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.footer-top>div {
    min-width: 0;
}

.footer-top img {
    max-width: 80%;
    height: auto;
}

.footer-top h3 {
    font-family: "Arbutus Slab", Sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 3vw, 1.25rem);
    margin-bottom: 20px;
    text-align: left;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.footer-top ul {
    padding-left: 0 !important;
}

.footer-top ul li {
    list-style: none;
    margin-bottom: 10px;
}


.footer-top ul li a {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    text-decoration: none;
    font-weight: 400;
    padding: 0;
    overflow-wrap: anywhere;
}

.footer-top ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    border-top: 1px solid #5f5f5f;
    padding: 20px;
}

.footer-bottom p {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    text-align: center;
    margin: 0;
}

.footer-bottom p a {
    color: var(--primary-color);
    text-decoration: none;
}

@media (max-width: 1000px) {
    .footer-top {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px 24px;
    }

    .footer-top>div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .footer-top {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        padding: 44px 20px;
        gap: 32px 18px;
    }

    .footer-top>div:first-child {
        grid-column: 1 / -1;
    }

    .footer-top h3 {
        margin-bottom: 14px;
    }

    .footer-top ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        padding: 18px 20px;
    }

    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* About Page */

.breadcrumb-section {
    position: relative;
    min-height: 250px;
    display: flex;
    padding: 15px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.breadcrumb-section.long {
    min-height: 400px;
}

.breadcrumb-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.62);
    z-index: 1;
}

.breadcrumb-section img {
    position: absolute;
    inset: 50% auto auto 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.breadcrumb-section h1 {
    position: relative;
    z-index: 2;
    font-family: "Arbutus Slab", Sans-serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-align: center;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* TEAM PAGE */

.team-section {
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.team-member {
    min-width: 350px;
    max-width: 400px;
    background: #1D1D1D;
    border-radius: 0 0 6px 6px;
    overflow: hidden;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.35);
    transition: transform 180ms ease;
}

.team-member:hover {
    transform: scale(1.03);
}

.team-member img {
    width: 100%;
    height: auto;
}

.team-member-info {
    padding: 24px;
}

h3 {
    font-family: "Arbutus Slab", Sans-serif;
    font-weight: 600;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    margin-bottom: 10px;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-member p {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    margin-bottom: 10px;
}

.team-member a {
    color: #fff;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Partners */
.partners-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.partners-card {
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #3B3B3B;
    box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.32);
    transition: transform 180ms ease, background-color 180ms ease;
}

.partners-card:hover {
    transform: scale(1.03) rotateZ(-1deg);
    background-color: #1D1D1D;
}

.partners-card h3 {
    text-align: center;
    font-family: "Poppins", Sans-serif;
    padding: 20px;
    margin: 0;
}

@media (max-width: 991px) {
    .partners-section {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width:580px) {

    .partners-section {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 40px 20px;
    }
}


/* Network page */
.network-section {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.network-section h4 {
    text-align: center;
}


@media (max-width: 991px) {
    .network-section {
        grid-template-columns: 1fr 1fr 1fr;
    }

}

@media (max-width: 787px) {
    .network-section {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:580px) {
    .network-section {
        grid-template-columns: 1fr;
    }
}


/* Finance Page */

.finance-section {
    padding: 60px 20px;
}

.finance-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    align-items: center;
    gap: 40px;
}

.finance-content p {
    max-width: 800px;
    font-family: "Inter", Sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 27px;
    color: #FFFFFF;
}

.finance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
}

.finance-card {
    background-color: #FFFFFF17;
    padding: 30px 30px 30px 30px;
    text-align: center;
    transition: 0.3s all;
    position: relative;
    overflow: hidden;
}


.finance-card h3 {
    font-size: clamp(1.35rem, 3vw, 1.65rem);
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.finance-section.finance-grid {
    padding-top: 0;
}

.finance-card p {
    font-family: "Poppins", Sans-serif;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 0;
}

.finance-icon svg {
    fill: white;
    height: 50px;
    width: 50px;
    margin-bottom: 20px;
    transition: 0.8 all;
}

.finance-card:hover {
    transform: scale(1.03);
}

.finance-card:hover .finance-icon svg {
    fill: var(--primary-color);
}

.finance-card:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    transform: rotate(45deg);
    height: 200%;
    width: 200px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.4) 35%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(255, 255, 255, 0.4) 65%,
            transparent 100%);
    transition: 0.7s all;
}


.finance-card:hover::before {
    left: 150%;
}

@media (max-width:991px) {
    .finance-content {
        grid-template-columns: 1fr;
    }

    .finance-content p {
        max-width: 100%;
    }

    .finance-section.finance-grid {
        grid-template-columns: 1fr 1fr;
    }
}


@media (max-width:712px) {
    .finance-section.finance-grid {
        grid-template-columns: 1fr;
    }
}


/* Contact Page */

.contact-page {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-link {
    display: flex;
    text-decoration: none;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.contact-link-icon {
    background-color: #1D1D1D;
    display: flex;
    fill: var(--primary-color);
    color: var(--primary-color);
    align-items: center;
    justify-content: center;
    height: 70px;
    width: 70px;
    border-radius: 99px;
}


.contact-link-icon svg {
    height: 40px;
    width: 40px;
}

.contact-link p {
    margin: 0;
    color: white;
    font-size: 16px;
}

.contact-link h5 {
    font-family: "Poppins", sans-serif;
    color: #ECDC7A;
    background: -webkit-linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    background: linear-gradient(180deg, #d19e1d 0%, #ffd86e 50%, #e3a812 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width:967px) {
    .contact-page {
        grid-template-columns: 1fr;
    }
}


/* Services Pages */

.service-sidebar {
    padding: 60px 20px;
    border-right: 1px solid #5f5f5f;
}

.service-sidebar ul {
    padding-left: 0;
    margin-top: 30px;
    text-decoration: none;
    list-style: none;
}


.service-sidebar ul li {
    padding: 15px 15px 15px 0px;
    font-size: 18px;
    border-bottom: 1px solid #5f5f5f;
    transition: 0.3s all;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-sidebar ul li p {
    margin-bottom: 0;
}


.service-sidebar ul li:hover {
    padding: 15px 15px 15px 15px;
    color: var(--primary-color);
}


.service-sidebar ul svg {
    opacity: 0;
    height: 20px;
    width: 20px;
    color: var(--primary-color);
    transition: 0.3s all;
    padding: 0 15px 0 0;
}

a {
    text-decoration: none;
}

.service-sidebar ul li:hover svg {
    opacity: 1;
    padding: 0 0 0 0;

}

.servicePage {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
}

.service-content {
    padding: 60px 20px;
}

.service-content h2 {
    text-align: left;
    font-weight: 500;
}

.service-content p {
    padding: 0px 0px 0px 0px;
    font-family: "Inter", Sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 27px;
    color: #FFFFFF;
}

@media (max-width:991px) {
    .servicePage {
        grid-template-columns: 1fr;
    }

    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .service-content {
        grid-column: 1 / 2;
        grid-row: 1;
    }



}


/* Mobile Navbar */

.hamburgerMenu {
    display: none;
    border: 1px solid var(--primary-color);
    background-color: transparent;
}

.hamburgerMenu svg {
    color: var(--primary-color);
    fill: var(--primary-color);
}


@media (max-width:991px) {

    .hamburgerMenu {
        display: block;
    }

    .mobile-responsive {
        display: none;
    }
}

.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 999;
}

.mobile-sidebar {
    position: fixed;
    height: 100vh;
    overflow: auto;
    background-color: black;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    max-width: 400px;
    z-index: 9999;
    padding: 30px 20px;
}


.mobile-sidebar-overlay.opened ,.mobile-sidebar.opened{
    display: block;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #5f5f5f
}

.mobile-sidebar-header img {
    max-width: 200px;
}

.mobile-menu{
    padding: 15px 0;
}

.mobile-dropdown-menu {
    padding-left:15px;
    height: 0;
    overflow: hidden;
    background-color: #181818;
}

.mobile-dropdown-menu.active{
    height: 100%;
}

.mobile-menu,
.mobile-dropdown-menu {
    display: flex;
    flex-direction: column;
}

.mobile-dropdown-toggle {
    background-color: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.mobile-menu a,
.mobile-dropdown-menu a,
.mobile-dropdown-toggle {
    color: white;
    padding: 15px 0;
    font-family: poppins;
    font-size: 16px;
    transition: 0.3s all;
}


.mobile-menu a:hover {
    color: var(--primary-color);
}