@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");
@import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css";
@import "bootstrap.min.css";

/* ===== CSS RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --body-fonts: "Inter", sans-serif;
    --color-primary: #88DB1B;
    --color-white: #FFFFFF;
    --text-color: #331B3BA8;
    --dark-color: #252525;
    --base-fonts: 17px;
}

body {
    background-color: var(--color-white);
    font-size: var(--base-fonts);
    line-height: 1.65;
    color: var(--text-color);
    font-weight: 400;
    font-family: var(--body-fonts), -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 5rem);
}

h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
}

h3 {
    font-size: clamp(2rem, 3vw, 3rem);
}

h4 {
    font-size: clamp(2rem, 2.5vw, 1.75rem);
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

.btn {
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.35s all ease-in-out;
}

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

.btn-primary {
    background-color: var(--color-primary);
    color: var(--dark-color);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-primary:hover {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    filter: brightness(80%);
    color: var(--dark-color);
}

.btn-outline-primary {
    color: var(--color-primary);
    border-color: var(--color-primary);
    outline: none;
    box-shadow: none;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
}


.btn-outline-secondary:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.btn-outline-secondary:hover img {
    filter: brightness(0) invert(1);
}

.btn-dark {
    background-color: var(--dark-color);
    color: var(--color-primary);
}

.btn strong {
    padding-left: 4px;
}


/* ===== LAYOUT CONTAINERS ===== */
.container {
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 15px;
}

.swiper__btns {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 50px;
}

.swiper__btns > div {
    position: relative;
    margin: 0 !important;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 50%;
    padding: 0;
    opacity: 1 !important;
    background-color: var(--dark-color);
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    color: var(--color-primary);
}

.swiper__btns > div:after {
    font-size: 20px;
}

.swiper__btns .swiper-button-disabled {
    background-color: transparent;
    color: var(--dark-color);
}

@media (min-width: 1440px) {
    .container {
        padding: 0 5%;
    }
}

@media (max-width: 991.98px) {
    body {
        font-size: 16px;
    }

    .swiper__btns > div {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
    }

    .swiper__btns > div:after {
        font-size: 16px;
    }
}

/* ===== GLOBAL STYLES END ===== */

/* ===== HEADER STYLES START ===== */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 20px 0;
}

header.hidden-header {
    transform: translateY(-100%);
}

header.visible-header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}


header .navbar-nav {
    margin: 0 0 0 auto;
    width: calc(100% - 250px);
    justify-content: flex-end;
}

.nav-menu,
.navbar ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-menu li,
.navbar li {
    position: relative;
}

.nav-menu a,
.navbar a:not(.btn) {
    color: var(--text-color);
    padding: 0.25rem 0;
    position: relative;
    transition: all 0.3s ease;
}

header .navbar-nav a:hover {
    color: var(--dark-color);
    text-decoration: none;
}

header .navbar-nav a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 4px;
    border-radius: 10px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

header .navbar-nav a.active:after,
header .navbar-nav a:hover:after {
    width: 35px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-color);
    cursor: pointer;
    padding: 0.5rem;
}

header .navbar-brand {
    max-width: 200px;
    width: 100%;
}

.navbar-brand img {
    width: 100%;
    object-fit: contain;
}

