/*
*  CSS TABLE OF CONTENTS
*
*  1.0 - CSS Variables
*  2.0 - Common Styles
*  3.0 - Header
*  4.0 - Hero Section
*  5.0 - Slider Section
*  6.0 - About Section
*  7.0 - Service Section
*  8.0 - Service Details
*  9.0 - Project Section
*  10.0 - Project Details
*  11.0 - Testimonial Section
*  12.0 - Counter Section
*  13.0 - Skill Section
*  14.0 - Sponsor Section
*  15.0 - Short Promo Section
*  16.0 - CTA Section
*  17.0 - Team Section
*  18.0 - Promo Section
*  19.0 - Why Choose Us
*  20.0 - Video Section
*  21.0 - Progress Section
*  22.0 - Faq Section
*  23.0 - Pricing Section
*  24.0 - Blog Section
*  25.0 - Callback Section
*  26.0 - Feed Section
*  27.0 - Contact Section
*  28.0 - Branches Section
*  29.0 - Footer Section
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans&family=Syne:wght@400;500;600;700&display=swap');

/*** 1.0 - CSS Variables ***/
:root {
    --primary-font: "Syne", sans-serif;
    --secondary-font: "DM Sans", sans-serif;
    --primary-color: #3dae2b;
    --secondary-color: #089fac;
    --white-color: #fff;
    --dark-color: #111521;
    --grey-color: #747475;
    --grey-light-color: #b8b8b8;
    --bg-white: #fff;
    --bg-dark: #003764;
    --bg-dark-light: #212140;
    --bg-light-color: #f5f3ef;
    --bg-primary-transparent: rgba(61, 174, 43, 0.7);
    --bg-secondary-transparent: rgba(0, 55, 100, 0.6);
    --bg-gradiant-color: linear-gradient(45deg, rgba(255, 106, 50, 1) 0%, rgba(8, 159, 172, 1) 100%);
    --bg-gradiant-transparent: linear-gradient(45deg, rgba(255, 106, 50, 0.9) 0%, rgba(8, 159, 172, 0.9) 100%);
    --shadow-sm: 0px 8px 16px 0px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0px 8px 18px 0px rgba(0, 0, 0, 0.1);
}

/*** 2.0 - Common Styles ***/
* {
    padding: 0;
    margin: 0;
}

body {
    background-color: var(--bg-white);
    font-family: var(--secondary-font);
    font-size: 16px;
    line-height: 27px;
    color: var(--grey-color);
    font-weight: 400;
    letter-spacing: -0.2px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--primary-font);
    -webkit-font-smoothing: antialiased;
    color: var(--dark-color);
}

a {
    color: var(--grey-color);
    text-decoration: none;
}

a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

a:focus {
    outline: 0;
    text-decoration: none;
}

img {
    border: none;
    outline: none;
    max-width: 100%;
}

ul {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
}

/*** Form Input Placeholder Color ***/
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: var(--grey-light-color) !important;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: var(--grey-light-color) !important;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: var(--grey-light-color) !important;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: var(--grey-light-color) !important;
}

button {
    border: none;
    background: none;
}

/*** Padding Classes ***/
.padding {
    padding: 100px 0;
}

.padding-top {
    padding-top: 100px;
}

.padding-bottom {
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pb-30 {
    padding-bottom: 30px;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.padding-15 {
    padding: 15px;
}

.padding-20 {
    padding: 20px;
}

@media (max-width: 992px) {
    .sm-padding {
        padding: 15px;
    }
}

/*** Margin Classes ***/
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }
.mt-60 { margin-top: 60px; }

/*** Background Color ***/
.bg-grey {
    background-color: var(--bg-light-color);
    position: relative;
}
.bg-grey::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(../img/line-pattern-3.png);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 0;
}
.bg-grey > * {
    position: relative;
    z-index: 1;
}

.bg-dark {
    background-color: var(--bg-dark) !important;
}

/*** Transition Effect ***/
a, a:hover, img, .form-control, .form-control:hover, button {
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/*** Scrollbar Style ***/
::-webkit-scrollbar {
    background: rgba(255, 255, 255, 0.05);
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: var(--primary-color);
}

::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

-webkit-::selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/*** Preloader ***/
body {
    overflow: hidden;
}

body.loaded {
    overflow: inherit;
    overflow-x: hidden;
}

.loaded .site-preloader {
    opacity: 0;
    visibility: hidden;
}

.site-preloader {
    position: fixed;
    z-index: 999;
    height: 100%;
    width: 100%;
    background: var(--bg-white);
    top: 0;
    left: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.site-preloader .spinner {
    background-color: var(--primary-color);
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20px;
    margin-top: -20px;
}

.spinner {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    -webkit-animation: scaleout 1.0s infinite ease-in-out;
    animation: scaleout 1.0s infinite ease-in-out;
}

@-webkit-keyframes scaleout {
    0% { -webkit-transform: scale(0); }
    100% { -webkit-transform: scale(1.0); opacity: 0; }
}

@keyframes scaleout {
    0% { -webkit-transform: scale(0); transform: scale(0); }
    100% { -webkit-transform: scale(1.0); transform: scale(1.0); opacity: 0; }
}

/* Default Btn */
.default-btn {
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    line-height: 45px;
    display: inline-block;
    letter-spacing: 0px;
    padding: 0 35px;
    position: relative;
    border-radius: 2px;
    z-index: 1;
}

.default-btn.blue {
    background-color: var(--secondary-color);
}

.default-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.default-btn:hover:before {
    -webkit-transform-origin: left center;
    transform-origin: left center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.default-btn:hover {
    transform: translateY(-3px);
    color: #fff;
}

.btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 10px;
    margin: 0 auto;
}

/* Color Shape */
.shape-wrap {
    display: flex;
    align-items: center;
    width: 400px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    transform: skew(25deg, 0deg);
    z-index: -1;
}

.shape-wrap .shape {
    background-color: var(--bg-secondary-transparent);
    width: 200px;
    height: 100%;
}

.shape-wrap .shape.red {
    background-color: var(--bg-primary-transparent);
}

/* Check List */
.check-list li {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-family: var(--primary-font);
    color: var(--dark-color);
    font-weight: 600;
}

.check-list li i {
    color: var(--primary-color);
    font-size: 20px;
}

.check-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

/* Map Pattern */
.map-pattern {
    background-image: url(../img/map-pattern.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.map-pattern.light {
    background-image: url(../img/map-pattern-light.png);
    background-size: contain;
}

.shape-pattern {
    background-image: url(../img/shape-pattern.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.3;
    z-index: -2;
}

.corner-pattern {
    background-image: url(../img/corner-pattern-1.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 500px;
    height: 356px;
    position: absolute;
    right: 0;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

.corner-pattern.bottom {
    background-image: url(../img/corner-pattern-2.png);
    right: auto;
    left: 0;
    top: auto;
    bottom: 0;
}

.net-pattern {
    background-image: url(../img/net-pattern.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    width: 500px;
    height: 692px;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.arrow-direction {
    background-image: url(../img/arrow-img.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 150px;
    height: 85px;
    position: absolute;
    left: 20%;
    top: 20%;
    z-index: -1;
}

/* Overlay */
.overlay {
    background-color: #003764;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.8;
    z-index: -1;
}

/* Ratings */
.ratings li {
    display: inline-block;
    font-size: 16px;
    color: #ffa534;
}

/* Social List */
.social-list {
    display: inline-flex;
    column-gap: 10px;
}

.social-list li a {
    background-color: transparent;
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--dark-color);
}

.social-list li a:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

/*** Section Heading ***/
.section-heading h2 {
    font-weight: 700;
    font-size: 36px;
    line-height: 42px;
    text-transform: capitalize;
}

.section-heading h2.white {
    color: #fff;
}

.sub-heading {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    position: relative;
    display: inline-block;
    background: #089FAC;
    background: linear-gradient(to right, #089FAC 0%, #3dae2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-left: 70px;
    margin-bottom: 20px;
}

.sub-heading:before {
    background-color: var(--secondary-color);
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sub-heading:after {
    background-color: var(--secondary-color);
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.section-heading .default-btn {
    margin-top: 15px;
}

/*** 3.0 Header ***/
.header-wrapper {
    background-color: var(--bg-light-color);
    position: relative;
    z-index: 2;
}

.topbar-wrapper {
    background-color: var(--bg-dark);
    font-family: var(--secondary-font);
    color: var(--grey-light-color);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    height: 50px;
    display: flex;
    align-items: center;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-right ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 30px;
}

.topbar-right ul li a {
    color: var(--grey-light-color);
}

.topbar-right ul li a:hover {
    color: var(--primary-color);
}

.topbar-right .topbar-search form {
    position: relative;
}

.topbar-right .topbar-search form input {
    background-color: var(--bg-dark-light);
    width: 230px;
    padding: 8px 20px;
    padding-right: 50px;
    border-radius: 2px;
    color: var(--white-color);
    line-height: 1;
    font-size: 15px;
    border: none;
    outline: none;
}

.topbar-right .topbar-search form button {
    font-size: 16px;
    color: var(--grey-color);
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    line-height: 1;
}

.topbar-right .topbar-search form button:hover {
    color: var(--primary-color);
}

/* Navigation */
.navigation-wrapper {
    background-color: var(--bg-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.navigation-inner {
    display: grid;
    align-items: center;
    grid-template-columns: 200px 1fr 200px;
    grid-column-gap: 40px;
}

.navigation-menu {
    padding: 0 20px;
}

.sidebar-trigger {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sidebar-trigger:hover {
    color: var(--primary-color);
}

.sidebar-trigger svg {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
}

.header-number,
.sticky-header {
    display: none;
}

.main-menu {
    display: none;
    column-gap: 16px;
}

.navigation-inner .site-logo {
    max-width: 170px;
}

@media (max-width: 1200px) {
    .navigation-inner {
        grid-template-columns: 130px 1fr 130px;
        grid-column-gap: 30px;
    }

    .navigation-menu {
        padding: 0 35px;
        column-gap: 20px;
    }

    .main-menu {
        column-gap: 20px;
    }

    .header-number svg {
        display: none;
    }
}

@media (min-width: 992px) {
    .header-number {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        column-gap: 15px;
    }

    .header-number i {
        font-size: 40px;
        color: var(--primary-color);
    }

    .header-number > div {
        font-family: var(--primary-font);
        color: var(--gray-color);
        font-weight: 600;
    }

    .header-number > div a {
        font-family: var(--secondary-font);
        display: block;
        color: var(--dark-color);
        font-weight: 600;
    }

    .header-number > div a:hover {
        color: var(--primary-color);
    }

    .navigation-wrapper {
        background-color: transparent;
    }

    .sticky-header {
        background-color: var(--bg-white);
        display: block;
        width: 100%;
        position: fixed;
        left: 0;
        top: 0;
        transform: translateY(-100%);
        z-index: 99;
    }

    .admin-bar .sticky-header {
        top: 32px;
    }

    .sticky-header .navigation-menu {
        box-shadow: none;
    }

    .sticky-header.sticky-fixed-top {
        transition: transform 1s ease;
        will-change: transform;
        transform: translateY(0);
    }

    .navigation-menu {
        background-color: var(--bg-white);
        height: 90px;
        box-shadow: var(--shadow-lg);
        border-bottom-left-radius: 5px;
        border-bottom-right-radius: 5px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    body:not(.header-2) .navigation-menu {
        justify-content: center;
        column-gap: 30px;
    }

    .main-menu {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        height: 100%;
    }

    .main-menu li {
        position: relative;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-menu li i.fa-solid {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        display: flex;
        align-items: center;
    }

    .main-menu li.dropdown_menu {
        padding-right: 14px;
    }

    .main-menu li.dropdown_menu i {
        transition: all 200ms linear;
        font-size: 14px;
    }

    .main-menu li.dropdown_menu:hover i {
        transform: rotateZ(-180deg);
    }

    .main-menu li a {
        font-family: var(--primary-font);
        color: var(--dark-color);
        font-size: 13px;
        line-height: 1;
        font-weight: 700;
        white-space: nowrap;
    }

    .main-menu li ul {
        background-color: var(--bg-white);
        padding: 0;
        width: 250px;
        position: absolute;
        top: 100%;
        left: -28px;
        border-radius: 2px;
        visibility: hidden;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        z-index: 9999;
        box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
        transform: translateY(-6px);
        transition: opacity 300ms ease, transform 300ms ease, max-height 350ms ease, padding 300ms ease, visibility 0ms linear 300ms;
        pointer-events: none;
    }

    .main-menu li:hover ul {
        visibility: visible;
        opacity: 1;
        max-height: 400px;
        padding: 16px 0;
        overflow: visible;
        transform: translateY(0);
        transition: opacity 300ms ease, transform 300ms ease, max-height 350ms ease, padding 300ms ease, visibility 0ms linear 0ms;
        pointer-events: all;
    }

    .main-menu li li {
        margin: 0 10px;
        padding: 10px 18px;
        border-radius: 4px;
        transition: background-color 250ms ease;
    }

    .main-menu li li a {
        font-weight: 600;
        display: block;
        color: var(--gray-color);
        position: relative;
        transition: color 250ms ease, padding-left 250ms ease;
    }

    .main-menu li li a:before {
        display: none;
    }

    .main-menu li:hover li.dropdown_menu > i {
        position: absolute;
        right: 0;
        top: 10px;
        transform: rotateZ(-90deg);
    }

    .main-menu li:hover li a:hover {
        color: #fff;
        padding-left: 18px;
    }

    .main-menu li:hover li:hover {
        background-color: #003764;
    }
    }

    .main-menu li:hover li ul {
        left: 100%;
        top: 10%;
        visibility: hidden;
        opacity: 0;
        transition: all 200ms linear;
    }

    .main-menu li:hover li:hover ul {
        top: 0;
        visibility: visible;
        transition: all 200ms linear;
        opacity: 1;
    }

    /* Header 2 */
    .header-2 .topbar-wrapper {
        background-color: var(--bg-grrey);
    }

    .header-2 .topbar-left {
        color: var(--dark-color);
        font-family: var(--primary-font);
        font-weight: 600;
    }

    .header-2 .topbar-right li {
        font-family: var(--primary-font);
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-color);
        line-height: 1;
        display: flex;
        align-items: center;
        column-gap: 5px;
    }

    .header-2 .topbar-right li a {
        font-family: var(--secondary-font);
        color: var(--dark-color);
        margin-left: 5px;
        font-size: 13px;
    }

    .header-2 .topbar-right .topbar-social a {
        font-family: var(--secondary-font);
        text-transform: uppercase;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        border-radius: 50%;
        position: relative;
    }

    .header-2 .topbar-right .topbar-social a:before {
        background-color: #999;
        content: "";
        width: 70%;
        height: 1.5px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 4px;
    }

    .header-2 .topbar-right .topbar-social a:hover:before {
        display: none;
    }

    .header-2 .topbar-right .topbar-social a:hover {
        border: 1px solid #999;
    }

    .header-2 .navigation-inner {
        grid-template-columns: 200px 1fr 300px;
    }

    .header-2 .navigation-wrapper {
        background-color: #fff;
    }

    .header-2 .navigation-menu {
        box-shadow: none;
        background-color: transparent;
        justify-content: center;
        padding: 0;
        border-radius: none;
    }

    .header-2 .header-right ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .header-2 .header-right ul li {
        display: inline-flex;
        align-items: center;
        cursor: pointer;
    }

    .header-2 .header-right ul li.login a {
        font-family: var(--primary-font);
        font-size: 15px;
        font-weight: 700;
        color: var(--dark-color);
        line-height: 1;
        display: flex;
        align-items: center;
    }

    .header-2 .header-right ul li.login {
        border-left: 2px solid #999;
        margin: 0 15px;
        padding-left: 15px;
    }

    .header-2 .header-right ul li.login i {
        margin-right: 5px;
    }

    .header-2 .header-right .search-icon {
        line-height: 1;
    }

    .header-2 .header-right i {
        font-size: 25px;
        color: var(--dark-color);
    }

    .header-2 .header-right .default-btn {
        padding: 0 30px;
    }
}

.mobile-navigation-menu {
    display: none;
}

.mobile-menu-icon {
    display: none;
}

/* Prevent horizontal overflow on mobile */
@media (max-width: 991.98px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    /* Fix text overflow */
    p, h1, h2, h3, h4, h5, h6, span, a, li {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    /* Topbar - hide left text, keep right items */
    .topbar-left {
        display: none;
    }
    .topbar-inner {
        justify-content: flex-end;
    }
    .topbar-right ul {
        column-gap: 16px;
    }
    /* Slider fixes */
    .slider-content {
        margin-left: 0 !important;
        padding: 20px !important;
    }
    .slider-content-wrap {
        height: auto !important;
        min-height: 300px;
        padding: 40px 0;
    }
    /* Force columns to stack */
    [class*="col-lg-"],
    [class*="col-md-"] {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .mobile-menu-icon {
        display: block !important;
        cursor: pointer;
        margin-left: auto;
    }
    #mobile-menu-close {
        display: flex;
    }
}

/* Make header-right visible on mobile so burger can show */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* Hide sticky header header-right on mobile to prevent glitch */
@media (max-width: 991.98px) {
    .sticky-header {
        display: none !important;
    }
    /* Mobile dropdown fix */
    .mobile-navigation-menu .dropdown_menu ul {
        display: none;
    }
    .mobile-navigation-menu .dropdown_menu.dropdown-open ul {
        display: block !important;
    }
}

@media (min-width: 992px) {
    .mobile-navigation-menu {
        display: none !important;
    }
    #mobile-menu-close {
        display: none;
    }
}@media (max-width: 992px) {
    .navigation-inner {
        grid-template-columns: 1fr auto;
    }

    .navigation-inner .site-logo {
        padding: 15px 0;
    }

    .navigation-menu {
        display: none;
    }

    .header-2 .header-right ul {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        column-gap: 20px;
    }

    .header-2 .navigation-inner {
        grid-template-columns: 1fr auto;
    }

    .header-2 .header-right {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header-2 .header-right ul {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }

    .burger-menu {
        width: 20px;
        height: 18px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        cursor: pointer;
        transition: transform 330ms ease-out;
    }

    .menu-open .burger-menu {
        transform: rotate(-45deg);
    }

    .line-menu {
        background-color: #666;
        border-radius: 0;
        width: 100%;
        height: 2px;
    }

    .line-menu.line-half {
        width: 50%;
    }

    .line-menu.first-line {
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: right;
    }

    .menu-open .line-menu.first-line {
        transform: rotate(-90deg) translateX(3px);
    }

    .line-menu.last-line {
        align-self: flex-end;
        transition: transform 330ms cubic-bezier(0.54, -0.81, 0.57, 0.57);
        transform-origin: left;
    }

    .menu-open .line-menu.last-line {
        transform: rotate(-90deg) translateX(-3px);
    }

    #mobile-menu-close {
        background-color: #003764;
        position: absolute;
        right: 30px;
        top: 20px;
        width: 45px;
        height: 45px;
        font-size: 20px;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    #mobile-menu-close:hover {
        background-color: #3dae2b;
        color: #fff;
    }

    .mobile-navigation-menu {
        background-color: #f5f2ec;
        position: fixed;
        left: -100%;
        top: 0;
        width: 400px;
        height: 100vh;
        padding: 100px 0 40px;
        box-shadow: var(--shadow-sm);
        display: block;
        visibility: hidden;
        opacity: 0;
        transition: all .3s linear;
        z-index: 999;
        overflow-y: auto;
    }

    .open-mobile-menu.mobile-navigation-menu {
        left: 0;
        visibility: visible;
        opacity: 1;
        transition: all .3s linear;
    }

    .mobile-navigation-menu .main-menu {
        display: block;
    }

    .mobile-navigation-menu .dropdown-plus {
        width: 100px;
        height: 49px;
        line-height: 49px;
        position: absolute;
        top: 0;
        right: 32px;
        cursor: pointer;
        z-index: 1;
    }

    .mobile-navigation-menu .dropdown-plus:before,
    .mobile-navigation-menu .dropdown-plus:after {
        position: absolute;
        content: "";
        top: 21px;
        right: 10px;
        width: 10px;
        height: 2px;
        background-color: var(--bg-dark);
    }

    .mobile-navigation-menu .dropdown-plus:after {
        transform: rotate(90deg);
    }

    .mobile-navigation-menu .dropdown-plus.dropdown-open:after {
        display: none;
    }

    .mobile-navigation-menu ul {
        padding-left: 0;
    }

    .mobile-navigation-menu ul li {
        position: relative;
        margin: 0;
        display: block;
        padding: 0;
    }

    .mobile-navigation-menu ul li > a {
        display: block;
        padding: 10px 40px;
        font-family: var(--primary-font);
        color: var(--dark-color);
        font-size: 15px;
        line-height: 22px;
        font-weight: 700;
    }

    .mobile-navigation-menu ul li:hover > a,
    .mobile-navigation-menu li li:hover > a {
        color: var(--primary-color);
    }

    .mobile-navigation-menu ul li ul li ul,
    .mobile-navigation-menu ul li ul {
        background-color: transparent;
        width: 100%;
        opacity: 1;
        padding: 0;
        visibility: visible;
        position: inherit;
        display: none;
        top: inherit;
        left: inherit;
        box-shadow: none;
    }

    .mobile-navigation-menu li li {
        padding: 0 20px;
        padding-left: 10px;
    }

    .mobile-navigation-menu li li:last-child {
        border-bottom: none;
    }

    .mobile-navigation-menu li li > a {
        color: var(--grey-color);
        font-weight: 600;
        font-size: 14px;
        padding: 5px 20px 5px 40px;
    }
}

/* Popup Sidebox */
.popup-sidebox {
    display: none;
}

/* Search Box */
#popup-search-box {
    position: fixed;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    right: 0;
    white-space: nowrap;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 500ms ease all;
    overflow: hidden;
}

.open-search-box #popup-search-box {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
    pointer-events: all;
}

#popup-search-box .search-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

#searchbox-overlay {
    height: 100%;
    left: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    transition: all 0s ease-in-out;
    width: 100%;
    cursor: default;
    z-index: -1;
}

.open-search-box #searchbox-overlay {
    opacity: 1;
    z-index: 1002;
    transition: all 0.6s ease-in-out;
    transition-delay: 0.3s;
}

#popup-search-box .box-inner-wrap {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    padding: 80px 0;
    width: 100%;
    transform: translateY(-100%);
    transition: all ease-in-out 0.3s;
    box-shadow: 0 10px 60px rgb(0 0 0 / 10%);
}

.open-search-box #popup-search-box .box-inner-wrap {
    transform: translateY(0);
}

#popup-search-box .box-inner-wrap form {
    position: relative;
    margin: 0 auto;
}

#popup-search-box .box-inner-wrap input::placeholder {
    color: #666;
    font-size: 18px;
}

#popup-search-box .box-inner-wrap input {
    background: #fff;
    font-family: "Space Grotesk", sans-serif;
    width: 600px;
    padding: 15px 30px;
    padding-right: 80px;
    border: 1px solid #eee;
    font-size: 18px;
    color: #666;
    border-radius: 50px;
}

#popup-search-box .box-inner-wrap input:focus {
    outline: none;
    border: 1px solid var(--primary-color);
}

#popup-search-box .box-inner-wrap button {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 100%;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    color: #666;
    font-size: 30px;
    transition: 500ms ease all;
}

#popup-search-box .box-inner-wrap button:hover {
    color: var(--primary-color);
}

#popup-search-box .box-inner-wrap button:focus {
    outline: none;
}

.search-close {
    font-size: 30px;
    color: #666;
    width: 40px;
    height: 40px;
    position: relative;
    right: auto;
    top: auto;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.165, 0.85, 0.45, 1);
}

.search-close:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.sidebar-trigger {
    display: none;
}

@media (min-width: 992px) {
    .sidebar-trigger {
        display: block;
    }

    .popup-sidebox {
        background-color: var(--bg-dark);
        padding: 80px;
        position: fixed;
        right: -100%;
        top: 0;
        width: 500px;
        height: 100%;
        z-index: 9999;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        visibility: hidden;
        transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .open-sidebox .popup-sidebox {
        right: 0;
        visibility: visible;
    }

    #sidebox-overlay {
        height: 100%;
        left: 0;
        opacity: 0;
        overflow: hidden;
        position: fixed;
        top: 0;
        transition: all 0s ease-in-out;
        width: calc(100% - 400px);
        z-index: -1;
    }

    .open-sidebox #sidebox-overlay {
        opacity: 1;
        z-index: 1002;
        transition: all 0.6s ease-in-out;
        transition-delay: 0.3s;
    }

    .sidebox-content .site-logo {
        margin-bottom: 25px;
        max-width: 200px;
    }

    .sidebox-content p {
        font-size: 18px;
        font-weight: 400;
        color: #999;
        margin-bottom: 30px;
    }

    .sidebox-content .sidebox-list li span {
        font-family: var(--primary-font);
        text-transform: capitalize;
        display: block;
        font-size: 16px;
        font-weight: 400;
        color: #999;
        margin-bottom: 5px;
    }

    .sidebox-content .sidebox-list li {
        font-family: var(--primary-font);
        font-size: 20px;
        font-weight: 600;
        color: #fff;
    }

    .sidebox-content .sidebox-list li.call {
        font-family: var(--secondary-font);
        color: var(--primary-color);
        font-size: 28px;
        font-weight: 700;
    }

    .sidebox-content .sidebox-list li:not(:last-of-type) {
        margin-bottom: 20px;
    }

    .sidebox-close {
        position: absolute;
        right: 50px;
        top: 50px;
        color: #999;
        font-size: 25px;
    }

    .sidebox-close:hover {
        color: var(--primary-color);
        transform: scale(1.1);
    }
}