.header_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 1199.98px) {
    .nav-menu, .navbar ul {
        gap: 15px;
    }

    header .navbar-nav {
        width: calc(100% - 200px);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 15px 0;
    }

    header .navbar-brand {
        max-width: 200px;
    }

    .navbar-brand img {
        height: 40px;
    }

    /* Hamburger Menu Styling */
    .navbar-toggler {
        border: none;
        background: transparent;
        outline: none;
        padding: 0;
        box-shadow: none !important;
        outline: none !important;
    }

    .navbar-toggler span {
        display: block;
        width: 30px;
        height: 3px;
        margin: 5px auto;
        background-color: var(--dark-color);
        transition: all 0.4s ease-in-out;
    }

    .navbar-nav {
        padding: 0;
        background-color: var(--dark-color);
    }

    body .navbar-nav .nav-link,
    body .navbar-nav a {
        color: var(--color-white) !important;
    }

    header .navbar li + li {
        margin-left: 0;
        margin-top: 10px;
    }

    /* Hamburger Menu Animation */
    .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Navbar Collapse Animation */
    .navbar-collapse {
        transition: 0.4s all ease-in-out;
        padding: 20px;
        background-color: var(--dark-color);
        position: absolute;
        left: 0;
        top: calc(100% + 13px);
        width: 100%;
        border-radius: 0 0 10px 10px;
        opacity: 0;
        z-index: -1;
        visibility: hidden;
    }

    .navbar-collapse.show {
        opacity: 1;
        z-index: 2;
        visibility: visible;
    }
}

/* ===== HEADER STYLES END ===== */

/* ===== HERO STYLES START ===== */
.hero__section {
    padding: 180px 0 75px;
    position: relative;
}

.hero__section .hero__content {
    max-width: 600px;
    width: 100%;
}

.hero__section h1 {
    font-weight: 100;
    margin: 0;
}

.hero__section .hero__row {
    display: flex;
    gap: 20px;
}

.hero__section .hero__img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
    width: 100%;
}

.hero__section .hero__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero__section .hero__btns {
    margin-top: 30px;
}

.hero__section p {
    margin: 20px 0 0 0;
}

@media (max-width: 1199.98px) {
    .hero__section {
        padding: 60px 0;
    }

    .hero__section .hero__content {
        max-width: 55%;
    }
}

@media (max-width: 991.98px) {

    .hero__section .hero__row {
        flex-direction: column;
        gap: 30px;
    }

    .hero__section .hero__content {
        max-width: 500px;
    }

    .hero__section .hero__img {
        position: relative;
        top: auto;
        transform: none;
        margin-left: auto;
        max-width: 600px;
        left: 15px;
    }

}

/* ===== HERO STYLES END ===== */


/*--- Brands Section Style Start ---*/
.brands_section {
    padding: 75px 0;
}

.hero + .brands_section {
    padding-top: 40px;
}