@media (max-width: 1024px) {
    .topbar-inner .topbar-left {
        font-size: 14px;
    }
}

@media (max-width: 992px) {
    .topbar-inner .topbar-left {
        display: none;
    }
}

@media (max-width: 767px) {
    .topbar-inner .topbar-right {
        width: 100%;
    }

    .topbar-inner .topbar-right ul {
        justify-content: space-between;
    }

    .topbar-inner .topbar-right .topbar-search {
        display: none;
    }
}

/*** 4.0 - Hero Section ***/
.hero-section {
    background-color: var(--bg-light-color);
    height: 550px;
    display: flex;
    align-items: center;
}

.hero-content h3 {
    font-size: 18px;
    font-weight: 500;
}

.hero-content h3 i {
    font-size: 20px;
    color: var(--primary-color);
}

.hero-content h2 {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: -1px;
    font-weight: 600;
}

.hero-content .btn-holder {
    display: flex;
    align-items: center;
    gap: 30px;
    position: relative;
}

.hero-content .hero-arrow {
    position: absolute;
    right: 160px;
    top: -20px;
}

.play-btn {
    display: flex;
    align-items: center;
}

.play-btn .play-icon {
    width: 55px;
    height: 55px;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-color);
    color: #fff;
    transition: all .4s ease-in-out;
    animation: ripple_anim 2s linear infinite;
}

.play-btn .play-icon svg {
    width: 12px;
}

.play-btn-txt {
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    padding-left: 10px;
}

@keyframes ripple_anim {
    0% { box-shadow: 0px 0px 0px 0px rgba(73, 82, 232, 0.08), 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08); }
    100% { box-shadow: 0px 0px 0px 5px rgba(73, 82, 232, 0.08), 0px 0px 0px 12px rgba(73, 82, 232, 0.08), 0px 0px 0px 18px rgba(73, 82, 232, 0); }
}

.brands-circle {
    background-color: transparent;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1.5px dashed var(--grey-color);
    position: relative;
    margin: 0 auto;
}

.brands-circle:before {
    border: 1.5px dashed var(--grey-color);
    content: "";
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    border-radius: 50%;
}

.brands-circle:after {
    border: 1.5px dashed var(--grey-color);
    content: "";
    position: absolute;
    left: 100px;
    right: 100px;
    top: 100px;
    bottom: 100px;
    border-radius: 50%;
}