.brands_section h3 {
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.logosSlider {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0, #000 10%, #000 90%, rgba(0, 0, 0, 0) 100%) !important;
}

.brands_section .swiper-wrapper {
    transition-timing-function: linear;
}

.logosSlider .swiper-slide {
    width: auto;
    position: relative;
    overflow: hidden;
}

.logosSlider .swiper-slide {
    width: 230px;
}

.brand-logo img {
    width: 100%;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .brands_section {
        padding: 60px 0;
    }

    .brands_section h3 {
        margin-bottom: 20px;
    }

    .logosSlider .swiper-slide {
        width: 150px;
    }

}

/*--- Brands Section Style End ---*/


/* ===== TABS SECTION STYLE START ===== */
.tabs__section {
    padding: 60px 0 130px;
}

.tabs__section .tabs__content {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.tabs__section .tabs__content.active {
    display: block;
    opacity: 1;
    position: relative;
}

.tabs__section .tabs__links {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin-top: 80px;
    gap: 20px;
}

.tabs__section .tabs__links li {
    flex: 1 0 auto;
}

.tabs__section .tabs__links a {
    text-decoration: none;
    padding: 20px 20px;
    line-height: 1;
    display: inline-flex;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    background-color: var(--color-white);
    border-radius: 6px;
    border: 2px solid var(--dark-color);
    color: var(--dark-color);
    text-transform: uppercase;
    transition: background 0.3s;
    width: 100%;
}

.tabs__section .tabs__links a.active,
.tabs__section .tabs__links a:hover {
    background-color: var(--color-primary);
}

.tabs__section .tabs__row {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.tabs__section .tabs__text {
    width: 50%;
    padding-top: 20px;
}

.tabs__section .tabs__img {
    width: 40%;
    border-radius: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 10px 20px 20px 0 #00000040;
}

.tabs__section .tabs__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    aspect-ratio: 1;
}

/*.tabs__section .tabs__img:before {*/
/*    content: "";*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    position: absolute;*/
/*    right: 0;*/
/*    top: -20px;*/
/*    background-color: var(--color-primary);*/
/*    display: block;*/
/*    border-radius: 30px;*/
/*    z-index: -1;*/
/*}*/

.tabs__section h3 {
    margin-bottom: 40px;
    font-weight: 500;
}

.tabs__section p {
    margin-bottom: 20px;
}

.tabs__section p:last-child {
    margin-bottom: 0;
}


.tabs__section .tabs__text ul {
    list-style-type: disc;
    margin-top: 20px;
}

.tabs__section .tabs__text li + li {
    margin-top: 5px;
}

@media (max-width: 1199.98px) {
    .tabs__section .tabs__row {
        gap: 15px;
    }

    .tabs__section .tabs__links a {
        font-size: 15px;
        padding: 15px;
    }
}

@media (max-width: 991.98px) {
    .tabs__section {
        padding: 70px 0;
    }

    .tabs__section .tabs__row {
        flex-wrap: wrap;
        gap: 50px;
    }

    .tabs__section .tabs__text {
        width: 100%;
    }

    .tabs__section .tabs__img {
        width: 100%;
    }

    .tabs__section .tabs__links {
        flex-wrap: wrap;
        margin-top: 50px;
        gap: 15px;
    }

    .tabs__section h3 {
        margin-bottom: 25px;
    }
}

@media (max-width: 767.98px) {
    .tabs__section .tabs__links li {
        width: 45%;
    }

    .tabs__section .tabs__links a {
        padding: 17px 12px;
        font-size: 14px;
    }
}

/* ===== TABS SECTION STYLE END ===== */

/* ===== EXPERTISE SECTION STYLE START  ===== */
.expertise__section {
    padding: 60px 0;
}

.expertise__section .expertise__inner {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


.expertise__section h2 {
    margin-bottom: 80px;
    text-align: center;
}

.expertise__section .expertise__card {
    padding: 40px;
    background-color: var(--dark-color);
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    height: 100%;
}

.expertise__section .expertise__icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);

}

.expertise__section .expertise__icon img {
    width: 45px;
}

.expertise__section .expertise__card > * {
    margin: 0;
}

.expertise__section .expertise__card h4 {
    color: var(--color-primary);
    font-weight: 500;
}

.expertise__section .expertise__card p {
    color: var(--color-white);
}


.expertise__section .expertise__card:hover {
    background-color: var(--color-primary);
}

.expertise__section .expertise__card:hover .expertise__icon {
    background-color: var(--dark-color);
}

.expertise__section .expertise__card:hover .expertise__icon img {
    filter: invert(1);
}

.expertise__section .expertise__card:hover h4,
.expertise__section .expertise__card:hover p {
    color: var(--dark-color);
}

.expertise__swiper .swiper-slide {
    margin-top: 20px !important;
}

@media (max-width: 991.98px) {
    .expertise__section h2 {
        margin-bottom: 35px;
    }

    .expertise__section .expertise__card {
        padding: 25px;
    }

    .expertise__section .expertise__icon {
        width: 55px;
        height: 55px;
    }

    .expertise__section .expertise__icon img {
        width: 35px;
    }

    .expertise__swiper {
        margin: 0 -15px;
        padding-left: 15px;
    }
}

@media (max-width: 767.98px) {
    .expertise__section .expertise__card {
        padding: 20px 15px;
    }
}

/* ===== EXPERTISE SECTION STYLE END ===== */


/* ===== SERVICES SECTION STYLE START ===== */
.services_section {
    padding: 80px 0;
}

.services_section .section_title {
    margin-bottom: 50px;
    text-align: center;
    max-width: 1050px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.services_section .swiper {
    padding: 10px;
}

.swiper-wrapper,
.swiper-slide {
    height: auto !important;
}

.services_section h2,
.services_section .section_title p {
    color: var(--dark-color);
    margin-bottom: 0;
}

.service_card {
    padding: 40px 30px;
    background-color: #F2F4F7;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 30px;
    transition: 0.35s all ease-in-out;
    transform: scale(1);
    height: 100%;
}


.service_card span {
    padding: 12px 30px;
    background-color: transparent;
    border: 1px solid var(--color-primary);
    color: var(--dark-color);
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
}

.service_card p {
    font-size: 18px;
    margin-bottom: 0;
}

.service_card .btn {
    width: 100%;
}

.service_card:hover {
    background-color: var(--dark-color);
    transform: scale(1.03);
}

.service_card:hover * {
    color: var(--color-white) !important;
}

.service_card:hover .btn,
.service_card:hover span {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

.service_card:hover .btn img {
    filter: brightness(0) invert(1);
}


@media (max-width: 991.98px) {
    .services_section {
        padding: 60px 0;
    }

    .services_section .section_title {
        gap: 20px;
        margin-bottom: 35px;
    }

    .service_card {
        padding: 25px 20px;
        gap: 20px;
        border-radius: 20px;
    }

    .service_card p {
        font-size: 16px;
    }
}

/* ===== SERVICES SECTION STYLE END ===== */

/* ===== TESTIMONIALS SECTION STYLE START ===== */
.testimonials_section {
    padding: 50px 0 80px;
}

.testimonials_section .section_title {
    max-width: 700px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
}

.testimonials_section h2 {
    color: var(--dark-color);
}

.testimonials_section p {
    margin-bottom: 0;
}

.testimonials_card {
    background-color: #F2F4F7;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
}

.testimonials_card h5 {
    color: var(--dark-color);
    margin-bottom: 12px;
    line-height: 1;
}

.testimonials_card span {
    display: inline-flex;
    color: #667085;
    margin-bottom: 5px;
}

.stars {
    color: #FFC107;
    display: flex;
    font-size: 16px;
    align-items: center;
    gap: 2px;
}

.testimonials_card p {
    font-size: 18px;
    margin-top: 30px;
    margin-bottom: 0;
    color: #667085;
}

/* Testimonials Show/Hide Functionality */
.testimonial-hidden {
    display: none;
}

.testimonial-hidden.show {
    display: block;
}


@media (max-width: 991.98px) {
    .testimonials_section {
        padding: 50px 0;
    }

    .testimonials_section .section_title {
        margin-bottom: 35px;
    }

    .testimonials_card {
        padding: 30px 20px;
    }

    .testimonials_card p {
        margin-top: 20px;
    }
}

/* ===== TESTIMONIALS SECTION STYLE END ===== */

/* ===== PLATFORMS SECTION STYLE START ===== */
.platform_section {
    padding: 60px 0;
}

.platform_bg {
    /*background-color: var(--dark-color);*/
    /*border-radius: 30px;*/
    /*background-image: url("../images/platforms-bg.png");*/
    /*background-repeat: repeat;*/
    /*background-size: contain;*/
    /*background-position: center;*/
}

.platform_section .section_title {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.platform_section p {
    color: var(--dark-color);
}

.platforms_img {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.platforms_img img {
    width: 100%;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .platform_bg {
        padding: 60px 15px;
    }
}

/* ===== PLATFORMS SECTION STYLE END ===== */

/* ===== Contact Block  STYLE START ===== */
.contact_block {
    margin: 50px 0;
}

.contact_block_inner {
    background-color: var(--dark-color);
    padding: 75px 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}

.contact_block_inner > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.contact_block h2 {
    color: var(--color-white);
}

.contact_block p {
    color: #FFFFFF99;
}

@media (max-width: 991.98px) {
    .contact_block_inner {
        padding: 50px 0;
    }
}

/* ===== Contact Block  STYLE END ===== */


/*--- Text Section Style Start ---*/
.web-text-section {
    position: relative;
    padding: 100px 0;
    z-index: 1;
}


.web-text-section .container {
    max-width: 950px;
}

.web-text-section h1,
.web-text-section h2,
.web-text-section h3,
.web-text-section h4 {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.web-text-section h2,
.web-text-section h3,
.web-text-section h4 {
    margin-bottom: 12px;
}

.web-text-section h1 {
    font-size: 35px;

}

.web-text-section h3 {
    font-size: 21px;
}

.web-text-section h4 {
    font-size: 18px;
}

.web-text-section h1 + p {
    color: #8184A3;
}

.web-text-section li,
.web-text-section p {
    color: #8184A3;
}

.web-text-section p {
    margin: 0 0 20px 0;
}

.web-text-section .table {
    margin-bottom: 35px;
}

.web-text-section table thead {
    vertical-align: middle;
}

.web-text-section table thead tr {
    border: none;
}

.web-text-section table th {
    border-bottom: none;
    text-align: center;
}

.web-text-section table {
    margin-bottom: 35px;
}

.web-text-section table th,
.web-text-section table th p,
.web-text-section table td p {
    color: var(--dark-color);
}

.web-text-section table {
    border-collapse: collapse;
    border-spacing: 0;
}

.web-text-section table > :not(caption) > * > * {
    padding: .75rem;
}

.web-text-section table th {
    font-size: 20px;
}

.web-text-section table th:last-child {
    min-width: 210px;
}

.web-text-section .text-main-content a {
    color: #DC110B;
    text-decoration: underline;
}

.web-text-section .text-main-content a:hover {
    text-decoration: none;
}

.web-text-section table {
    color: var(--text-color);
    vertical-align: top;
}

.web-text-section tbody,
.web-text-section td,
.web-text-section tfoot,
.web-text-section th,
.web-text-section thead,
.web-text-section tr {
    border-width: 1px;
}

.web-text-section strong,
.web-text-section b {
    font-weight: 700 !important;
}

.web-text-section h1 + p strong {
    color: var(--dark-color);
}

@media (max-width: 767.98px) {
    .web-text-section table {
        width: 530px;
    }
}

/*--- Text Section Style End ---*/

/* ===== FOOTER STYLE START ===== */
.footer_top {
    padding: 40px 0 140px;
    background-color: #252525;
}

.footer_bottom {
    background-color: #121212;
    padding: 16px 0;
}

.footer_row,
.footer_bottom > .container {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
}

.site_footer ul {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}


.footer_top a {
    color: var(--color-white);
    text-transform: capitalize;
}

.footer_bottom a,
.footer_bottom p {
    color: #FFFFFFB2;
    margin-bottom: 0;
}

.site_footer a:hover {
    color: var(--color-primary);
}

.footer_bottom .footer-menu li {
    display: none;
}

.footer_bottom .footer-menu li:first-child,
.footer_bottom .footer-menu li:nth-child(2) {
    display: block;
}

.wp-block-table {
    overflow: auto;
}

@media (max-width: 991.98px) {
    .footer_top {
        padding: 30px 0 70px 0;
    }

    .footer_row,
    .footer_bottom > .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .site_footer ul {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ===== FOOTER STYLE END ===== */


/* ===== CONTACT SECTION STYLE START ===== */
.contact_section {
    padding: 100px 0;
}

.contact_section .section_title {
    margin: 0 auto 100px;
    text-align: center;
    max-width: 950px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.contact_section h2 {
    position: relative;
    margin-bottom: 0;
    color: var(--dark-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_section h2:after {
    content: "";
    width: 290px;
    height: 10px;
    background-color: var(--color-primary);
    display: block;
    margin-top: 10px;
}

.contact_info {
    padding: 60px 40px;
    background-color: var(--dark-color);
    border-radius: 10px 10px 0 10px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact_info:before,
.contact_info:after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: #1A1A1A;
    display: inline-block;
    border-radius: 50%;
}

.contact_info:before {
    background-color: #48484880;
    width: 130px;
    height: 130px;
    bottom: 50px;
    right: 50px;
}

.contact_info:after {
    background-color: #48484880;
    width: 180px;
    height: 180px;
    bottom: -30px;
    right: -30px;
}

.contact_info h4 {
    color: var(--color-white);
    margin-bottom: 70px;
}

.contact_info ul {
    list-style-type: none;
    padding: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 320px;
    height: 100%;
}

.contact_info li {
    color: var(--color-white);
    display: flex;
    gap: 15px;
}

.contact_info li i {
    margin-top: 4px;
}

.contact_info a {
    color: inherit;
}

.contact_form {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.contact_form .fluentform .ff-el-group {
    margin-bottom: 30px;
}

.contact_form label,
.contact_form .ff-default .ff-el-input--label label {
    font-size: 12px;
    font-weight: 500;
    color: #8D8D8D;
    display: block;
    line-height: 1;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 25px;
}

.form-row > div {
    width: 100%;
    max-width: calc(50% - 15px);
}

.form-row .w-full {
    max-width: 100%;
}

.contact_form input,
.contact_form select,
.contact_form textarea,
.contact_form .ff-default .ff-el-form-control {
    border: none;
    border-bottom: 1px solid #C4C4C4;
    color: var(--dark-color);
    font-size: 14px;
    background-color: var(--color-white);
    padding: 7px 10px;
    outline: none;
    width: 100%;
    border-radius: 0 !important;
}

.contact_form textarea,
.contact_form .ff-default textarea.ff-el-form-control {
    border-radius: 5px !important;
    border: 1px solid #C4C4C4 !important;
    height: 110px;
    resize: none;
    margin-top: 7px;
}

.contact_form p,
.contact-section p {
    color: var(--dark-color);
    margin-top: 15px;
}

.contact_form p a,
.contact-section p a {
    color: #FF0000;
    text-decoration: none;
}

body .contact_form .ff-btn {
    padding: 12px 25px;
    border-radius: 7px;
    font-size: 16px;
    line-height: 1;
    text-transform: capitalize;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: 0.45s allease-in-out;
    background-color: var(--dark-color) !important;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
}

body .contact_form p {
    margin-top: 0;
}

body .contact_form p:before,
body .contact_form p:after,
.contact-section .ff_submit_btn_wrapper:before,
.contact-section .ff_submit_btn_wrapper:after {
    content: none;
}

body .contact_form .ff-btn:hover {
    opacity: 0.8;
}

.contact_form .ff_submit_btn_wrapper {
    display: flex;
    justify-content: flex-end;
    padding-right: 7%;
}

body .contact_form .fluent_custom_checkbox {
    width: 15px !important;
    margin: 0 !important;
    position: relative !important;
    top: 24px !important;
}

body .contact_form .consent_text {
    padding-left: 25px !important;
    font-size: 15px !important;
}

@media (max-width: 991.98px) {
    .contact_section {
        padding: 70px 0;
    }

    .contact_section .section_title {
        margin-bottom: 40px;
    }

    .contact_section h2:after {
        width: 150px;
        height: 10px;
    }

    .contact_info {
        padding: 30px 20px 150px 20px;
    }

    .contact_form {
        margin-top: 50px;
    }

    .contact_info:before {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 30px;
    }

    .contact_info:after {
        width: 150px;
        height: 150px;
    }

    .contact_info h4 {
        margin-bottom: 40px;
    }
}

/* ===== CONTACT SECTION STYLE END ===== */


/*EXTRA STYLE*/
/* ===== MAIN CONTENT ===== */
.site-main {
    padding-top: 100px;
}

.content-area {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 3rem;
    padding: 3rem 0;
}

/* ===== POSTS GRID ===== */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.post:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.post:hover .post-thumbnail img {
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.post-title a {
    color: #1a1a1a;
    text-decoration: none;
}

.post-title a:hover {
    color: #2563eb;
}

.post-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-excerpt {
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* ===== SIDEBAR ===== */
.sidebar {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.widget {
    margin-bottom: 2rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.widget li:last-child {
    border-bottom: none;
}

.widget a {
    color: #4a4a4a;
    text-decoration: none;
}

.widget a:hover {
    color: #2563eb;
}


/* ===== PAGINATION ===== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 3rem 0;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.75rem 1rem;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

/* ===== PAGE TEMPLATES ===== */
.page-header {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.page-description {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SINGLE POST ===== */
.single-post .content-area {
    grid-template-columns: 1fr;
}

.single-post .post {
    max-width: 800px;
    margin: 0 auto;
}

.single-post .post-content {
    padding: 2rem;
}

.single-post .post-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.single-post .entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
}

.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single-post .entry-content p {
    margin-bottom: 1.5rem;
}

.single-post .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

/* ===== 404 PAGE ===== */
.error-404 {
    text-align: center;
    padding: 4rem 0;
}

.error-404 h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    color: #2563eb;
    margin-bottom: 1rem;
}

.error-404 h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.error-404 p {
    font-size: 1.125rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

/* ===== SEARCH RESULTS ===== */
.search-results .page-header {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.search-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 2rem auto;
}

.search-form input[type="search"] {
    flex: 1;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #2563eb;
}

.search-form button {
    padding: 0.875rem 2rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-form button:hover {
    background: #1d4ed8;
}

/* ===== COMMENTS ===== */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid #e5e7eb;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.comment-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.comment-author {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.comment-meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 1rem;
}

.comment-content {
    color: #374151;
    line-height: 1.6;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 767.98px) {
    .sidebar {
        position: static;
        margin-top: 2rem;
    }

    .search-form {
        flex-direction: column;
    }

    .post-navigation {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-previous,
    .nav-next {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .post-content {
        padding: 1rem;
    }

    .single-post .post-content {
        padding: 1.5rem;
    }

    .widget {
        padding: 1.5rem;
    }
}


/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 4rem;
    right: 2rem;
    background: var(--color-primary);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

/* ===== POST NAVIGATION ===== */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-subtitle {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.nav-title {
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: #2563eb;
}

/* ===== ERROR 404 ENHANCEMENTS ===== */
.error-actions {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.search-section {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.search-section h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.suggestions {
    margin-top: 3rem;
    text-align: center;
}

.suggestions h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suggestions li {
    margin-bottom: 0.5rem;
}

.suggestions a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.suggestions a:hover {
    text-decoration: underline;
}

/* ===== IMAGE LOADING STATES ===== */
img.loading {
    opacity: 0.6;
    filter: blur(2px);
}

img.loaded {
    opacity: 1;
    filter: none;
    transition: all 0.3s ease;
}

img.error {
    opacity: 0.3;
    filter: grayscale(1);
}

/* ===== FORM ENHANCEMENTS ===== */
.search-form button.has-input {
    background: #059669;
}

.search-form button.has-input:hover {
    background: #047857;
}

/* ===== PAGE LINKS ===== */
.page-links {
    margin: 2rem 0;
    text-align: center;
}

.page-links a,
.page-links span {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background: #f8fafc;
    color: #1a1a1a;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.page-links a:hover,
.page-links span.current {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}


/* ===== READ MORE LINK ENHANCEMENTS ===== */
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more svg {
    transition: transform 0.3s ease;
}

.read-more:hover svg {
    transform: translateX(4px);
}

/* ===== POST TAGS ===== */
.post-tags {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.post-tags a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.875rem;
}

.post-tags a:hover {
    color: #2563eb;
}


html {
    margin-top: 0 !important;
}

html body #wpadminbar {
    display: none !important;
}