.brands-circle > div:not(.center-icon) > i {
    background-color: var(--primary-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 25px;
    color: var(--white-color);
    position: absolute;
    left: 50%;
    top: 50%;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.brands-circle > div.inner-icon,
.brands-circle > div.outer-icon {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    animation: rotate-center 25s linear infinite;
}

.brands-circle > div.outer-icon i:nth-child(1) { left: auto; right: -25px; }
.brands-circle > div.outer-icon i:nth-child(2) { left: auto; right: 75px; top: 0; }
.brands-circle > div.outer-icon i:nth-child(3) { left: 12%; top: 5%; }
.brands-circle > div.outer-icon i:nth-child(4) { left: 20%; top: auto; bottom: 0px; }

.brands-circle > div.inner-icon {
    left: 50px;
    right: 50px;
    top: 50px;
    bottom: 50px;
    animation: rotate-center 25s linear infinite reverse;
    animation-duration: 30s;
    animation-delay: 200ms;
}

.brands-circle > div.inner-icon i:nth-child(1) { left: -10px; top: 60%; }
.brands-circle > div.inner-icon i:nth-child(2) { left: auto; right: 50px; top: 85%; }

.brands-circle .center-icon {
    background-color: #0abf53;
    border-radius: 50%;
    color: var(--white-color);
    font-size: 30px;
    position: absolute;
    width: 60px;
    height: 60px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.brands-circle .inner-icon .la-hubspot { background-color: #ff9d2a; }
.brands-circle .inner-icon .la-dribbble { background-color: #ea4c89; }
.brands-circle .outer-icon .la-behance { background-color: #053eff; }
.brands-circle .outer-icon .la-gitlab { background-color: #e24329; }
.brands-circle .outer-icon .la-itunes-note { background-color: #ea4cc0; }
.brands-circle .outer-icon .slack { background-color: #ECB22E; }

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

@media (max-width: 992px) {
    .hero-section { height: 500px; }
    .brands-circle { width: 280px; height: 280px; }
    .hero-content h2 { font-size: 42px; line-height: 48px; }
    .hero-content .hero-arrow { display: none; }
}

@media (max-width: 767px) {
    .hero-section { height: 400px; }
    .hero-content h2 { font-size: 28px; line-height: 32px; }
    .hero-content .btn-holder { gap: 15px; }
    .hero-content .default-btn { padding: 0 25px; }
}

/*** 5.0 - Slider Section ***/

/* Z-index: text above color bars */
.slider-section .slider-shape-wrap {
    z-index: 2;
}

.slider-section .container {
    position: relative;
    z-index: 3;
}

.main-slider .swiper-slide {
    z-index: 1;
}

.slider-img {
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: -1;
}

.slider-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    animation-duration: 8s;
}

.slider-content {
    background-color: var(--primary-color);
    padding: 40px;
    margin-left: 40px;
    position: relative;
}

.slider-content:before {
    background-color: #fff;
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.slider-content-wrap {
    display: flex;
    align-items: center;
    height: 500px;
}

.slider-caption {
    font-family: var(--primary-font);
}

.slider-caption.medium {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.slider-caption.big {
    font-size: 42px;
    line-height: 42px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.slider-caption.small {
    font-size: 18px;
    line-height: 28px;
    color: #ddd;
    margin-bottom: 20px;
}

/* Slider Buttons */
.slider-btn .default-btn {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--white-color);
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.slider-btn .default-btn:hover {
    background-color: #2a8a20;
    border-color: #2a8a20;
    color: var(--white-color);
}

.slider-btn .default-btn.btn-outline {
    background-color: transparent;
    border: 1px solid #fff;
}

.slider-btn .default-btn.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* Slider Pagination */
.slider-controls {
    background-color: #fff;
    border-radius: 2px;
    width: 300px;
    height: 80px;
    padding: 20px;
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 5px;
    z-index: 10;
}

.slider-controls .slider-pagination {
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 5px;
}

.slider-control {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s cubic-bezier(.165, .85, .45, 1);
}

.slider-control:hover {
    color: var(--primary-color);
}

.slider-control span {
    font-size: 30px;
    margin-top: 3px;
    line-height: 1;
}

.slider-controler .swiper-pagination {
    text-align: right;
    padding-right: 35px;
    padding-bottom: 15px;
}

.slider-controler .swiper-pagination span {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.slider-controler .swiper-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    box-shadow: 0px 0px 0px 3px rgba(255, 101, 50, 0.5);
}

/* Slider 2 */
.slider-2 {
    overflow: hidden;
}

.slider-2 .swiper-pagination {
    text-align: center;
}

/* Slider Shape */
.slider-shape-wrap {
    display: flex;
    align-items: center;
    width: 400px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    transform: skew(25deg, 0deg);
}

.slider-shape {
    background-color: var(--bg-primary-transparent);
    width: 200px;
    height: 100%;
}

.slider-shape.blue {
    background-color: var(--bg-secondary-transparent);
}

@media (max-width: 992px) {
    .slider-content-wrap { height: 450px; }
    .slider-caption.big { font-size: 36px; line-height: 42px; }
}

@media (max-width: 767px) {
    .slider-content-wrap { height: 350px; }
    .slider-caption.big { font-size: 24px; line-height: 32px; }
    .slider-content { margin: 0 auto; }

    /* Hide color bars on mobile */
    .slider-shape-wrap {
        display: none !important;
    }
}

/*** 6.0 - About Section ***/
.about-img {
    border: 1px solid var(--dark-color);
    width: 95%;
    height: 500px;
    border-radius: 200px;
    position: relative;
    overflow: hidden;
}

.about-img.img-2 {
    width: 100%;
    height: 400px;
}

.about-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    padding: 10px;
    border-radius: 200px;
}

.about-content {
    position: relative;
}

.about-content .read-more {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 59%;
    font-size: 30px;
    color: #fff;
    position: relative;
}

.about-content .read-more:before {
    background-color: transparent;
    border: 1px solid var(--dark-color);
    border-radius: 50%;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 5px;
    transition: all 0.2s ease-in-out;
}

.about-content .read-more:hover {
    background-color: var(--secondary-color);
}

.about-content .read-more:hover:before {
    top: 0;
}

.about-content .read-more i {
    transform: rotate(-35deg);
}

.about-content h4 {
    background-color: var(--secondary-color);
    color: #fff;
    width: 100px;
    height: 100px;
    line-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: 600;
    padding: 0 30px;
    position: absolute;
    right: 0;
    bottom: -100px;
}

.about-content h4 b {
    display: block;
    font-size: 13px;
    font-weight: 400;
}

.about-content h5 {
    font-size: 18px;
    line-height: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.about-content .default-btn {
    margin-top: 10px;
}

.about-thumb {
    padding-left: 80px;
    padding-right: 20px;
    position: relative;
}

.about-thumb .stroke-font {
    font-family: var(--primary-font);
    font-size: 70px;
    color: #fff;
    text-transform: uppercase;
    font-weight: bolder;
    -webkit-text-stroke-width: 0.5px;
    -webkit-text-stroke-color: #ddd;
    -webkit-transform: rotate(-90deg);
    writing-mode: lr-tb;
    position: absolute;
    left: 20px;
    top: 0;
    height: 100%;
    letter-spacing: -1px;
}

.about-thumb img {
    width: 100%;
    text-align: right;
}

.about-counter {
    background-color: var(--secondary-color);
    position: absolute;
    left: 80px;
    bottom: 0;
    padding: 20px;
}

.about-counter h3 {
    font-weight: 700;
    color: #fff;
}

.about-counter h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

@media (max-width: 992px) {
    .stroke-font { display: none; }
    .about-thumb { padding: 0; text-align: center; margin: 0 auto; }
    .about-thumb img { margin: 0 auto; display: block; }
    .about-counter { left: 0; }
    .post-content-wrap {
        margin-left: 0;
        margin-top: 0;
    }
    .grid-post {
        margin: 0 !important;
    }
    .post-card {
        margin: 0 auto 20px;
    }
}

@media (max-width: 767px) {
    .about-img.img-1 { margin-bottom: 30px; }
    .about-img.img-2 { margin-top: 30px; }
    .about-content h4 { right: 40px; bottom: -40px; }
}

/*** 7.0 - Service Section ***/
.service-section {
    position: relative;
    z-index: 1;
}

.service-section .corner-pattern.bottom {
    bottom: 40%;
}

.service-section.service-2 .corner-pattern.bottom {
    bottom: 0;
}

.service-section.service-2.bg-dark {
    background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%) !important;
}

.service-item {
    background-color: #fff;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.service-item:before {
    background-image: url(../img/polygon-corner-shape.png);
    background-repeat: no-repeat;
    background-position: top right;
    width: 115px;
    height: 90px;
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

.service-item:hover:before {
    visibility: visible;
    opacity: 1;
}

.service-item .service-icon {
    color: #fff;
    font-size: 50px;
    width: 120px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.service-item .service-icon:before {
    background-color: var(--secondary-color);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    transform: rotate(-5deg);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    transition: all 0.2s ease-in-out;
}

.service-item:hover .service-icon:before {
    background-color: var(--primary-color);
}

.service-item h3 {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -1px;
}

.service-item a {
    font-family: var(--primary-font);
    color: var(--dark-color);
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-item a i {
    font-size: 30px;
    margin-top: 2px;
    margin-left: 3px;
}

.bg-half-color {
    background-color: var(--bg-dark);
    width: 100%;
    height: 40%;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

/* Service 2 */
.service-card {
    background-color: var(--bg-dark-light);
    border-radius: 5px;
    padding: 32px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    background: radial-gradient(circle at 100% 100%, #212140 0, #212140 3px, transparent 3px) 0% 0%/5px 5px no-repeat,
        radial-gradient(circle at 0 100%, #212140 0, #212140 3px, transparent 3px) 100% 0%/5px 5px no-repeat,
        radial-gradient(circle at 100% 0, #212140 0, #212140 3px, transparent 3px) 0% 100%/5px 5px no-repeat,
        radial-gradient(circle at 0 0, #212140 0, #212140 3px, transparent 3px) 100% 100%/5px 5px no-repeat,
        linear-gradient(#212140, #212140) 50% 50%/calc(100% - 4px) calc(100% - 10px) no-repeat,
        linear-gradient(#212140, #212140) 50% 50%/calc(100% - 10px) calc(100% - 4px) no-repeat,
        linear-gradient(90deg, transparent 0%, #8cadaf 0%, #3dae2b 100%),
        linear-gradient(220deg, #3dae2b 100%, transparent 100%, #383ad0 100%);
    transition: all 0.2s ease-in-out;
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.service-card:hover:before {
    visibility: visible;
    opacity: 1;
}

.service-card .service-head {
    display: flex;
    align-items: center;
    justify-content: left;
    column-gap: 15px;
    margin-bottom: 15px;
}

.service-card .service-head h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.service-card .service-head .service-icon {
    background-color: var(--bg-dark);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 35px;
}

.service-card .service-content p {
    color: #ddd;
}

.service-card .service-content .read-more {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    color: #ddd;
    display: flex;
    align-items: center;
    column-gap: 5px;
    line-height: 1;
}

.service-card .service-content .read-more span {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.service-card .service-content .read-more span:before {
    background-color: var(--bg-primary-transparent);
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

.service-card .service-content .read-more:hover span:before {
    background-color: var(--bg-secondary-transparent);
}

.service-card .service-content .read-more:hover span,
.service-card .service-content .read-more:hover {
    color: var(--secondary-color);
}

/*** 8.0 - Service Details ***/
.service-details-info img {
    height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    border-radius: 2px;
    margin-bottom: 20px;
}

.service-details-info h2 {
    font-size: 28px;
    font-weight: 700;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    margin: 30px 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.service-features li i {
    font-size: 50px;
    color: var(--primary-color);
}

.service-features li h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.service-features li p {
    margin-bottom: 0;
}

.service-details-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
    margin-top: 30px;
}

.service-details-list img {
    height: 220px;
    margin: 0;
}

.service-icon-list li i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-icon-list li {
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    column-gap: 10px;
}

.service-icon-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .service-features li { display: block; }
    .service-features li i { margin-bottom: 15px; }
    .service-features li h3 { font-size: 16px; }
    .service-details-list { display: block; }
    .service-details-list img { margin-bottom: 20px; }
}

/* Service Sidebar */
.service-sidebar ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--bg-light-color);
    padding: 8px 15px;
    border: 1px solid #eee;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.service-sidebar ul li:hover {
    background: var(--primary-color);
    color: #fff;
}

.service-sidebar ul li:not(:last-of-type) {
    margin-bottom: 10px;
}

.service-sidebar ul li a {
    font-size: 17px;
    font-weight: 500;
}

.service-sidebar ul li:hover a {
    color: #fff;
}

.service-sidebar ul li i {
    font-size: 20px;
    color: var(--primary-color);
}

.service-sidebar ul li:hover i {
    color: #fff;
}

/*** 9.0 - Project Section ***/
.project-section {
    overflow: hidden;
}

.project-section.grid .project-item {
    margin: 0;
}

.section-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.project-carousel {
    overflow: hidden;
}

.project-item {
    margin-bottom: 20px;
    border-radius: 3px;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
}

.project-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.project-item .project-thumb a img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center center;
}

.project-item .project-content {
    background-color: #fff;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.project-item .project-content:before {
    background-color: transparent;
    border: 2px solid var(--bg-dark);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    content: "";
    position: absolute;
    right: -20px;
    bottom: -25px;
}

.project-item:hover .project-content:before {
    border: 2px solid var(--primary-color);
}

.project-item .project-content h4 {
    font-size: 16px;
    margin: 0;
}

.project-item .project-content h3,
.project-item .project-content h3 a {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: var(--dark-color);
}

.project-item .project-content .read-more {
    font-family: var(--primary-font);
    color: var(--dark-color);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    display: flex;
    align-items: center;
}

.project-item .project-content .read-more:hover {
    color: var(--primary-color);
}

.project-item .project-content .read-more i {
    font-size: 30px;
    margin-top: 2px;
    margin-left: 3px;
}

.carousel-pagination {
    text-align: center;
    transform: translateY(30px);
}

.carousel-pagination span {
    background-color: var(--bg-dark);
    border-radius: 2px;
    width: 10px;
    height: 10px;
    border-radius: 0;
    opacity: 1;
}

.carousel-pagination span.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    box-shadow: 0px 0px 0px 3px rgba(255, 106, 50, 0.5);
}

.project-carousel-2 {
    width: 60%;
    margin: 0 auto;
}

.project-carousel-2 .swiper-slide {
    overflow: hidden;
}

.project-carousel-2 .project-item {
    margin: 0;
}

.project-carousel-2 .project-content {
    position: absolute;
    left: 20px;
    bottom: -100px;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.8s cubic-bezier(.19, 1, .22, 1);
}

.project-carousel-2 .swiper-slide-active .project-content {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
    transition: all 0.8s cubic-bezier(.19, 1, .22, 1);
    transition-delay: 0.3s;
}

.project-carousel-2 .project-item:hover {
    transform: translateY(0);
    box-shadow: none;
}

.project-carousel-2 .project-content h3 {
    margin: 0;
    margin-top: 5px;
}

.project-carousel-2 .project-content:before {
    background-color: var(--primary-color);
    width: 10px;
    height: 10px;
    right: 10px;
    bottom: 10px;
    border: none;
    border-radius: 0;
}

@media (max-width: 992px) {
    .section-heading-wrap { flex-direction: column; align-items: flex-start; }
    .section-heading-wrap .default-btn { margin-top: 20px; }
    .carousel-pagination { transform: translateY(5px); }
}

@media (max-width: 767px) {
    .project-carousel-2 { width: 100%; }
}

@media (max-width: 600px) {
    .project-carousel-2 .project-content { left: 20px; right: 20px; }
}

/*** 10.0 - Project Details ***/
.project-info {
    display: grid;
    grid-template-columns: 1fr 30%;
    column-gap: 40px;
    overflow: hidden;
}

.project-details-thumb img {
    width: 100%;
    height: 431px;
    object-fit: cover;
    object-position: center center;
}

.project-sidebar-inner {
    border: 1px solid #ddd;
    padding: 40px 30px;
}

.project-details .project-title {
    font-size: 22px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.project-details .project-title:before {
    background-color: var(--primary-color);
    width: 30%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

.project-details-sidebar .info-list > li {
    display: block;
    align-items: center;
    font-family: var(--primary-font);
    font-size: 16px;
}

.project-details-sidebar .info-list li label {
    width: 130px;
    font-weight: 700;
    color: var(--dark-color);
}

.project-details-sidebar .info-list li:not(:last-of-type) {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #ddd;
}

.project-details-sidebar .info-list li:last-child {
    display: flex;
    align-items: center;
}

.project-details-sidebar .info-list li li:not(:last-of-type) {
    margin: 0;
    padding: 0;
    border: none;
}

.project-details-sidebar .info-list .ratings {
    display: flex;
    align-items: center;
}

.project-content-wrap {
    padding-top: 40px;
}

.project-content-wrap h2 {
    font-weight: 700;
    font-size: 28px;
}

.project-content-inner {
    padding-top: 20px;
}

.project-content h3 {
    font-size: 22px;
    font-weight: 600;
}

.project-content-wrap .video-box {
    background-image: url(../img/video-box.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .project-info { grid-template-columns: 1fr; grid-row-gap: 40px; }
    .related-projects .section-heading-wrap { flex-direction: inherit; }
    .project-content-wrap .video-box { height: 300px; width: 100%; background-size: cover; margin-top: 20px; }
}

@media (max-width: 767px) {
    .related-projects .section-heading-wrap .carousel-navigation { display: none; }
}

/*** 11.0 - Testimonial Section ***/
.testimonial-section {
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    overflow: hidden;
}

.testi-item {
    text-align: center;
    padding: 0 20px;
}

.testi-item .quote-icon {
    font-size: 50px;
    color: var(--dark-color);
}

.testi-item p {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 18px;
    line-height: 32px;
    font-style: italic;
}

.testi-author .author-thumb img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 15px;
}

.testi-author .author-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-color);
}

.testi-author .author-info h4 {
    font-size: 15px;
    color: var(--grey-color);
    margin: 0;
}

.testimonial-section-2 {
    background-image: none;
    width: 100%;
    height: 100%;
}

.testimonial-card {
    overflow: hidden;
    padding: 20px 10px;
    margin: -10px;
}

.testimonial-card .testi-item {
    background-color: #fff;
    padding: 40px;
    text-align: left;
    position: relative;
    box-shadow: 0px 1px 10px 0px rgb(0 0 0 / 10%);
}

.testimonial-card .testi-item p {
    font-style: inherit;
}

.testimonial-card .testi-author {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.testimonial-card .author-thumb img {
    margin: 0;
}

.testimonial-card .testi-item .quote-icon {
    color: var(--primary-color);
    opacity: 0.5;
    position: absolute;
    right: 20px;
    bottom: 20px;
}

.carousel-navigation {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.carousel-navigation button {
    background-color: var(--primary-color);
    padding: 10px 15px;
    border-radius: 2px;
    font-size: 30px;
    color: #fff;
    transition: all 0.2s ease-in-out;
}

.carousel-navigation button:hover {
    background-color: var(--secondary-color);
}

@media (max-width: 767px) {
    .author-info { padding-bottom: 20px; }
    .carousel-navigation { margin-top: 20px; }
}

/*** 12.0 - Counter Section ***/
.counter-section {
    position: relative;
    z-index: 1;
}

.counter-section:not(.section-2) {
    padding-top: 100px;
    padding-bottom: 280px;
}

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

.counter-icon {
    background-color: var(--primary-color);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    font-size: 40px;
    color: #fff;
    width: 90px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.counter-item:hover .counter-icon {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

.counter-content h3,
.counter-content h3 span {
    font-family: var(--secondary-font);
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.counter-content h4 {
    font-size: 18px;
    color: #ddd;
}

@media (max-width: 767px) {
    .counter-item { display: block; text-align: center; }
    .counter-icon { text-align: center; margin: 0 auto; }
}

.counter-section.section-2 {
    background-image: url(../img/line-pattern.png);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 100%;
}

.counter-section.section-2 .counter-content h4,
.counter-section.section-2 .counter-content h3,
.counter-section.section-2 .counter-content h3 span {
    color: var(--dark-color);
}

@media (max-width: 992px) {
    .counter-section { padding-top: 50px; }
}

/*** 13.0 - Skill Section ***/
.skill-section {
    overflow: hidden;
    margin-top: -200px;
}

.skill-section-wrap {
    background-color: #fff;
    border-top-left-radius: 30px;
    padding: 80px 20px 0 20px;
    position: relative;
    z-index: 1;
}

.skill-section-wrap:before {
    background-color: #fff;
    content: "";
    border-top-left-radius: 30px;
    width: 5000px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.skill-img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 30px;
    overflow: hidden;
}

.skill-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.skill-content-wrap {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.skill-content-wrap .skill-item {
    flex: 0 0 auto;
    width: 60%;
    padding-right: 20px;
}

.skill-tab-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.skill-tab-content .tab-thumb img {
    width: 200px;
    height: 160px;
    object-fit: cover;
    border-radius: 3px;
}

.skill-tab-menu {
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 30px;
}

.skill-tab-menu .nav-item .nav-link {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: 0.5px;
    padding: 3px 20px;
}

.skill-tab-menu .nav-item .nav-link.active {
    background-color: var(--primary-color);
    color: #fff;
}

.skill-tab-content .tab-list li:not(:last-of-type) {
    margin-bottom: 15px;
}

.skill-tab-content .tab-list li {
    font-family: var(--primary-font);
    color: var(--grey-color);
    font-weight: 600;
    display: flex;
    align-items: center;
}

.skill-tab-content .tab-list li i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 5px;
}

.skillbar {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 10px;
}

.skillbar-bar:before {
    background: var(--grey-light-color);
    content: "";
    height: 10px;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.skillbar-bar {
    height: 10px;
    width: 0px;
    background: var(--primary-color);
    transition-property: width, background-color;
}

.skillbar-bar.blue {
    background: var(--secondary-color);
}

.skillbar-title {
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
}

.skill-bar-percent {
    display: inline-block;
    color: #323232;
    font-size: 15px;
    font-weight: 600;
}

.skill-item-list li {
    background-color: #fff;
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.skill-item-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.skill-item-list li h4 {
    font-size: 20px;
    font-weight: 600;
}

.skill-item-list li p {
    margin: 0;
}

@media (max-width: 992px) {
    .skill-section-wrap:before { display: none; }
    .skill-img img, .skill-section-wrap { border-top-right-radius: 30px; }
    .skill-img { padding-bottom: 40px; }
}

@media (max-width: 767px) {
    .counter-section:not(.section-2), .counter-section { padding: 50px 0; }
    .skill-section { margin-top: 0; padding: 50px 0; }
    .skill-section-wrap { padding: 0; }
    .skill-tab-content .tab-thumb, .skill-tab-content .tab-thumb img { width: 100%; }
    .skill-tab-content, .skill-content-wrap { flex-direction: column; justify-content: flex-start; align-items: flex-start; }
    .skill-content-wrap .skill-item { width: 100%; }
    .skill-tab-content .tab-thumb { padding-bottom: 10px; }
    .skill-tab-menu .nav-item .nav-link { padding: 3px 10px; }
}

/*** 14.0 - Sponsor Section ***/
.sponsor-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.sponsor-carousel {
    overflow: hidden;
}

.sponsor-carousel img {
    opacity: 0.8;
}

.sponsor-carousel .swiper-slide {
    text-align: center;
}

.sponsor-carousel img:hover {
    cursor: pointer;
    opacity: 1;
    transform: translateY(-3px);
}

.sponsor-2 {
    margin: -20px -20px;
}

.sponsor-2 .swiper-slide {
    margin: 20px 0;
}

.sponsor-2 .sponsor-carousel img {
    background-color: #fff;
    padding: 10px 20px;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.sponsor-section .section-heading-wrap {
    position: relative;
    z-index: 1;
}

.sponsor-section .section-heading-wrap .arrow-img {
    background-image: url(../img/arrow-img-3.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    width: 100px;
    height: 100px;
    position: absolute;
    right: 0;
    top: -70px;
    z-index: -1;
}

@media (max-width: 767px) {
    .sponsor-section .section-heading-wrap .arrow-img { display: none; }
}

/*** 15.0 - Short Promo Section ***/
.short-promo {
    position: relative;
    z-index: 2;
}

.short-promo-item {
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 20px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    z-index: 2;
    position: relative;
}

.short-promo-item:hover {
    transform: translateY(-3px);
}

.short-promo-item .promo-icon {
    background-color: #fff;
    color: var(--primary-color);
    flex: 0 0 auto;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.short-promo-item .promo-icon i {
    font-size: 40px;
}

.short-promo-item.blue {
    background-color: var(--secondary-color);
}

.short-promo-item.blue .promo-icon {
    color: var(--secondary-color);
}

.short-promo-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.short-promo-item p {
    color: #ddd;
    margin: 0;
}

@media (max-width: 992px) {
    .short-promo-item { flex-direction: column; justify-content: flex-start; row-gap: 20px; }
    .short-promo-item .promo-icon { margin-right: auto; }
    .cta-content { padding-top: 20px; }
}

/*** 16.0 - CTA Section ***/
.cta-section {
    background-image: url(../img/cta-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    position: relative;
    z-index: 1;
}

.cta-content {
    padding-top: 60px;
}

.cta-content h2 {
    color: #fff;
    margin-top: 20px;
}

.cta-content p {
    color: #ddd;
}

@media (max-width: 992px) {
    .cta-content { padding-top: 20px; }
}

/*** 17.0 - Team Section ***/
.team-item-inner {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.team-item-inner .team-thumb {
    width: 100%;
}

.team-item-inner .team-content {
    background-color: var(--primary-color);
    padding: 20px 15px;
    text-align: center;
    border-radius: 5px;
    width: calc(100% - 40px);
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: all 0.2s linear;
    transition-delay: 0.1s;
}

.team-item-inner .team-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.team-item-inner .team-content h3 a {
    color: #fff;
}

.team-item-inner .team-content h4 {
    color: #fff;
    font-size: 14px;
    margin: 0;
    line-height: 1;
}

.team-content .team-social {
    background-color: #fff;
    padding: 2px 10px;
    border-radius: 30px;
    width: 70%;
    position: absolute;
    left: 50%;
    bottom: 15px;
    transform: translateX(-50%);
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease;
}

.team-content .team-social li {
    display: inline-block;
    font-size: 12px;
}

.team-content .team-social li a {
    color: var(--dark-color);
}

.team-content .team-social li a:hover {
    color: var(--secondary-color);
}

.team-content .team-social li:not(:last-of-type) {
    margin-right: 10px;
}

.team-item:hover .team-item-inner .team-content {
    padding-bottom: 65px;
    transition-delay: 0;
}

.team-item:hover .team-content .team-social {
    bottom: 20px;
    visibility: visible;
    opacity: 1;
    transition-delay: 0.1s;
}

.team-details .team-thumb {
    padding-right: 40px;
}

.team-details .team-thumb img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: top center;
}

.team-appointment .section-heading p {
    margin: 0;
}

@media (max-width: 992px) {
    .team-details .team-thumb { padding-right: 10px; }
}

@media (max-width: 767px) {
    .team-details .team-thumb { padding-right: 0; }
}

/*** 18.0 - Promo Section ***/
.promo-item {
    background-color: #fff;
    padding: 30px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 3%);
}

.promo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0px 1px 40px 0px rgb(0 0 0 / 10%);
}

.promo-item .promo-head {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 15px;
    margin-bottom: 15px;
}

.promo-item .promo-head .promo-icon {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    border-radius: 3px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 30px;
    transition: all 0.2s ease-in-out;
}

.promo-item:hover .promo-icon {
    background-color: var(--secondary-color);
}

.promo-item .promo-head h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: capitalize;
    margin: 0;
}

.promo-item .promo-content .read-more {
    font-family: var(--primary-font);
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    column-gap: 5px;
    line-height: 1;
}

.promo-item .promo-content .read-more span {
    color: var(--primary-color);
    font-size: 30px;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.promo-item .promo-content .read-more span:before {
    background-color: var(--bg-primary-transparent);
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
    transition: all 0.2s ease-in-out;
    z-index: -1;
}

.promo-item .promo-content .read-more:hover span:before {
    background-color: var(--bg-secondary-transparent);
}

.promo-item .promo-content .read-more:hover span,
.promo-item .promo-content .read-more:hover {
    color: var(--secondary-color);
}

/*** 19.0 - Why Choose Us ***/
.feature-lists {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
}

.feature-lists .feature-item .feature-icon {
    background-color: var(--bg-light-color);
    border-radius: 5px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    margin-bottom: 15px;
}

.feature-lists .feature-item .feature-icon i {
    background: #089FAC;
    background: linear-gradient(to right, #089FAC 0%, #3dae2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-lists .feature-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.feature-lists .feature-item .read-more {
    font-size: 30px;
}

.feature-review {
    margin-bottom: 30px;
}

.feature-review h2 {
    font-family: var(--secondary-font);
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: bolder;
}

.feature-review h3 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 10px;
}

.feature-img img {
    width: 100%;
}

.feature-img.img-2,
.feature-img.img-2 img {
    height: 100%;
    border-top-right-radius: 30px;
    object-fit: cover;
}

.experience-item {
    background-color: var(--secondary-color);
    padding: 30px 20px;
    display: flex;
    align-items: center;
    column-gap: 20px;
    margin-top: 25px;
    border-bottom-left-radius: 30px;
}

.experience-item img {
    width: 60px;
    flex: 0 0 auto;
}

.experience-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

@media (max-width: 992px) {
    .feature-lists { margin-bottom: 40px; }
}

@media (max-width: 767px) {
    .feature-img.img-2 img, .experience-item { border-radius: 0px; }
    .experience-item { margin-bottom: 25px; }
}

/*** 20.0 - Video Section ***/
.video-section {
    background-image: url(../img/cta-img.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.video-section2 {
    background-image: url(../img/cta-img2.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    padding: 80px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.video-section .overlay {
    z-index: -2;
}

.video-section .shape-wrap {
    left: -15%;
    opacity: 0.8;
}

.video-section .section-heading h2 {
    line-height: 48px;
}

.play-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 80px;
}

.play-btn-wrap .play-btn {
    position: relative;
    z-index: 1;
}

.play-btn-wrap .play-btn:before {
    background: var(--bg-gradiant-transparent);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.5;
    content: "";
    width: 200px;
    height: 200px;
    position: absolute;
    left: 65%;
    top: 5%;
    transform: translate(-50%, -50%) rotate(20deg);
    z-index: -1;
}

.play-btn-wrap .play-btn:after {
    background-image: url(../img/arrow-img-2.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    content: "";
    width: 283px;
    height: 118px;
    position: absolute;
    right: 120px;
    bottom: -50px;
    z-index: -1;
}

@media (max-width: 992px) {
    .video-section { padding: 50px 0; }
}

@media (max-width: 767px) {
    .video-section .section-heading { text-align: center; }
    .play-btn-wrap .play-btn { z-index: inherit; }
    .play-btn-wrap { justify-content: center; padding-right: 0; }
    .video-section .shape-wrap { display: none; }
}

/*** 21.0 - Progress Section ***/
.progress-section {
    position: relative;
    z-index: 1;
}

.progress-item {
    text-align: center;
}

.progress-item .piechart {
    position: relative;
    display: inline-block;
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    font-weight: 500;
    width: 160px;
    height: 160px;
    line-height: 160px;
}

.progress-item .piechart canvas {
    position: absolute;
    top: 0;
    left: 0;
}

.progress-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.progress-content p {
    margin: 0;
}

/*** 22.0 - Faq Section ***/
.faq-section {
    position: relative;
    z-index: 1;
}

.faq-section:before {
    background: linear-gradient(135deg, #0a2e0a 0%, #1a6b3c 50%, #3dae2b 100%);
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}

.faq-content {
    padding-right: 50px;
}

.faq-accordion {
    padding-left: 40px;
    z-index: 1;
}

.faq-page .faq-accordion {
    padding-left: 0;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    outline: none;
    box-shadow: none;
}

.accordion-button {
    background-color: #fff;
    color: var(--dark-color);
    font-size: 18px;
    line-height: 28px;
    letter-spacing: -0.5px;
    font-weight: 600;
    text-transform: capitalize;
    border: 1px solid #eee;
    padding: 20px 15px;
}

.accordion-button:focus {
    border-color: #eee;
    outline: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
}

.accordion-button:not(.collapsed):after {
    background-image: inherit;
    content: "\f068";
    color: var(--primary-color);
    transform: inherit;
}

.accordion-button:after {
    background-image: inherit;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    color: var(--primary-color);
    font-weight: 600;
    transform: translateY(-50%) !important;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-item .accordion-body {
    background-color: #fff;
    padding: 20px;
}

.accordion-item .accordion-body p {
    margin: 0;
}

@media (max-width: 767px) {
    .faq-section:before { width: 100%; height: 50%; position: absolute; right: 0; top: auto; bottom: 0; }
    .faq-content { margin-bottom: 40px; }
    .faq-content, .faq-accordion { padding: 0; }
    .accordion-button { padding-right: 40px; font-size: 16px; line-height: 24px; }
}

/*** 23.0 - Pricing Section ***/
.pricing-item {
    padding: 40px 50px;
}

.pricing-wrap .col-lg-4 {
    border-left: 1px solid #ddd;
}

.pricing-wrap .col-lg-4:last-child {
    border-right: 1px solid #ddd;
}

.pricing-item i {
    background-color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 5px;
    font-size: 30px;
    margin-bottom: 20px;
}

.pricing-item h3 {
    font-size: 20px;
    font-weight: 600;
}

.pricing-item h2 {
    font-size: 48px;
    font-weight: 600;
}

.pricing-item h2 span {
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: 600;
}

.pricing-item .pricing-list {
    margin-bottom: 20px;
}

.pricing-item .pricing-list li {
    font-family: var(--primary-font);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    padding-left: 15px;
}

.pricing-item .pricing-list li:before {
    background-color: var(--primary-color);
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.pricing-item .pricing-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.pricing-item.blue .default-btn,
.pricing-item.blue i {
    background-color: var(--secondary-color);
}

@media (max-width: 992px) {
    .pricing-wrap .col-lg-4:last-child { margin-top: 15px; }
}

@media (max-width: 767px) {
    .pricing-wrap .col-lg-4:last-child { margin-top: 0; }
}

/*** 24.0 - Blog Section ***/
.grid-post {
    margin: -15px;
}

.grid-post .post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-post .post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.grid-post .post-content-wrap {
    margin: 0;
}

.post-card .post-thumb {
    position: relative;
}

.grid-post .post-card .post-thumb img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center center;
}

.post-content-wrap {
    background-color: #f5f2ec;
    border: 1px solid #e0dbd0;
    margin-left: 20px;
    margin-top: -50px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.post-content-wrap:before {
    background-image: url(../img/post-pattern.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 71px;
    height: 58px;
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all 0.2s ease-in-out;
}

.post-card:hover .post-content-wrap:before {
    visibility: visible;
    opacity: 1;
}

.post-meta {
    margin-bottom: 10px;
}

.post-meta li {
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
    text-transform: capitalize;
    color: var(--grey-color);
    display: inline-flex;
    align-items: center;
}

.post-meta li:not(:last-of-type) {
    margin-right: 10px;
}

.post-meta li i {
    color: var(--primary-color);
    font-size: 15px;
    margin-right: 5px;
}

.post-card .post-content h3 {
    font-family: var(--primary-font);
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.post-card .post-content h3 a {
    background: linear-gradient(var(--primary-color) 0%, var(--primary-color) 98%);
    background-size: 0 3px;
    background-repeat: no-repeat;
    background-position: left 100%;
    color: var(--dark-color);
}

.post-card .post-content h3 a:hover {
    background-size: 100% 3px;
}

.post-card .post-content .read-more {
    font-family: var(--primary-font);
    font-size: 16px;
    line-height: 1;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--dark-color);
    position: relative;
    padding-left: 30px;
}

.post-card .post-content .read-more:before {
    background-color: var(--primary-color);
    position: absolute;
    content: "";
    width: 25px;
    height: 3px;
    left: 0;
    top: calc(50% - 1px);
}

.post-card .post-content .read-more:hover {
    color: var(--primary-color);
}

.classic-post .post-card .post-thumb {
    min-height: 350px;
}

.classic-post .post-content-wrap {
    margin: 0;
}

.classic-post .post-card .post-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.classic-post .post-card:not(:last-of-type) {
    margin-bottom: 30px;
}

.post-category {
    background-color: var(--primary-color);
    clip-path: polygon(85% 0%, 100% 30%, 100% 100%, 0 100%, 0 0);
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: var(--primary-font);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    height: 35px;
    line-height: 37px;
    padding: 0 30px;
    cursor: pointer;
}

.post-category:hover {
    color: #fff;
}

.page-header.blog-details {
    height: 450px;
}

.page-header.blog-details:before {
    background: radial-gradient(circle, rgba(23, 23, 47, 1) 0%, rgba(8, 159, 172, 0) 100%);
}

.page-header-info .post-meta li {
    color: var(--grey-light-color);
}

.post-details .post-thumb {
    min-height: 380px;
    position: relative;
    margin-bottom: 40px;
}

.post-details .post-thumb img {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    object-fit: cover;
    object-position: center;
}

.post-details h3 {
    font-size: 24px;
    font-weight: 700;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.post-details p {
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 40px;
}

blockquote {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #eee;
    border-left: 3px solid var(--primary-color);
    font-family: var(--primary-font);
    text-transform: capitalize;
    font-size: 24px;
    line-height: 32px;
    font-weight: 500;
    color: var(--dark-color);
    display: block;
    margin: 0;
    margin-bottom: 40px;
}

blockquote i.fas {
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

blockquote span {
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--dark-color);
    display: block;
    margin-top: 10px;
}

.post-details-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    margin: 40px 0;
}

.post-details .tags li a {
    background-color: #fff;
    border: 1px solid #eee;
    margin: 0;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 50px;
    align-items: center;
    margin: 40px 0;
}

.post-navigation li:last-child {
    text-align: right;
}

.post-navigation li a {
    font-family: var(--primary-font);
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.post-navigation li a:hover {
    text-decoration: underline;
}

.post-navigation li a:hover > span {
    text-decoration: none;
}

.post-navigation li a span {
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    color: #a5a6aa;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}

.post-navigation li a span i {
    color: #a5a6aa;
    margin-right: 5px;
}

.post-navigation li:last-child a span i {
    margin-left: 5px;
    margin-right: auto;
}

.author-box {
    background-color: #fff;
    padding: 40px;
    border: 1px solid #eee;
    display: grid;
    align-items: center;
    grid-template-columns: 80px 1fr;
    grid-column-gap: 20px;
    line-height: 1;
    margin-bottom: 40px;
}

.social-icon li {
    display: inline-block;
}

.social-icon li a:hover {
    color: var(--primary-color);
}

.social-icon li:not(:last-of-type) {
    margin-right: 10px;
}

.comments-box {
    margin-bottom: 40px;
}

.comment-title {
    font-weight: 600;
    color: var(--dark-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 30px;
    line-height: 1;
}

.comment-title:before {
    background-color: var(--primary-color);
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

.comments-box .comment-inner {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 20px;
}

.comments-box .comment {
    margin-bottom: 40px;
}

.comments-box .children {
    margin-left: 50px;
    margin-top: 40px;
}

.comments-box .comment-thumb img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 5px;
}

.comments-meta h4 {
    font-size: 20px;
    font-weight: 500;
    display: block;
}

.comments-meta h4 span {
    font-family: var(--secondary-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
    display: block;
    margin-top: 5px;
}

.comment-area p {
    font-size: 17px;
    line-height: 27px;
    margin-bottom: 10px;
}

.comment-area .reply {
    font-family: var(--primary-font);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--dark-color);
}

.comment-form {
    margin-top: -15px;
}

.comment-form .form-control {
    background-color: #fff;
    height: 50px;
    border-radius: 0;
    border: 1px solid #eee;
    box-shadow: none;
    outline: none;
}

.comment-form .form-control.comment {
    height: 150px;
}

#form-messages {
    display: none;
    margin-top: 15px;
    margin-bottom: 0;
}

#form-messages.alert-danger,
#form-messages.alert-success {
    display: block;
}

/* Sidebar Widget */
.sidebar-widget {
    background-color: #fff;
    border: 1px solid #eee;
    padding: 30px;
}

.sidebar-widget:not(:last-of-type) {
    margin-bottom: 30px;
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form .form-control {
    background-color: #fff;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    height: 50px;
    border: 1px solid var(--grey-light-color);
    padding-right: 40px;
}

.sidebar-widget .search-form .search-btn {
    position: absolute;
    right: 0;
    top: 0;
    width: 50px;
    height: 100%;
    font-size: 15px;
    color: var(--dark-color);
}

.widget-title {
    display: block;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.widget-title h3 {
    font-weight: 700;
    color: var(--dark-color);
    display: inline-block;
    padding-bottom: 10px;
    position: relative;
    margin: 0;
    line-height: 1;
    font-size: 20px;
}

.widget-title h3:before {
    background-color: var(--primary-color);
    width: 50%;
    height: 4px;
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
}

.category-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.category-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.category-list li a {
    font-family: var(--primary-font);
    font-weight: 600;
    color: var(--dark-color);
}

.category-list li a:hover {
    color: var(--dark-color);
    text-decoration: underline;
}

.category-list li span {
    border: 1px solid #eee;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

.category-list li:hover span {
    background-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.thumb-post li {
    display: inline-flex;
    align-items: flex-start;
    justify-content: space-between;
}

.thumb-post li:not(:last-of-type) {
    margin-bottom: 20px;
}

.thumb-post li .thumb {
    flex-shrink: 0;
    width: 80px;
    height: 70px;
    margin: 0 15px 0 0;
    position: relative;
    display: inline-block;
    vertical-align: top;
    max-width: 100%;
    overflow: hidden;
}

.thumb-post .thumb-post-info {
    position: relative;
    display: inline-block;
    width: 100%;
    vertical-align: top;
}

.thumb-post .thumb-post-info h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 22px;
}

.thumb-post .thumb-post-info h3 a {
    color: var(--dark-color);
}

.thumb-post .thumb-post-info h3 a:hover {
    text-decoration: underline;
}

.thumb-post .thumb-post-info .date {
    font-weight: 600;
    font-size: 12px;
    font-family: var(--primary-font);
    text-transform: uppercase;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    line-height: 1;
}

.thumb-post .thumb-post-info .date i {
    color: var(--primary-color);
    margin-right: 5px;
}

.tags li {
    display: inline-block;
}

.tags li a {
    background-color: #eee;
    display: inline-block;
    font-family: var(--primary-font);
    text-transform: capitalize;
    font-size: 14px;
    color: var(--dark-color);
    padding: 3px 15px;
    margin: 0 3px 10px 0;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.tags li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.sidebar-widget.banner {
    background-image: url(../img/banner-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 3px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.sidebar-widget.banner:before {
    background: var(--bg-gradiant-transparent);
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.banner-info .logo {
    width: 70%;
    margin-bottom: 20px;
}

.banner-info h3 {
    color: #fff;
}

.banner-info h3 span {
    -webkit-text-stroke: 1px #fff;
    -webkit-text-fill-color: transparent;
}

.banner-info p {
    color: #ddd;
}

.banner-info .discount {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.banner-info .discount span {
    font-size: 48px;
    font-weight: 700;
    margin-right: 5px;
}

@media (max-width: 992px) {
    .banner-info .logo { width: 50%; }
}

.pagination-wrap li {
    display: inline-block;
    margin: 0 10px 0 0;
}

.pagination-wrap li a {
    background-color: #fff;
    border: 1px solid #eee;
    color: var(--dark-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    cursor: pointer;
}

.pagination-wrap li a:hover,
.pagination-wrap li a.active {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: #fff;
}

.page-header {
    background-image: url(../img/page-header.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

.page-header:before {
    background: linear-gradient(45deg, rgba(23, 23, 47, 1) 0%, rgba(8, 159, 172, 0) 100%);
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}

.page-header-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 15px;
}

.page-header-info h2 span {
    background: linear-gradient(to right, #089FAC 0%, #3dae2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header-info h4 {
    display: inline-block;
    position: relative;
    padding-left: 70px;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to right, #089FAC 0%, #3dae2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.page-header-info h4:before {
    background-color: var(--secondary-color);
    content: "";
    width: 60px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.page-header-info h4:after {
    background-color: var(--secondary-color);
    content: "";
    width: 2px;
    height: 100%;
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.page-header-info p {
    color: #ddd;
    font-size: 18px;
}

@media (max-width: 992px) {
    .padding { padding: 50px 0; }
    .sm-padding { padding: 15px; }
    p br { display: none; }
    span br { display: none; }
    .default-btn { padding: 0 30px; }
    .post-card .post-content h3 { font-size: 20px; line-height: 26px; }
}

@media all and (max-width: 768px) {
    .padding { padding: 50px 0; }
    .xs-padding { padding: 15px; }
    p br { display: none; }
    .page-header { height: 300px; }
    .page-header-info h2 { font-size: 24px; line-height: 36px; }
    .page-header.blog-details { height: 400px; }
    .author-box { grid-template-columns: 1fr; row-gap: 20px; }
}

@media all and (max-width: 580px) {
    #scrollup { bottom: 20px; right: 20px; }
}

/*** 25.0 - Callback Section ***/
.call-back-section {
    overflow: hidden;
    position: relative;
}

.call-back-section .container {
    position: relative;
}

.callback-men {
    position: absolute;
    left: 60px;
    bottom: -100px;
}

.callback-men:before {
    background-color: var(--primary-color);
    content: "";
    width: 500px;
    height: 500px;
    border-radius: 50%;
    position: absolute;
    left: -50px;
    top: 20px;
    z-index: -1;
}

.callback-men img {
    width: 80%;
}

.callback-form {
    background-color: var(--bg-light-color);
    padding: 40px;
}

.callback-form form {
    z-index: 2;
    position: relative;
}

.callback-form h2 {
    font-weight: 600;
    margin-bottom: 20px;
}

.callback-form .form-control {
    background-color: #fff;
    border-radius: 2px;
    height: 50px;
    border: none;
    outline: none;
    box-shadow: none;
    margin-bottom: 20px;
}

.callback-form .message .form-control {
    height: 150px;
}

/*** 26.0 - Feed Section ***/
.brand-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 20px;
}

.brand-info li {
    width: 33.33%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-info .footer-logo {
    max-width: 180px;
}

@media (max-width: 767px) {
    .brand-info .footer-logo { max-width: 200px; display: block; }
}

.brand-info li h3 {
    font-weight: 600;
    margin: 0;
}

.subscribe-form {
    position: relative;
    width: 100%;
}

.subscribe-form .mc-fields {
    position: relative;
}

.subscribe-form .form-control {
    background-color: #fff;
    width: 100%;
    height: 50px;
    border-radius: 2px;
    border: none;
    outline: none;
    box-shadow: none;
    border-radius: 5px;
    padding-right: 130px;
}

.subscribe-form .submit {
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    font-weight: 600;
    color: #fff;
    height: 50px;
    border-radius: 5px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.subscribe-form .submit:hover {
    background-color: var(--secondary-color);
}

#subscribe-result {
    display: none;
}

#subscribe-result.subs-result {
    display: block;
    border: 1px solid #ddd;
    border-radius: 3px;
    color: var(--grey-color);
    padding: 10px;
    margin-top: 15px;
}

.subscription-success { color: green; }
.subscription-error { color: #ff0000; }

.feed-carousel {
    overflow: hidden;
    margin-top: 50px;
}

.feed-item {
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.feed-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center center;
}

.feed-item .feed-overlay {
    background: var(--bg-gradiant-transparent);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.feed-item:hover .feed-overlay {
    visibility: visible;
    opacity: 1;
}

.feed-item .feed-icon {
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
    color: #fff;
    font-size: 25px;
    width: 40px;
    height: 40px;
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 992px) {
    .brand-info li { width: 50%; justify-content: flex-start; }
}

@media (max-width: 767px) {
    .brand-info { flex-direction: column; row-gap: 20px; text-align: center; }
    .brand-info li { width: 100%; display: block; }
}

/*** 27.0 - Contact Section ***/
.contact-section {
    position: relative;
    z-index: 1;
}

.contact-section .contact-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-section .contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-section .contact-details li i {
    background: var(--bg-gradiant-color);
    color: #fff;
    font-size: 25px;
    margin-right: 15px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 1px;
    flex-shrink: 0;
}

.contact-form {}

.contact-form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px;
}

.contact-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-form .form-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-form .form-field .form-control {
    background-color: #fff;
    border: 1px solid #ccc;
    height: 50px;
    border-radius: 2px;
    box-shadow: none;
    outline: none;
    width: 100%;
    padding: 0 15px;
    font-size: 14px;
    color: var(--dark-color);
    font-family: var(--secondary-font), system-ui, sans-serif;
    transition: border-color 0.2s;
}

.contact-form .form-field .form-control::placeholder {
    color: var(--grey-light-color);
}

.contact-form .form-field .form-control:focus {
    border: 1px solid var(--primary-color);
    box-shadow: 0 0 0 3px rgba(61, 174, 43, 0.1);
}

.contact-form .form-field.has-error .form-control {
    border-color: #e53e3e;
    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.08);
}

.contact-form .form-field .err-msg {
    display: none;
    font-size: 12px;
    color: #e53e3e;
    margin-top: 4px;
}

.contact-form .form-field.has-error .err-msg {
    display: block;
}

.contact-form .form-field.message .form-control {
    height: auto;
    padding: 12px 15px;
    resize: vertical;
    line-height: 1.6;
}

.contact-form-group .form-field.message,
.contact-form-group .form-field.submit-btn,
.contact-form-group .form-field.full {
    grid-column: 1 / -1;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--dark-color);
    cursor: pointer;
    font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* Form trust line */
.form-trust {
    text-align: center;
    font-size: 0.8rem;
    color: var(--grey-color);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.form-trust .dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--grey-light-color);
    display: inline-block;
}

/* Form messages */
#form-messages {
    display: none;
    margin-top: 10px;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 14px;
}

#form-messages.success {
    display: block;
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

#form-messages.error {
    display: block;
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

@media (max-width: 992px) {
    .contact-form .form-field.submit-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .contact-form-group {
        grid-template-columns: 1fr;
    }

    .contact-form-group .form-field.message,
    .contact-form-group .form-field.submit-btn,
    .contact-form-group .form-field.full {
        grid-column: auto;
    }
}

/*** 28.0 - Branches Section ***/
.branches-list h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0;
    background: var(--bg-gradiant-color);
    color: #fff;
    display: inline-block;
    padding: 3px 15px;
    margin-bottom: 20px;
}

.branches-list ul li:not(:last-of-type) {
    margin-bottom: 5px;
}

/*** 29.0 - Footer Section ***/
.footer-wrapper {
    background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 1;
}

.footer-top {
    background-color: var(--bg-dark-light);
    border-radius: 2px;
    padding: 20px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    transform: translateY(-40px);
}

.footer-top > div > h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.footer-top .subscribe-form .form-control {
    background-color: var(--bg-dark);
    color: #fff;
    border-radius: 2px;
}

.footer-top .subscribe-form .submit {
    border-radius: 2px;
    height: 40px;
    right: 5px;
}

.footer-widgets.footer-2 {
    padding: 40px 0 80px;
}

.footer-widgets .footer-logo img {
    max-width: 180px;
    margin-bottom: 15px;
}

.social-links {
    margin-top: 35px;
}

.social-links a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    background-color: #3dae2b;
    color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    font-size: 13px;
    transition: background-color 0.3s ease;
}

.social-links a:hover {
    background-color: #2e8a20;
    color: var(--white-color);
}

.footer-widgets {
    padding: 80px 0;
}

.footer-widget {
    color: var(--grey-light-color);
}

.footer-widget .widget-title {
    font-family: var(--primary-font);
    font-size: 20px;
    line-height: 28px;
    font-weight: bold;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-widget li {
    display: block;
}

.footer-widget li:not(:last-of-type) {
    margin-bottom: 15px;
}

.footer-widget li a {
    display: inline-block;
    color: var(--grey-light-color);
}

.footer-widget li a:hover {
    color: var(--primary-color);
}

.footer-widget .contact-btn {
    background-color: var(--bg-dark-light);
    display: block;
    color: var(--grey-light-color);
    width: 120px;
    height: 120px;
    line-height: 120px;
    text-align: center;
    border-radius: 50%;
}

.footer-widget .contact-btn:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.footer-bottom {
    background-color: var(--bg-dark-light);
    padding: 30px;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 30px;
    row-gap: 20px;
    color: var(--white-color);
}

.copyright-text,
.copyright-text a,
.footer-bottom ul li a {
    color: var(--grey-color);
}

.copyright-text a:hover,
.footer-bottom ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom ul li {
    display: inline-block;
    position: relative;
}

.footer-bottom ul li:not(:last-of-type) {
    padding-right: 30px;
}

.footer-bottom ul li:not(:last-of-type):after {
    color: var(--grey-color);
    position: relative;
    content: "/";
    font-size: 16px;
    right: -15px;
}

/* Scroll Up */
#scrollup {
    width: 45px;
    height: 45px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    overflow: hidden;
    z-index: 999;
}

.scroll-to-top {
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: var(--primary-color);
    font-size: 20px;
    padding: 0;
    line-height: 40px;
    color: #fff;
    border-radius: 50%;
    outline: none;
    text-decoration: none;
    transform: translateY(150%);
    transition: all 0.3s ease-in-out;
}

#scrollup.show {
    opacity: 1;
}

#scrollup.show .scroll-to-top {
    transform: translateY(0);
    transition: all 0.3s ease-in-out;
}

.scroll-to-top:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 992px) {
    .footer-widgets { padding: 100px 0; }
    .footer-bottom { padding: 35px; flex-direction: column; text-align: center; }
    .footer-top { transform: translateY(0); grid-template-columns: 1fr; grid-gap: 15px; margin-top: 20px; }
    .footer-top > div > h3 { font-size: 18px; line-height: 1.1; }
}

@media (max-width: 767px) {
    .footer-widgets { padding: 50px 0; }
    .footer-top { padding: 20px; transform: translateY(0); }
}

/* Common Responsive CSS */
@media (max-width: 992px) {
    .padding { padding: 50px 0; }
    .padding-bottom { padding-bottom: 50px; }
    .padding-top { padding-top: 50px; }
    .section-heading h2 br { display: none; }
}

@media (max-width: 767px) {
    p br { display: none; }
    .section-heading h2 br { display: none; }
    .section-heading h2 { font-size: 32px; line-height: 42px; }
}
        .plan-hero { background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%); padding: 70px 0 55px; }
        .plan-hero h1 { color: #fff; font-size: clamp(32px, 5vw, 52px); font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
        .plan-hero h1 span { color: #3dae2b; }
        .plan-hero p { color: rgba(255,255,255,0.82); font-size: 17px; max-width: 620px; margin-bottom: 28px; line-height: 1.7; }
        .plan-hero .bc-wrap { margin-top: 14px; }
        .plan-hero .bc-wrap a, .plan-hero .bc-wrap span { color: rgba(255,255,255,0.6); font-size: 13px; }
        .plan-hero .bc-wrap a:hover { color: #3dae2b; }
        .plan-hero .bc-wrap .sep { margin: 0 8px; }
        .hero-meta { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 14px; }
        .hero-meta span { margin: 0 8px; }

        /* Section styles */
        .plan-section { padding: 75px 0; }
        .plan-section.bg-beige { background: #f5f2ec; }
        .plan-section.bg-navy { background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%); }
        .section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #3dae2b; margin-bottom: 8px; display: block; }
        .plan-section.bg-navy .section-eyebrow { color: #3dae2b; }
        .plan-section.bg-navy h2, .plan-section.bg-navy p { color: #fff; }
        .plan-section.bg-navy p { color: rgba(255,255,255,0.75); }

        /* Checklist */
        .check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 32px; }
        .check-item { display: flex; gap: 14px; align-items: flex-start; background: #f5f2ec; border: 1px solid #e0dbd0; border-radius: 10px; padding: 18px 20px; transition: transform .25s, box-shadow .25s; }
        .check-item:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
        .check-item i { color: #3dae2b; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
        .check-item strong { display: block; color: #003764; font-size: 15px; margin-bottom: 3px; }
        .check-item span { color: #555; font-size: 14px; line-height: 1.6; }

        /* Coverage boxes */
        .coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
        @media(max-width:767px){ .coverage-grid { grid-template-columns: 1fr; } }
        .coverage-box { background: #fff; border: 1px solid #e0dbd0; border-radius: 12px; padding: 28px; }
        .coverage-box h4 { font-size: 13px; font-weight: 700; color: #003764; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
        .coverage-box h4::before { content: ""; width: 18px; height: 2px; background: #3dae2b; display: inline-block; }
        .coverage-box ul { list-style: none; padding: 0; }
        .coverage-box li { font-size: 14px; color: #444; padding: 6px 0; border-bottom: 1px solid #f0ede8; display: flex; gap: 8px; align-items: flex-start; }
        .coverage-box li:last-child { border-bottom: none; }
        .coverage-box li::before { content: "✓"; color: #3dae2b; font-weight: 700; flex-shrink: 0; }

        /* Disclaimer */
        .disclaimer-box { background: #f0f7f0; border: 1px solid #b8ddb8; border-left: 4px solid #3dae2b; border-radius: 8px; padding: 18px 22px; display: flex; gap: 14px; align-items: flex-start; margin-top: 32px; }
        .disclaimer-box i { color: #3dae2b; font-size: 20px; flex-shrink: 0; margin-top: 2px; }
        .disclaimer-box p { color: #2a5a2a; font-size: 14px; line-height: 1.7; margin: 0; }
        .disclaimer-box a { color: #003764; font-weight: 600; }

        /* Highlights strip */
        .highlights-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; margin: 32px 0; }
        .highlight-tile { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 20px 16px; text-align: center; transition: background .2s, transform .2s; }
        .highlight-tile:hover { background: rgba(255,255,255,0.12); transform: translateY(-2px); }
        .highlight-tile h4 { color: #3dae2b; font-size: 14px; font-weight: 700; margin-bottom: 6px; }
        .highlight-tile p { font-size: 12px; color: rgba(255,255,255,0.65); line-height: 1.5; }

        /* How it works */
        .how-panel { background: rgba(0,0,0,0.25); border-radius: 14px; padding: 36px; margin-top: 40px; }
        .how-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; margin-top: 24px; }
        .how-step { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 22px; }
        .how-num { width: 34px; height: 34px; border-radius: 50%; background: #3dae2b; color: #fff; font-weight: 800; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
        .how-step h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 6px; }
        .how-step p { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; }

        /* Apart cards */
        .apart-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 22px; margin-top: 36px; }
        .apart-card { background: #fff; border: 1px solid #e0dbd0; border-radius: 14px; padding: 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
        .apart-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: #b8ddb8; }
        .apart-icon { width: 48px; height: 48px; border-radius: 10px; background: #f0f7f0; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
        .apart-icon i { color: #003764; font-size: 22px; }
        .apart-card h3 { font-size: 16px; font-weight: 700; color: #111521; margin-bottom: 8px; }
        .apart-card p { font-size: 14px; color: #555; line-height: 1.7; }

        /* Advocacy band */
        .advocacy-band { background: #f5f2ec; border: 1px solid #e0dbd0; border-radius: 14px; padding: 36px 40px; display: flex; justify-content: space-between; align-items: center; gap: 32px; margin-top: 40px; flex-wrap: wrap; }
        .advocacy-band h4 { font-size: 18px; font-weight: 700; color: #003764; margin-bottom: 10px; }
        .advocacy-band > div > p { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 14px; }
        .advocacy-list { list-style: none; padding: 0; }
        .advocacy-list li { font-size: 14px; color: #444; display: flex; gap: 8px; align-items: flex-start; margin-bottom: 6px; }
        .advocacy-list li::before { content: "→"; color: #3dae2b; font-weight: 700; flex-shrink: 0; }

        /* Fit grid */
        .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
        @media(max-width:767px){ .fit-grid { grid-template-columns: 1fr; } }
        .fit-box { border-radius: 12px; padding: 28px; }
        .fit-yes { background: #f0f7f0; border: 1px solid #b8ddb8; }
        .fit-no { background: #fef3f2; border: 1px solid #fca5a5; }
        .fit-box h3 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
        .fit-yes h3 { color: #1a6b3c; }
        .fit-no h3 { color: #991b1b; }
        .fit-box ul { list-style: none; padding: 0; }
        .fit-box li { font-size: 14px; display: flex; gap: 8px; align-items: flex-start; margin-bottom: 8px; line-height: 1.55; }
        .fit-yes li { color: #1a6b3c; }
        .fit-yes li::before { content: "✓"; font-weight: 700; flex-shrink: 0; }
        .fit-no li { color: #991b1b; }
        .fit-no li::before { content: "✗"; font-weight: 700; flex-shrink: 0; }

        /* FAQ */
        .faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 32px auto 0; }
        .faq-item { background: #fff; border: 1px solid #e0dbd0; border-radius: 12px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
        .faq-item:hover { border-color: #b8ddb8; }
        .faq-item summary { padding: 20px 24px; font-size: 15px; font-weight: 700; color: #111521; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; list-style: none; line-height: 1.4; }
        .faq-item summary::-webkit-details-marker { display: none; }
        .faq-item summary::after { content: "+"; font-size: 22px; color: #3dae2b; font-weight: 400; transition: transform .25s; flex-shrink: 0; }
        .faq-item[open] summary::after { transform: rotate(45deg); }
        .faq-item summary:hover { color: #003764; }
        .faq-answer { padding: 0 24px 22px; font-size: 14px; color: #555; line-height: 1.75; }

        /* CTA */
        .cta-panel { background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%); border-radius: 16px; padding: 56px 48px; text-align: center; }
        .cta-panel h2 { color: #fff; font-size: clamp(24px, 4vw, 36px); font-weight: 700; margin-bottom: 16px; }
        .cta-panel h2 em { color: #3dae2b; font-style: normal; }
        .cta-panel p { color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 28px; font-size: 16px; }
        .cta-note { font-size: 12px; color: rgba(255,255,255,0.4); margin-top: 14px; }

        /* Next steps */
        .next-steps { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; text-align: center; margin-top: 40px; }
        .next-step { max-width: 200px; }
        .ns-num { width: 42px; height: 42px; border-radius: 50%; background: #003764; color: #fff; font-weight: 800; font-size: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
        .next-step h4 { font-size: 15px; font-weight: 700; color: #111521; margin-bottom: 6px; }
        .next-step p { font-size: 13px; color: #666; line-height: 1.6; }

        /* Placeholder image */
        .img-placeholder { background: #e0dbd0; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #999; font-size: 14px; font-weight: 600; }

        @media(max-width:767px) {
            .advocacy-band { flex-direction: column; }
            .plan-section { padding: 50px 0; }
        }

/*** Coverage Disclaimer Box ***/
.coverage-disclaimer {
    background-color: rgba(0, 55, 100, 0.08);
    border: 1px solid rgba(0, 55, 100, 0.2);
    border-left: 4px solid #3dae2b;
    border-radius: 10px;
    padding: 18px 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin: 24px 0;
}
.coverage-disclaimer i {
    color: #3dae2b;
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}
.coverage-disclaimer p {
    color: #003764;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}
.coverage-disclaimer a {
    color: #003764;
    font-weight: 600;
    text-decoration: none;
}
.coverage-disclaimer a:hover {
    text-decoration: underline;
}

/*** Section Divider ***/
.section-divider {
    width: 80%;
    margin: 0 auto;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}


/*** White card boxes override ***/
.white-cards .post-content-wrap {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

/*** Clean FAQ Accordion ***/
.faq-clean .card {
    background: #fff;
    border: 1px solid #e0dbd0;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: none;
}
.faq-clean .card-header {
    background: #fff;
    border: none;
    padding: 0;
}
.faq-clean .card-header .btn-link {
    width: 100%;
    text-align: left;
    padding: 18px 24px;
    font-size: 17px;
    font-weight: 700;
    color: #111521;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    background: none;
    box-shadow: none;
    font-family: var(--primary-font);
}
.faq-clean .card-header .btn-link::after {
    content: "+";
    font-size: 22px;
    color: #3dae2b;
    font-weight: 400;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.faq-clean .card-header .btn-link:not(.collapsed)::after {
    transform: rotate(45deg);
}
.faq-clean .card-header .btn-link:hover {
    color: #003764;
}
.faq-clean .card-body {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    border-top: 1px solid #f0ede8;
}

/*** Rounded Corners - Global ***/
.about-thumb img {
    border-radius: 12px;
}
.post-card .post-thumb img {
    border-radius: 12px 12px 0 0;
}
.post-content-wrap {
    border-radius: 0 0 12px 12px;
}
.post-card {
    border-radius: 12px;
    overflow: hidden;
}
.service-card {
    border-radius: 12px !important;
}
.contact-form {
    border-radius: 12px;
}
.testi-item {
    border-radius: 12px;
}
.faq-clean .card {
    border-radius: 12px !important;
}

/*** Mobile Hero / Slider Fixes ***/
@media (max-width: 767px) {
    /* Slider content padding and layout */
    .slider-content {
        margin-left: 0;
        padding: 28px 20px;
    }
    .slider-content-wrap {
        height: auto;
        min-height: 420px;
        padding: 40px 0;
    }

    /* Font sizes */
    .slider-caption.big {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 14px;
    }
    .slider-caption.medium {
        font-size: 14px;
        margin-bottom: 8px;
    }
    .slider-caption.small {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 18px;
    }

    /* Buttons — stack vertically with gap */
    .slider-btn {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .slider-btn .default-btn {
        width: auto;
        display: inline-block;
    }

    /* Hero section */
    .hero-section {
        height: auto;
        min-height: 420px;
        padding: 50px 0;
    }
    .hero-content h2 {
        font-size: 26px;
        line-height: 32px;
        margin-bottom: 14px;
    }
    .hero-content .btn-holder {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}



/*** Dental Tier Cards ***/
.tier-card {
    background: #fff;
    border: 1px solid #d0e8d0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.tier-card-header {
    background: linear-gradient(135deg, #001f3f 0%, #003764 50%, #1a6b3c 100%);
    padding: 24px 28px;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.tier-card-body {
    padding: 24px 28px;
    flex: 1;
}

/*** OnDemand Form Section Overrides ***/
.ondemand-form-section .sub-heading {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: none !important;
}
.ondemand-form-section .icon-box {
    background: #003764 !important;
    border: 1px solid #003764 !important;
}
.ondemand-form-section .form-topper {
    background: #003764 !important;
}

/*** OnDemand Logo Override ***/
.ondemand-header .navigation-inner .site-logo {
    max-width: 320px;
}
.ondemand-header .navigation-inner .site-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
}

/*** Tablet Nav Fix - show burger on tablet ***/
@media (max-width: 1200px) {
    .navigation-menu {
        display: none !important;
    }
    .mobile-menu-icon {
        display: block !important;
    }
    .header-right .d-none.d-lg-block {
        display: none !important;
    }
}

@media (min-width: 1201px) {
    .navigation-menu {
        display: flex !important;
    }
    .mobile-menu-icon {
        display: none !important;
    }
    .header-right .d-none.d-lg-block {
        display: block !important;
    }
}

/*** Tablet Nav Fix - show burger on tablet ***/
@media (max-width: 1200px) {
    .navigation-menu {
        display: none !important;
    }
    .mobile-menu-icon {
        display: block !important;
    }
    .header-right .d-none.d-lg-block {
        display: none !important;
    }
}

@media (min-width: 1201px) {
    .navigation-menu {
        display: flex !important;
    }
    .mobile-menu-icon {
        display: none !important;
    }
    .header-right .d-none.d-lg-block {
        display: block !important;
    }
}

/*** Service card hover — white text ***/
.service-card:hover .service-content p {
    color: #3dae2b !important;
}
.service-card:hover .service-head h3 {
    color: #3dae2b !important;
}

/*** Additional Benefits card hover — white text ***/
.service-card:hover .service-content ul li {
    color: #3dae2b !important;
}
.service-card:hover .service-content ul li i {
    color: #3dae2b !important;
}

/*** Equal height service cards ***/
.service-section .row {
    display: flex;
    flex-wrap: wrap;
}
.service-section .col-lg-4 {
    display: flex;
}
.service-section .service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.service-section .service-card .service-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-section .service-card .service-content .read-more {
    margin-top: auto;
}

/*** Equal height testimonial carousel cards ***/
.testimonial-card .swiper-wrapper {
    align-items: stretch;
}
.testimonial-card .swiper-slide {
    display: flex;
    height: auto;
}
.testimonial-card .testi-item {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.testimonial-card .testi-item p {
    flex: 1;
}

/*** Fix carousel card topper bleeding on mobile ***/
.testi-item {
    padding: 0 !important;
    overflow: hidden;
}
.testi-item > div[style*="border-radius:10px 10px 0 0"] {
    margin: 0 !important;
    border-radius: 10px 10px 0 0 !important;
}
.testi-item > p,
.testi-item > div + p {
    padding: 24px 24px 0 24px;
}















/*** Equal height for Freedom/Family/Guaranteed Issue cards ***/
.grid-post {
    display: flex;
    flex-wrap: wrap;
}
.grid-post > [class*="col-"] {
    display: flex;
}
.grid-post .post-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.grid-post .post-thumb {
    flex-shrink: 0;
}
.grid-post .post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}
.grid-post .post-content-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/*** Mobile topbar fixes ***/
@media (max-width: 767px) {
    .topbar-social {
        display: none !important;
    }
    .topbar-left {
        display: none !important;
    }
    .topbar-wrapper .topbar-inner {
        justify-content: flex-end !important;
        column-gap: 6px !important;
    }
    .topbar-wrapper .topbar-left {
        display: none !important;
    }
    .topbar-wrapper .topbar-right {
        width: 100% !important;
    }
    .topbar-wrapper .topbar-right ul {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        column-gap: 6px !important;
        gap: 6px !important;
    }
    .topbar-right ul li a {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
}

/*** Larger topbar buttons on mobile ***/
@media (max-width: 767px) {
    .topbar-right ul li a[href="file_claim"],
    .topbar-right ul li a[onclick*="openPortalModal"] {
        padding: 10px 18px !important;
        font-size: 14px !important;
        border-radius: 6px !important;
    }
}

/*** Hide phone number in topbar on mobile ***/
@media (max-width: 767px) {
    .topbar-right ul li:first-child {
        display: none !important;
    }
}
