/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Utility
# Cards
# Common
# Form
# Navigations
# Animations
# Mobile Nav
# Search Popup
# Page Header
# Google Map
# Client Carousel
--------------------------------------------------------------*/

:root {
    --modins-font: "Kumbh Sans", sans-serif;
    --modins-heading-font: "Kumbh Sans", sans-serif;
    --modins-special-font: "Kumbh Sans", sans-serif;
    --modins-text: #82828a;
    --modins-text-rgb: 130, 130, 138;
    --modins-text-dark: #a0a0c0;
    --modins-text-dark-rgb: 160, 160, 192;
    --modins-text-gray: #89868d;
    --modins-text-gray-rgb: 137, 134, 141;
    --modins-base: #C41E28;
    --modins-base-rgb: 0, 205, 229;
    --modins-primary: #2b2b5e;
    --modins-primary-rgb: 43, 43, 94;
    --modins-gray: #f4f3f8;
    --modins-gray-rgb: 244, 243, 248;
    --modins-white: #fff;
    --modins-white-rgb: 255, 255, 255;
    --modins-black: #1c1a1d;
    --modins-black-rgb: 28, 26, 29;
    --modins-black2: #141215;
    --modins-black2-rgb: 20, 18, 21;
    --modins-black3: #000;
    --modins-black3-rgb: 0, 0, 0;
    --modins-border-color: #e0ddea;
    --modins-border-color-rgb: 224, 221, 234;
    --modins-letter-space: 0.1em;
    --modins-letter-space-xl: 0.2em;
}

/*--------------------------------------------------------------
# Utility
--------------------------------------------------------------*/

.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;
}

.mt-80 {
    margin-top: 80px;
}

.mt-120 {
    margin-top: 120px;
}

.mt--60 {
    margin-top: -60px;
}

.mt--120 {
    margin-top: -120px;
}

.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;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-120 {
    margin-bottom: 120px;
}

.mb--60 {
    margin-bottom: -60px;
}

.mb--120 {
    margin-bottom: -120px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pl-5 {
    padding-left: 5px;
}

.pl-10 {
    padding-left: 10px;
}

.pl-15 {
    padding-left: 15px;
}

.pl-20 {
    padding-left: 20px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-5 {
    padding-right: 5px;
}

.pr-10 {
    padding-right: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.pr-20 {
    padding-right: 20px;
}

.pr-30 {
    padding-right: 30px;
}

/*--------------------------------------------------------------
# Common
--------------------------------------------------------------*/

body {
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    color: var(--modins-text, #82828a);
    font-size: 16px;
    line-height: 2.125;
    font-weight: 500;
}

body.locked {
    overflow: hidden;
}

a {
    color: var(--modins-base, #C41E28);
    transition: all 400ms ease;
}

a,
a:hover,
a:focus,
a:visited {
    text-decoration: none;
}

::placeholder {
    color: inherit;
    opacity: 1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--modins-heading-font, "Cormorant", serif);
    color: var(--modins-black, #1c1a1d);
    font-weight: bold;
    color: #c41e28;
}

@media (max-width: 575px) {
    h1 br,
    h2 br,
    h3 br,
    h4 br,
    h5 br,
    h6 br {
        display: none;
    }
}

@media (max-width: 575px) {
    p br {
        display: none;
    }
}

::placeholder {
    color: inherit;
    opacity: 1;
}

.background-base {
    background-color: var(--modins-base, #C41E28);
}

.background-gray {
    background-color: var(--modins-gray, #f4f3f8);
}

.background-black {
    background-color: var(--modins-black, #1c1a1d);
}

.background-black-2 {
    background-color: var(--modins-black2, #141215);
}

.footer-bg {
    background-color: var(--modins-primary, #2b2b5e);
}

.modins-text-dark {
    color: var(--modins-text-dark, #a0a0c0);
}

.page-wrapper {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    overflow: hidden;
}

.container-fluid,
.container {
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

.row {
    --bs-gutter-x: 30px;
}

.gutter-y-10 {
    --bs-gutter-y: 10px;
}

.gutter-y-15 {
    --bs-gutter-y: 15px;
}

.gutter-y-20 {
    --bs-gutter-y: 20px;
}

.gutter-y-30 {
    --bs-gutter-y: 30px;
}

.gutter-y-40 {
    --bs-gutter-y: 40px;
}

.gutter-y-60 {
    --bs-gutter-y: 60px;
}

.modins-btn {
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--modins-base, #C41E28);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    padding: 10px 40px;
    transition: 500ms;
    position: relative;
    z-index: 1;
    background-color: var(--modins-base, #C41E28);
    color: #fff;
    overflow: hidden;
}

.modins-btn:hover {
    color: var(--modins-base, #C41E28);
    background-color: #fff;
}

.modins-btn em {
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: var(--modins-primary, #2b2b5e);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.modins-btn:hover {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
}

.modins-btn:hover em {
    width: 500px;
    height: 500px;
    display: inline-block;
}

.tabs-box .tabs-content .tab:not(.active-tab) {
    display: none;
}

.bootstrap-select .dropdown-menu {
    padding-top: 0;
    padding-bottom: 0;
    border-radius: 0;
}

.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
    background-color: var(--modins-base, #C41E28);
}

.tns-outer .tns-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.tns-outer .tns-controls button {
    width: 45px;
    height: 45px;
    border: 2px solid #f4f4f4;
    outline: none;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-text, #82828a);
    border-radius: 50%;
    margin-left: 5px;
    margin-right: 5px;
}

.block-title {
    margin-top: -8px;
    margin-bottom: 50px;
}

.block-title__decor {
    width: 21px;
    height: 14px;
    background-image: url(../images/shapes/leaf-1-1.png);
    background-repeat: no-repeat;
    background-position: top center;
    display: inline-block;
    line-height: 1;
    margin-bottom: -5px;
    position: relative;
    top: -7px;
}

.block-title p {
    margin: 0;
    color: var(--modins-text, #82828a);
    font-size: 16px;
    line-height: 1;
    margin-bottom: 7px;
}

@media (min-width: 768px) {
    .block-title p {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .block-title p {
        font-size: 20px;
    }
}

.block-title h3 {
    margin: 0;
    font-size: 35px;
    color: var(--modins-black, #1c1a1d);
    font-family: var(--modins-special-font, "Alex Brush", cursive);
}

@media (min-width: 768px) {
    .block-title h3 {
        font-size: 42px;
    }
}

@media (min-width: 992px) {
    .block-title h3 {
        font-size: 50px;
    }
}

.ul-list-one {
    margin-bottom: 0;
}

.ul-list-one li {
    position: relative;
    padding-left: 45px;
    font-size: 16px;
    font-weight: 500;
    color: var(--modins-black, #1c1a1d);
}

@media (min-width: 481px) {
    .ul-list-one li {
        font-size: 20px;
    }
}

.ul-list-one li::before {
    content: "\e907";
    color: var(--modins-base, #C41E28);
    font-size: 26px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "azino-icon";
}

.preloader {
    position: fixed;
    background-color: var(--modins-black, #1c1a1d);
    background-position: center center;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9991;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    text-align: center;
}

.preloader__image {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: flipInY;
    animation-name: flipInY;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 360px auto;
    width: 100%;
    height: 100%;
}

/* scroll to top */

.scroll-to-top {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: var(--modins-base, #C41E28);
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top i {
    color: #ffffff;
    font-size: 18px;
    line-height: 45px;
}

.scroll-to-top:hover {
    background-color: var(--modins-black, #1c1a1d);
}

.scroll-to-top:hover i {
    color: #fff;
}

/* post paginations */

.post-pagination {
    margin-bottom: 0;
    margin-top: 0px;
}

@media (min-width: 992px) {
    .post-pagination {
        margin-top: 0px;
    }
}

.post-pagination a {
    display: flex;
    width: 45px;
    height: 45px;
    background-color: #eff2f6;
    align-items: center;
    justify-content: center;
    color: var(--modins-text, #82828a);
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    transition: 500ms ease;
}

@media (min-width: 992px) {
    .post-pagination a {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }
}

.post-pagination a:hover {
    background-color: var(--modins-base, #C41E28);
    color: #fff;
}

.post-pagination li:first-child a {
    background-color: var(--modins-base, #C41E28);
    color: #fff;
}

.post-pagination li:last-child a {
    background-color: var(--modins-black, #1c1a1d);
    color: #fff;
}

.post-pagination li+li {
    margin-left: 10px;
}

.modins-owl__carousel--with-shadow .owl-stage-outer {
    overflow: visible;
}

.modins-owl__carousel--with-shadow .owl-item {
    opacity: 0;
    visibility: hidden;
    transition: opacity 500ms ease, visibility 500ms ease;
}

.modins-owl__carousel--with-shadow .owl-item.active {
    opacity: 1;
    visibility: visible;
}

.modins-owl__carousel--basic-nav .owl-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.modins-owl__carousel--basic-nav .owl-nav button span {
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    background-color: var(--modins-gray, #f4f3f8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-text, #82828a);
    border-radius: 50%;
    font-size: 14px;
    color: var(--modins-text, #82828a);
    transition: all 500ms ease;
}

.modins-owl__carousel--basic-nav .owl-nav button span:hover {
    background-color: var(--modins-black, #1c1a1d);
    color: var(--modins-white, #fff);
}

.modins-owl__carousel--basic-nav .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 60px;
}

.modins-owl__carousel--basic-nav .owl-dots .owl-dot span {
    background-color: var(--modins-black, #1c1a1d);
    border: 2px solid var(--modins-white, #fff);
    box-shadow: 0 0 1px rgba(var(--modins-black-rgb, 28, 26, 29), 1);
    margin: 0;
}

.modins-owl__carousel--basic-nav .owl-dots .owl-dot:hover span,
.modins-owl__carousel--basic-nav .owl-dots .owl-dot.active span {
    background-color: var(--modins-black, #1c1a1d);
    border: 2px solid var(--modins-black, #1c1a1d);
    box-shadow: 0 0 1px rgba(var(--modins-black-rgb, 28, 26, 29), 1);
}

.modins-owl__carousel--basic-nav .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.sec-title {
    margin-bottom: 40px;
}

.sec-title__tagline {
    margin: 0;
    color: var(--modins-text, #82828a);
    line-height: 1.2em;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    letter-spacing: 0.1rem;
}

.sec-title__tagline::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 110%;
    width: 17px;
    height: 3px;
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 1.5px;
    background-color: var(--modins-base);
}

.sec-title__title {
    margin: 0;
    font-size: 35px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: bold;
    line-height: 1.2em;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .sec-title__title {
        font-size: 45px;
    }
}

/*--------------------------------------------------------------
# Cards
--------------------------------------------------------------*/

.video-one {
    position: relative;
    background-color: var(--modins-black, #1c1a1d);
    padding-top: 230px;
    padding-bottom: 110px;
    margin-top: -120px;
}

.video-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modins-black, #1c1a1d);
    background-size: cover;
    background-position: center center;
}

.video-one .container {
    position: relative;
}

.video-one__title {
    margin: 0;
    color: var(--modins-white, #fff);
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .video-one__title {
        font-size: 50px;
    }
}

@media (min-width: 992px) {
    .video-one__title {
        font-size: 60px;
        margin-bottom: 0;
    }
}

.video-one__btn a {
    background-color: var(--modins-white, #fff);
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 25px;
    color: var(--modins-primary, #2b2b5e);
    position: relative;
}

.video-one__btn a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(2);
    z-index: -1;
    background-color: rgba(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.team-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.team-one .sec-title {
    text-align: center;
}

@media (min-width: 992px) {
    .team-one__carousel .owl-nav {
        display: none;
    }
}

.team-card {
    position: relative;
}

.team-card:hover .team-card__bg {
    border-color: var(--modins-primary, #2b2b5e);
}

.team-card__image {
    position: relative;
    padding-right: 50px;
}

.team-card__image img {
    position: relative;
    width: 100%;
}

.team-card__hover {
    position: absolute;
    right: 30px;
    bottom: 0;
    z-index: 1;
}

.team-card__email {
    background-color: var(--modins-base, #C41E28);
    position: relative;
}

.team-card__email>a {
    width: 50px;
    height: 50px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-white, #fff);
    transition: all 500ms ease;
}

.team-card__email>a:hover {
    background-color: var(--modins-black, #1c1a1d);
    color: var(--modins-white, #fff);
}

.team-card__bg {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 250px;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-repeat: no-repeat;
    background-position: top center;
    border-right: 2px solid var(--modins-border-color, #e0ddea);
    border-top: 2px solid var(--modins-border-color, #e0ddea);
    z-index: -1;
    transition: 0.3s;
}

.team-card__social {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
    position: relative;
    cursor: pointer;
    transition: all 500ms ease;
}

.team-card__social:hover {
    background-color: var(--modins-base, #C41E28);
}

.team-card__social:hover>i {
    color: var(--modins-white, #fff);
}

.team-card__social>i {
    width: 50px;
    height: 50px;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-white, #fff);
    transition: all 500ms ease;
}

.team-card__social__list {
    position: absolute;
    bottom: 100%;
    background-color: var(--modins-base, #C41E28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0;
    opacity: 0;
    z-index: -1;
    transition: 500ms ease;
    transform: translateY(50px);
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
}

.team-card__social__list a {
    color: var(--modins-white, #fff);
    font-size: 14px;
    transition: all 500ms ease;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
}

.team-card__social__list a:hover {
    color: var(--modins-primary, #2b2b5e);
}

.team-card__social:hover .team-card__social__list {
    opacity: 1;
    transform: translateY(0%);
}

.team-card__content {
    padding: 30px 40px;
}

.team-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 24px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: bold;
}

.team-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.team-card__title a:hover {
    background-size: 100% 1px;
}

.team-card__title a:hover {
    color: var(--modins-base, #C41E28);
}

.team-card__designation {
    line-height: 24px;
    margin: 0;
    font-size: 14px;
    color: var(--modins-text, #82828a);
}

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

@media (max-width: 767px) {
    .team-details {
        padding: 80px 0 0;
        padding-top: 60px;
    }
}

.team-details__inner {
    border-bottom: 1px solid var(--modins-border-color, #e0ddea);
    padding-bottom: 100px;
}

.team-details__image {
    display: inline-block;
    position: relative;
}

.team-details__image img {
    max-width: 100%;
}

@media (min-width: 992px) {
    .team-details__content {
        padding-left: 70px;
    }
}

.team-details__icon {
    position: absolute;
    left: 40px;
    bottom: 40px;
    background-color: var(--modins-base, #C41E28);
    border: 20px solid var(--modins-white, #fff);
    width: 220px;
    padding: 30px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

@media (min-width: 992px) {
    .team-details__icon {
        left: -96px;
    }
}

.team-details__icon i {
    font-size: 60px;
    color: var(--modins-white, #fff);
}

.team-details__icon__text {
    margin: 0;
    font-size: 18px;
    color: var(--modins-white, #fff);
    text-transform: uppercase;
    max-width: 104px;
    font-weight: bold;
    margin-bottom: -5px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .team-details__icon__text {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .team-details__icon__text {
        font-size: 24px;
    }
}

.team-details__title {
    text-transform: uppercase;
    margin: 0;
    font-weight: bold;
    font-size: 30px;
    line-height: 1;
    margin-top: -7px;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .team-details__title {
        font-size: 35px;
    }
}

@media (min-width: 992px) {
    .team-details__title {
        font-size: 40px;
    }
}

.team-details__designation {
    margin: 0;
    font-size: 16px;
    margin-bottom: 20px;
}

.team-details__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
}

.team-details__highlight {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--modins-base, #C41E28);
    font-size: 20px;
    font-family: var(--modins-heading-font, "Cormorant", serif);
    line-height: 1.3em;
    margin-top: 35px;
    margin-bottom: 30px;
}

.team-details__list {
    margin-bottom: 0;
}

.team-details__list li {
    position: relative;
    font-size: 16px;
    line-height: 2.25em;
    padding-left: 27px;
    color: var(--modins-black, #1c1a1d);
}

.team-details__list li>i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--modins-base, #C41E28);
}

.team-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.team-details__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--modins-gray, #f4f3f8);
    font-size: 14px;
    color: var(--modins-black, #1c1a1d);
    transition: all 500ms ease;
    border-radius: 50%;
}

.team-details__social a:hover {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.team-skills-one {
    padding: 100px 0;
}

@media (max-width: 767px) {
    .team-skills-one {
        padding: 60px 0;
    }
}

.team-skills-one__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: bold;
    color: var(--modins-black, #1c1a1d);
    line-height: 1.2em;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .team-skills-one__title {
        font-size: 30px;
    }
}

@media (min-width: 768px) {
    .team-skills-one__title {
        font-size: 36px;
        margin-bottom: 20px;
    }
}

.team-skills-one__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    max-width: 500px;
    width: 100%;
}

.team-skills-one__progress+.team-skills-one__progress {
    margin-top: 17px;
}

.team-skills-one__progress__title {
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.team-skills-one__progress__bar {
    width: 100%;
    height: 17px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.team-skills-one__progress__inner {
    position: absolute;
    height: calc(100% - 6px);
    left: 4px;
    top: 3px;
    background-color: var(--modins-base, #C41E28);
    transition: all 700ms linear;
    width: 0px;
}

.team-skills-one__progress__number {
    position: absolute;
    bottom: calc(100% + 5px);
    right: 0;
    font-size: 14px;
    font-weight: 400;
}

.team-form-one {
    position: relative;
    padding: 120px 0;
}

@media (max-width: 767px) {
    .team-form-one {
        padding: 80px 0;
    }
}

.team-form-one__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    opacity: 0.8;
    mix-blend-mode: luminosity;
}

.team-form-one .container {
    position: relative;
    max-width: 800px;
}

.team-form-one .sec-title {
    text-align: center;
}

.team-form-one .form-one .bootstrap-select>.dropdown-toggle,
.team-form-one .form-one input[type=text],
.team-form-one .form-one input[type=email],
.team-form-one .form-one textarea {
    background-color: var(--modins-white, #fff);
}

.team-form-one .form-one textarea {
    height: 188px;
}

.blog-card {
    position: relative;
    background-color: var(--modins-white, #fff);
}

.blog-card__image-wrap {
    position: relative;
}

.blog-card__image {
    position: relative;
    overflow: hidden;
}

.blog-card__image img {
    transition: 0.5s;
    background-size: cover;
    width: 100%;
}

.blog-card__image img:nth-child(1) {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card__image img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    object-fit: cover;
    border-radius: 10px;
}

.blog-card__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--modins-black-rgb, 28, 26, 29), 0.5);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.blog-card__image__link::before,
.blog-card__image__link::after {
    content: "";
    width: 32px;
    height: 2px;
    background-color: var(--modins-white, #fff);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.blog-card__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.blog-card:hover .blog-card__image>a {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover .blog-card__image img:nth-child(1) {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0);
}

.blog-card:hover .blog-card__image img:nth-child(2) {
    transform: translatex(-50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
}

.blog-card__content {
    background-color: var(--modins-white, #fff);
    position: relative;
    transition: all 500ms ease;
}

.blog-card__date {
    width: 50px;
    height: 58px;
    background-color: var(--modins-base, #C41E28);
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    color: var(--modins-white, #fff);
    padding: 0 20px;
    line-height: 1.2em;
    position: absolute;
    top: -10px;
    right: 30px;
    z-index: 10;
    text-transform: uppercase;
    font-weight: 500;
    flex-direction: column;
    letter-spacing: var(--modins-letter-space, 0.1em);
    border-radius: 10px;
}

.blog-card__date span {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 5px;
}

.blog-card__content {
    margin-left: 20px;
    margin-right: 20px;
    background-color: var(--modins-white, #fff);
    padding: 30px;
    padding-top: 25px;
    padding-bottom: 10px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    transition: all 500ms ease;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    border-radius: 10px;
}

.blog-card__content::before {
    content: "";
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: var(--modins-border-color, #e0ddea);
}

.blog-card:hover .blog-card__content {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.blog-card__title {
    margin: 0;
    color: var(--modins-primary, #2b2b5e);
    font-size: 20px;
    line-height: 1.2em;
    margin-bottom: 28px;
    font-weight: 600;
    letter-spacing: -0.04em;
}

@media (min-width: 768px) {
    .blog-card__title {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .blog-card__title {
        font-size: 24px;
    }
}

.blog-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card__title a:hover {
    background-size: 100% 1px;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 500;
    color: var(--modins-text, #82828a);
    transition: all 500ms ease;
    line-height: 1em;
    text-shadow: 0 0 1px currentColor;
    justify-content: space-between;
    width: 100%;
    cursor: inherit;
}

.blog-card__link span {
    transition: all 500ms ease;
}

.blog-card__link span:hover {
    cursor: pointer;
    color: var(--modins-base, #C41E28);
}

.blog-card__link i {
    font-size: 16px;
    transition: all 500ms ease;
    color: var(--modins-primary, #2b2b5e);
}

.blog-card__link i:hover {
    cursor: pointer;
    color: var(--modins-base, #C41E28);
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    margin-bottom: 11px;
}

.blog-card__meta li {
    color: var(--modins-text, #82828a);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-right: 10px;
}

@media (min-width: 576px) {
    .blog-card__meta li {
        margin-right: 0;
    }
}

.blog-card__meta li:not(:first-child)::before {
    content: "|";
    margin-left: 10px;
    margin-right: 10px;
    font-weight: 400;
    display: none;
}

@media (min-width: 576px) {
    .blog-card__meta li:not(:first-child)::before {
        display: block;
    }
}

.blog-card__meta li i {
    color: var(--modins-base, #C41E28);
    margin-right: 3px;
}

.blog-card__meta li a {
    display: flex;
    align-items: center;
    color: inherit;
    transition: all 500ms ease;
}

.blog-card__meta li a:hover {
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 1px currentColor;
}

.blog-card__meta img {
    border-radius: 100%;
    margin-right: 10px;
    width: 24px !important;
}

.blog-one {
    padding-top: 130px;
    padding-bottom: 120px;
}

@media (max-width: 767px) {
    .blog-one {
        padding-top: 90px;
        padding-bottom: 80px;
    }
}

.blog-one--page {
    padding-top: 130px;
}

@media (max-width: 767px) {
    .blog-one--page {
        padding-top: 90px;
    }
}

.blog-one--home {
    padding-top: 110px;
}

.blog-one--home .sec-title {
    text-align: left;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .blog-one__carousel .owl-nav {
        display: none;
    }
}

.blog-card-two .blog-card__image {
    margin-bottom: 27px;
}

.blog-card-two .blog-card__meta {
    margin-bottom: 6px;
}

.blog-card-two .blog-card__title {
    font-size: 25px;
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .blog-card-two .blog-card__title {
        font-size: 30px;
    }
}

.blog-card-two .blog-card__date {
    bottom: 0;
}

.blog-card-two__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-top: 12px;
}

.blog-three {
    padding-top: 120px;
    padding-bottom: 120px;
    background-size: cover;
}

.blog-card-three {
    padding: 20px;
    background-color: var(--modins-white, #fff);
}

.blog-card-three img {
    width: 100%;
    margin-bottom: 20px;
}

.blog-card-three__content {
    padding-left: 20px;
    padding-right: 20px;
}

.blog-card-three__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.blog-card-three__title a {
    color: var(--modins-primary, #2b2b5e);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.blog-card-three__title a:hover {
    background-size: 100% 1px;
}

.blog-card-three-list__item {
    display: block;
    align-items: center;
    background-color: var(--modins-white, #fff);
    padding: 28px 20px;
}

@media (min-width: 576px) {
    .blog-card-three-list__item {
        display: flex;
        padding: 28px 40px;
    }
}

@media (min-width: 768px) {
    .blog-card-three-list__item {
        justify-content: space-around;
    }
}

.blog-card-three-list__item .blog-card-three__title {
    font-size: 20px;
    padding-right: 30px;
    margin-bottom: 0;
}

.blog-card-three-list__item+.blog-card-three-list__item {
    margin-top: 4px;
}

.blog-card-three-list__link {
    font-size: 20px;
}

.blog-card-link,
.blog-card-qoute {
    background-color: var(--modins-gray, #f4f3f8);
    padding: 30px;
}

@media (min-width: 768px) {
    .blog-card-link,
    .blog-card-qoute {
        padding: 60px;
    }
}

.blog-card-link .blog-card__title,
.blog-card-qoute .blog-card__title {
    margin: 0;
    margin-bottom: -10px;
    margin-bottom: 10px;
}

.blog-card-qoute__text {
    margin: 0;
    margin-bottom: -5px;
}

.blog-card-qoute__image {
    line-height: 1em;
    margin-bottom: 20px;
}

.blog-card-link__icon {
    font-size: 40px;
    color: var(--modins-base, #C41E28);
    line-height: 1em;
    margin-bottom: 22px;
}

/*--------------------------------------------------------------
# Form
--------------------------------------------------------------*/

.form-one__group {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    margin: 0;
}

@media (min-width: 576px) {
    .form-one__group {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-one__control {
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    padding: 0;
    position: relative;
}

.form-one__control__icon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 14px;
}

.form-one__control--full {
    grid-column-start: 1;
    grid-column-end: -1;
}

.form-one .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border: none;
    outline: none !important;
    color: var(--modins-text, #82828a);
    font-size: 14px;
}

.form-one .bootstrap-select>.dropdown-toggle,
.form-one input[type=text],
.form-one input[type=email],
.form-one textarea {
    display: block;
    width: 100%;
    height: 58px;
    background-color: var(--modins-gray, #f4f3f8);
    color: var(--modins-text, #82828a);
    font-size: 14px;
    font-weight: 500;
    border: none;
    outline: none;
    padding-left: 30px;
    padding-right: 30px;
}

.form-one textarea {
    height: 195px;
    padding-top: 20px;
}

.form-one .bootstrap-select>.dropdown-toggle {
    display: flex;
    align-items: center;
}

.form-one .bootstrap-select>.dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.custom-cursor__cursor {
    width: 25px;
    height: 25px;
    border-radius: 100%;
    border: 1px solid var(--modins-base, #C41E28);
    -webkit-transition: all 200ms ease-out;
    transition: all 200ms ease-out;
    position: fixed;
    pointer-events: none;
    left: 0;
    top: 0;
    -webkit-transform: translate(calc(-50% + 5px), -50%);
    transform: translate(calc(-50% + 5px), -50%);
    z-index: 999991;
}

.custom-cursor__cursor-two {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--modins-base, #C41E28);
    opacity: 0.3;
    position: fixed;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    -webkit-transition: width 0.3s, height 0.3s, opacity 0.3s;
    transition: width 0.3s, height 0.3s, opacity 0.3s;
    z-index: 999991;
}

.custom-cursor__hover {
    background-color: var(--modins-base, #C41E28);
    opacity: 0.4;
}

.custom-cursor__innerhover {
    width: 25px;
    height: 25px;
    opacity: 0.4;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.main-footer {
    position: relative;
    padding-bottom: 40px;
    z-index: 1;
}

.main-footer__shape_1 {
    position: absolute;
    top: 0;
    left: 0;
}

.main-footer__shape_2 {
    position: absolute;
    top: 0;
    right: 0;
}

.main-footer__home .main-footer__top {
    padding-top: 160px;
    margin-top: -60px;
}

.main-footer__top {
    padding-top: 100px;
    padding-bottom: 60px;
}

.main-footer .container {
    position: relative;
}

.main-footer__bottom {
    text-align: center;
}

.main-footer__bottom__inner {
    background-color: #252554;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-footer__copyright {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: var(--modins-text-dark, #a0a0c0);
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget__logo {
    display: inline-flex;
    margin-bottom: 20px;
}

.footer-widget--about p {
    font-size: 18px;
    font-weight: 700;
    line-height: 26px;
    color: var(--modins-white, #fff);
    margin-bottom: 25px;
}

.footer-widget__newsletter {
    position: relative;
    width: 100%;
}

.footer-widget__newsletter input[type=email] {
    width: 100%;
    display: block;
    border: none;
    outline: none;
    height: 60px;
    background-color: var(--modins-white, #fff);
    color: var(--modins-text, #82828a);
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 70px;
    transition: all 500ms ease;
}

.footer-widget__newsletter input[type=email]:focus {
    color: var(--modins-text, #82828a);
}

.footer-widget__newsletter button[type=submit] {
    background-color: transparent;
    width: 50px;
    height: 61px;
    border: none;
    outline: none;
    color: var(--modins-white, #fff);
    background-color: var(--modins-base, #C41E28);
    font-size: 14px;
    position: absolute;
    top: 49%;
    right: 0px;
    transform: translateY(-50%);
    transition: all 500ms ease;
}

.footer-widget__newsletter button[type=submit]:hover {
    background-color: var(--modins-black, #1c1a1d);
}

.footer-widget__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--modins-white, #fff);
    text-transform: capitalize;
    margin: 0;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
}

.footer-widget__title::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 110%;
    width: 17px;
    height: 3px;
    display: inline-block;
    border-radius: 1.5px;
    background-color: var(--modins-base);
}

.footer-widget__info {
    margin-bottom: 0;
    margin-top: 35px;
}

.footer-widget__info li i {
    color: var(--modins-base, #C41E28);
    margin-right: 15px;
}

.footer-widget__info li a {
    color: var(--modins-white, #fff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.footer-widget__info li a:hover {
    background-size: 100% 1px;
}

.footer-widget__info li a:hover {
    color: var(--modins-base, #C41E28);
}

.footer-widget__instagram {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 0;
    /*max-width: 270px;*/
}

.footer-widget__instagram li a {
    position: relative;
    display: block;
}

.footer-widget__instagram li a::before {
    content: "\f16d";
    position: absolute;
    font-family: "Font Awesome 5 Brands";
    left: 0;
    right: 0;
    text-align: center;
    top: 50%;
    transform: translateY(-50%) scale(0);
    width: 100%;
    font-size: 25px;
    z-index: 1;
    transition: 0.3s;
    color: var(--modins-white, #fff);
}

.footer-widget__instagram li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: rgba(var(--modins-base-rgb, 0, 205, 229), 0.5);
    transition: 0.3s;
    height: 0;
}

.footer-widget__instagram li a:hover::before {
    transform: translateY(-50%) scale(1);
}

.footer-widget__instagram li a:hover::after {
    height: 100%;
}

.footer-widget__text {
    font-size: 15px;
    color: var(--modins-text-dark, #a0a0c0);
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    margin-top: -10px;
    margin-bottom: 21px;
    max-width: 255px;
}

.footer-widget__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #3d3d73;
    font-size: 14px;
    color: var(--modins-white, #fff);
    transition: all 500ms ease;
    border-radius: 50%;
}

.footer-widget__social a:hover {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/

.contact-one {
    position: relative;
    padding-bottom: 110px;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .contact-one {
        padding-top: 120px;
    }
}

.contact-one__img {
    margin-bottom: 60px;
}

.contact-one__img img {
    width: 100%;
}

@media (min-width: 992px) {
    .contact-one__img {
        position: absolute;
        right: -500px;
        top: 0;
        margin-bottom: 0px;
    }
}

@media (min-width: 1200px) {
    .contact-one__img {
        right: -300px;
    }
}

@media (min-width: 1500px) {
    .contact-one__img {
        right: 0;
    }
}

.contact-one__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.9em;
    max-width: 490px;
    margin-bottom: 40px;
    position: relative;
    font-weight: 500;
}

.contact-one__info {
    margin-bottom: 0;
    position: relative;
}

.contact-one__info__item {
    display: flex;
    align-items: center;
}

.contact-one__info__item:not(:first-child) {
    margin-top: 10px;
}

.contact-one__info__icon {
    width: 80px;
    height: 80px;
    background-color: var(--modins-base, #C41E28);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    transition: all 500ms ease;
    color: var(--modins-white, #fff);
    margin-right: 20px;
    flex-shrink: 0;
    font-size: 30px;
}

.contact-one__info__icon:hover {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
}

.contact-one__info__text {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    color: var(--modins-text, #82828a);
}

.contact-one__info__title {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    color: var(--modins-primary, #2b2b5e);
    line-height: 30px;
}

.contact-one__info__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.contact-one__info__title a:hover {
    background-size: 100% 1px;
}

.contact-one__form .form-one__group {
    grid-gap: 12px;
    margin-top: -19px;
    position: relative;
}

.contact-one__form .form-one__control__icon {
    right: 0;
    color: var(--modins-white, #fff);
}

.contact-one__form .bootstrap-select>.dropdown-toggle,
.contact-one__form input[type=text],
.contact-one__form input[type=email],
.contact-one__form textarea {
    padding: 0;
    height: 58px;
    background-color: var(--modins-gray, #f4f3f8);
    color: var(--modins-text, #82828a);
}

.contact-one__form .modins-btn {
    padding: 15px 55px;
    font-size: 16px;
    font-weight: 700;
    margin-top: -7px;
}

.contact-one__shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: auto;
}

@media (max-width: 767px) {
    .contact-one__shape {
        background-size: cover;
    }
}

.contact-one__form__box {
    padding: 30px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    margin-bottom: 100px;
}

@media (min-width: 768px) {
    .contact-one__form__box {
        padding: 60px;
    }
}

.contact-one__form {
    position: relative;
    display: block;
}

.contact-one__form .row {
    --bs-gutter-x: 20px;
}

.contact-one__input {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.contact-one__input i {
    position: absolute;
    right: 0;
    color: var(--modins-white, #fff);
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
}

.contact-one__input input[type=date],
.contact-one__input input[type=text],
.contact-one__input input[type=email] {
    height: 62px;
    width: 100%;
    border: none;
    background-color: var(--modins-gray, #f4f3f8);
    padding-left: 0;
    padding-right: 0;
    outline: none;
    border-bottom: 2px solid rgba(var(--modins-white-rgb, 255, 255, 255), 0.15);
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--modins-text, #82828a);
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    display: block;
    font-weight: 500;
}

input.form-control,
textarea.form-control,
select.form-control,
input.form-control:focus,
textarea.form-control:focus,
select.form-control:focus {
    height: 62px;
    width: 100%;
    border: none;
    background-color: var(--modins-gray, #f4f3f8);
    padding-left: 0;
    padding-right: 0;
    outline: none;
    border-bottom: 2px solid rgba(var(--modins-white-rgb, 255, 255, 255), 0.15);
    font-size: 14px;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--modins-text, #82828a);
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    display: block;
    font-weight: 500;
    box-shadow: none;
}

textarea.form-control {
    height: 172px;
}

.contact-one__input .bootstrap-select .dropdown-menu {
    border: none;
}

.contact-one__input .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
}

.contact-one__input .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.contact-one__input .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 62px;
    outline: none !important;
    border-radius: 0;
    border: 0;
    background-color: var(--modins-gray, #f4f3f8) !important;
    margin: 0;
    padding: 0;
    padding-left: 0;
    padding-right: 0;
    color: var(--modins-text, #82828a) !important;
    font-size: 14px;
    line-height: 60px;
    font-weight: 500;
    padding-left: 30px;
    padding-right: 30px;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
    border-bottom: 2px solid rgba(var(--modins-white-rgb, 255, 255, 255), 0.15);
}

.contact-one__input .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 600;
    font-size: 14px;
    color: var(--modins-text, #82828a);
}

.contact-one__input .bootstrap-select .dropdown-menu>li+li>a {
    border-top: 1px solid var(--modins-border-color, #e0ddea);
}

.contact-one__input .bootstrap-select .dropdown-menu>li>a {
    font-size: 14px;
    font-weight: 500;
    padding: 10px 30px;
    color: var(--modins-text, #82828a);
    background-color: var(--modins-white, #fff);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

.contact-one__input .bootstrap-select .dropdown-menu>li:hover>a,
.contact-one__input .bootstrap-select .dropdown-menu>li.selected>a {
    background: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
    border-color: var(--modins-base, #C41E28);
}

.contact-one__input textarea {
    font-size: 14px;
    font-weight: 500;
    color: var(--modins-text, #82828a);
    height: 172px;
    width: 100%;
    background-color: var(--modins-gray, #f4f3f8);
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    padding: 30px;
    border: none;
    outline: none;
    margin-bottom: 0px;
}

.contact-one__input.text-message-box {
    height: 112px;
    margin-top: 21px;
    margin-bottom: 18px;
}

.contact-one__banner-inner {
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 27px;
    padding-bottom: 27px;
}

@media (min-width: 992px) {
    .contact-one__banner-inner {
        padding-left: 105px;
    }
}

.contact-one__banner-inner .shape-1 {
    position: absolute;
    left: 10px;
    display: none;
}

@media (min-width: 768px) {
    .contact-one__banner-inner .shape-1 {
        display: block;
    }
}

.contact-one__banner-inner .shape-2 {
    position: absolute;
    left: 0;
    display: none;
}

@media (min-width: 768px) {
    .contact-one__banner-inner .shape-2 {
        display: block;
    }
}

.contact-one__banner-title {
    color: var(--modins-white, #fff);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .contact-one__banner-title {
        margin-bottom: 8px;
    }
}

.contact-one__banner-title span {
    font-size: 33px;
    position: relative;
    top: 5px;
    margin-right: 10px;
    display: block;
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .contact-one__banner-title span {
        display: inline-block;
        margin-bottom: 0;
    }
}

.contact-one__banner .contact-banner-btn {
    background-color: var(--modins-white, #fff);
    color: var(--modins-primary, #2b2b5e);
}

.contact-one__banner .contact-banner-btn:hover {
    color: var(--modins-white, #fff);
}

.contact-two {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    background-color: var(--modins-gray, #f4f3f8);
    z-index: 1;
}

.contact-two__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    z-index: -1;
}

.contact-two__img {
    display: none;
    position: absolute;
    bottom: 0;
    z-index: 3;
}

@media (min-width: 768px) {
    .contact-two__img {
        display: block;
        right: 0px;
    }
    .contact-two__img img {
        max-width: 500px;
    }
}

@media (min-width: 1500px) {
    .contact-two__img {
        right: 180px;
    }
    .contact-two__img img {
        max-width: 100%;
    }
}

.contact-two .get-insurance__tab-box {
    display: block;
}

@media (min-width: 768px) {
    .contact-two .get-insurance__tab-box {
        display: flex;
    }
}

.contact-two .get-insurance__tab-box .tab-buttons {
    display: flex;
}

@media (min-width: 768px) {
    .contact-two .get-insurance__tab-box .tab-buttons {
        display: block;
        margin-right: 30px;
    }
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn {
    width: 100%;
}

@media (min-width: 576px) {
    .contact-two .get-insurance__tab-box .tab-buttons .tab-btn {
        width: inherit;
    }
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn span {
    font-size: 14px;
    width: 100%;
    padding: 11px 40px 11px;
    text-align: left;
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
    z-index: 1;
    border-radius: 0;
    border: 0;
}

@media (min-width: 768px) {
    .contact-two .get-insurance__tab-box .tab-buttons .tab-btn span {
        width: inherit;
        min-width: 200px;
        padding: 11px 20px 11px;
    }
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn span i {
    font-size: 24px;
    margin-right: 20px;
    position: relative;
    top: 5px;
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn span:hover {
    background-color: var(--modins-primary, #2b2b5e);
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    border-radius: 0px;
    content: "";
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn {
    margin-right: 10px;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .contact-two .get-insurance__tab-box .tab-buttons .tab-btn {
        margin-top: 0;
        margin-right: 0;
    }
}

.contact-two .get-insurance__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 0;
}

@media (min-width: 768px) {
    .contact-two .get-insurance__tab-box .tab-buttons .tab-btn+.tab-btn {
        margin-top: 10px;
    }
}

.contact-two .tabs-content {
    width: 100%;
    background-color: var(--modins-white, #fff);
    padding: 30px 15px;
    position: relative;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

@media (min-width: 768px) {
    .contact-two .tabs-content {
        padding: 50px;
    }
}

.contact-two .get-insurance__input-box .bootstrap-select>.dropdown-toggle,
.contact-two .get-insurance__input-box input[type=text],
.contact-two .get-insurance__input-box input[type=email] {
    background-color: var(--modins-gray, #f4f3f8) !important;
    border-radius: 0;
}

.contact-two .get-insurance__progress-range .irs--flat .irs-bar,
.contact-two .get-insurance__progress-range .irs--flat .irs-line {
    border-radius: 0;
}

.contact-two .get-insurance__form .modins-btn {
    border-radius: 0;
    padding: 13px 40px;
    font-size: 16px;
}

/*--------------------------------------------------------------
# Get Insurance
--------------------------------------------------------------*/

.get-insurance {
    position: relative;
    display: block;
    padding: 120px 0px 130px;
    background-color: var(--modins-white, #fff);
    z-index: 1;
}

.get-insurance:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    z-index: -1;
}

.get-insurance-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-blend-mode: luminosity;
    background-color: var(--modins-white, #fff);
    opacity: 0.06;
    z-index: -1;
}

.get-insurance__left {
    position: absolute;
    bottom: 0;
    left: 345px;
}

.get-insurance__img {
    position: relative;
    display: block;
    z-index: 3;
}

.get-insurance__img img {
    width: 100%;
}

.get-insurance__author {
    position: absolute;
    top: 40px;
    left: -176px;
    border-radius: 50%;
    background-color: rgb(242, 245, 249);
    width: 550px;
    height: 550px;
}

.get-insurance__author p {
    position: relative;
    display: inline-block;
    font-size: 34px;
    color: var(--modins-black, #1c1a1d);
    top: 194px;
    left: 70px;
}

.get-insurance__circle {
    position: absolute;
    left: 313px;
    top: 173px;
    border-radius: 50%;
    background-color: var(--modins-white, #fff);
    width: 244px;
    height: 244px;
    z-index: 1;
}

.get-insurance__shape-1 {
    position: absolute;
    bottom: 0;
    left: -145px;
}

.get-insurance__shape-1 img {
    width: auto;
}

.get-insurance__right {
    position: relative;
    display: block;
}

.get-insurance__tab {
    position: relative;
    display: block;
}

.get-insurance__tab-box {
    position: relative;
    display: block;
    z-index: 2;
}

.get-insurance__tab-box .tab-buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.get-insurance__tab-box .tab-buttons .tab-btn {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .get-insurance__tab-box .tab-buttons .tab-btn {
        margin-bottom: 0px;
    }
}

.get-insurance__tab-box .tab-buttons .tab-btn+.tab-btn {
    margin-left: 10px;
}

.get-insurance__tab-box .tab-buttons .tab-btn span {
    position: relative;
    display: inline-block;
    -webkit-transition: all 200ms linear;
    transition: all 200ms linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    font-size: 14px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    color: var(--modins-primary, #2b2b5e);
    background-color: transparent;
    padding: 7px 25px 7px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    text-align: center;
    z-index: 1;
}

.get-insurance__tab-box .tab-buttons .tab-btn.active-btn span {
    color: var(--modins-white, #fff);
    background-color: var(--modins-primary, #2b2b5e);
    border-color: transparent;
}

.get-insurance__tab-box .tab-buttons .tab-btn span:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    content: "";
    background-color: var(--modins-primary, #2b2b5e);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: -1;
}

.get-insurance__tab-box .tab-buttons .tab-btn.active-btn span:before {
    height: 100%;
}

.get-insurance__tab-box .tabs-content {
    position: relative;
    display: block;
}

.get-insurance__tab-box .tabs-content .tab {
    position: relative;
    display: none;
    -webkit-transform: translateY(35px);
    transform: translateY(35px);
    -webkit-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
}

.get-insurance__tab-box .tabs-content .tab.active-tab {
    display: block;
    margin-top: 0px;
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
}

.get-insurance__content {
    position: relative;
    display: block;
}

.get-insurance__form {
    position: relative;
    display: block;
}

.get-insurance__content-box {
    position: relative;
    display: block;
}

.get-insurance__input-box {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.get-insurance__input-box input[type=text],
.get-insurance__input-box input[type=email] {
    height: 60px;
    width: 100%;
    border: 0;
    background-color: var(--modins-white, #fff);
    outline: none;
    font-size: 16px;
    color: var(--modins-text, #82828a);
    font-weight: 400;
    padding: 0 30px 0;
}

.get-insurance__input-box .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    position: relative;
    display: block;
    width: 100% !important;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle::after {
    display: none;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle {
    position: relative;
    height: 60px;
    outline: none !important;
    border-radius: 0px;
    background-color: var(--modins-white, #fff) !important;
    margin: 0;
    padding: 0;
    padding-left: 30px;
    padding-right: 30px;
    color: var(--modins-text, #82828a) !important;
    font-size: 16px;
    line-height: 60px;
    font-weight: 400;
    box-shadow: none !important;
    background-repeat: no-repeat;
    background-size: 14px 12px;
    background-position: right 25.75px center;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle:hover,
.get-insurance__input-box .bootstrap-select>.dropdown-toggle:focus {
    border: 0;
    outline: 0 !important;
    border-color: transparent;
}

.get-insurance__input-box .bootstrap-select>.dropdown-toggle:before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30px;
    font-family: "Font Awesome 5 Free";
    content: "\f107";
    font-weight: 900;
    font-size: 14px;
    color: var(--modins-text, #82828a);
}

.get-insurance__progress {
    position: relative;
    display: block;
    width: 100%;
    margin-top: 23px;
    margin-bottom: 50px;
}

.get-insurance__progress-single {
    position: relative;
    display: block;
}

.get-insurance__progress-title {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
    font-weight: 600;
    color: var(--modins-primary, #2b2b5e);
}

.get-insurance__progress .bar {
    position: relative;
    width: 100%;
    height: 11px;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
    border-radius: 5px;
    border: 1px solid #dfe3e7;
}

.get-insurance__progress .bar-inner {
    position: relative;
    display: block;
    width: 0px;
    height: 11px;
    border-radius: 5px;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
}

.get-insurance__progress .count-text {
    position: absolute;
    right: -30px;
    bottom: -8px;
    opacity: 0;
    border-style: solid;
    border-width: 2px;
    border-color: var(--modins-white, #fff);
    border-radius: 50%;
    background-color: rgb(22, 36, 61);
    width: 34px;
    height: 34px;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.get-insurance__progress .bar-inner.counted .count-text {
    opacity: 1;
}

.get-insurance__balance-box {
    position: absolute;
    top: 0;
    right: 0;
}

.get-insurance__balance {
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: 600;
}

.get-insurance__btn {
    border: none;
}

/* modins get balance updated css */

.get-insurance__progress-range .irs-single,
.get-insurance__progress-range .irs-from,
.get-insurance__progress-range .irs-to {
    display: none;
}

.get-insurance__progress-range .irs--flat {
    height: 29px;
}

.get-insurance__progress-range .irs--flat .irs-handle,
.get-insurance__progress-range .irs--flat .irs-line,
.get-insurance__progress-range .irs--flat .irs-bar {
    top: 0;
}

.get-insurance__progress-range .irs--flat .irs-line {
    height: 13px;
    border-radius: 0px;
    border-style: solid;
    border-width: 1px;
    border-color: #dfe3e7;
    background-color: #ffffff;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.05);
}

.get-insurance__progress-range .irs--flat .irs-bar {
    height: 12px;
    border-radius: 0px;
    background-image: linear-gradient(90deg, var(--modins-primary) 0%, var(--modins-base) 100%);
}

.get-insurance__progress-range .irs--flat .irs-handle {
    height: 29px;
    width: 29px;
    background-color: var(--modins-primary);
    border: 2px solid #ffffff;
    border-radius: 50%;
    top: -9px;
}

.get-insurance__progress-range .irs--flat .irs-handle i {
    display: none;
}

.get-insurance__progress {
    margin-bottom: 0px;
}

@media (min-width: 992px) {
    .get-insurance__right {
        padding-right: 70px;
    }
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    border-color: transparent;
}

/*--------------------------------------------------------------
# Topbar
--------------------------------------------------------------*/

.topbar-one {
    display: none;
    position: relative;
    background-color: var(--modins-base, #C41E28);
    z-index: 1;
}

@media (min-width: 992px) {
    .topbar-one {
        display: block;
        padding-left: 60px;
    }
}

.topbar-one__bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}

.topbar-one__menu {
    display: none;
    list-style: none;
    margin-bottom: 0;
    margin-left: 0;
}

.topbar-one__menu li {
    margin-right: 35px;
}

.topbar-one__menu li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--modins-white, #fff);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__menu li a:hover {
    color: var(--modins-primary, #2b2b5e);
}

.topbar-one__menu li a:hover {
    background-size: 100% 1px;
}

@media (min-width: 1300px) {
    .topbar-one__menu {
        display: flex;
    }
}

.topbar-one .container-fluid {
    padding: 0;
}

.topbar-one__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (min-width: 992px) {
    .topbar-one__inner {
        flex-direction: row;
        justify-content: center;
    }
}

.topbar-one__info {
    display: flex;
    align-items: center;
    margin: 0;
}

.topbar-one__info__item {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.2em;
}

.topbar-one__info__item i {
    color: var(--modins-white, #fff);
    font-size: 15px;
    margin-right: 8px;
}

.topbar-one__info__item a {
    color: var(--modins-white, #fff);
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.topbar-one__info__item a:hover {
    color: var(--modins-primary, #2b2b5e);
}

.topbar-one__info__item a:hover {
    background-size: 100% 1px;
}

.topbar-one__info__item+.topbar-one__info__item {
    margin-left: 20px;
}

.topbar-one__info__icon {
    font-size: 14px;
    color: var(--modins-base, #C41E28);
    position: relative;
    top: 2px;
    margin-right: 9px;
}

.topbar-one__right {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media (min-width: 992px) {
    .topbar-one__right {
        margin-top: 0;
        margin-left: auto;
    }
}

.topbar-one__text {
    margin: 0;
    font-size: 14px;
    line-height: 1.2em;
}

.topbar-one__social {
    display: flex;
    align-items: center;
    padding: 10px 60px;
    background-color: rgb(218, 11, 27, .5);
}

.topbar-one__social a {
    font-size: 14px;
    color: var(--modins-white, #fff);
    transition: all 500ms ease;
}

.topbar-one__social a:hover {
    color: var(--modins-black, #1c1a1d);
}

.topbar-one__social a+a {
    margin-left: 20px;
}

.topbar-two {
    display: none;
}

@media (min-width: 1200px) {
    .topbar-two {
        display: block;
    }
}

.topbar-two .main-header__call {
    display: block;
}

@media (min-width: 992px) {
    .topbar-two .main-header__call {
        display: inline-flex;
    }
}

.topbar-two .main-header__call i {
    font-size: 13px;
}

.topbar-two__inner {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 20px;
}

/*--------------------------------------------------------------
# Navigations
--------------------------------------------------------------*/

.main-header {
    background-color: transparent;
}

.main-header--transparent-header {
    position: absolute;
    top: 0;
    width: 100%;
    background-color: transparent;
    z-index: 99;
}

.main-header--transparent-header .main-header__logo {
    background-color: transparent;
}

.main-header--transparent-header .main-header__inner {
    background-color: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header--transparent-header .main-menu .main-menu__list>li>a {
    color: var(--modins-white, #fff);
}

.main-header--transparent-header .main-menu .main-menu__list>li>a:hover {
    color: var(--modins-base, #C41E28);
}

.main-header--transparent-header .main-header__search {
    color: var(--modins-white, #fff);
}

.main-header--transparent-header .main-header__search {
    border-color: rgba(255, 255, 255, 0.1);
}

.main-header--transparent-header .modins-btn {
    background-color: var(--modins-base, #C41E28);
}

.main-header--transparent-header .modins-btn:hover {
    color: var(--modins-primary, #2b2b5e);
}

.main-header--transparent-header .modins-btn em {
    background-color: var(--modins-white, #fff);
}

.main-header--transparent-header .mobile-nav__btn span {
    background-color: var(--modins-white, #fff);
}

.main-header.sticky-header--cloned.main-header--transparent-header {
    background-color: var(--modins-primary, #2b2b5e);
}

.main-header .container-fluid {
    padding: 0;
}

.main-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: transparent;
    position: relative;
}

.main-header__logo {
    display: flex;
    width: auto;
    align-items: center;
    justify-content: flex-start;
    background-color: transparent;
    padding: 0;
}

@media (min-width: 768px) {
    .main-header__logo {
        width: auto;
        height: auto;
        padding: 0;
    }
}

@media (min-width: 768px) {
    .main-header__logo .mobile-nav__btn {
        margin-left: 30px;
    }
}

.main-header__btn {
    display: none;
    background: var(--modins-primary, #2b2b5e);
}

.main-header__btn em {
    background-color: var(--modins-base, #C41E28);
}

@media (min-width: 992px) {
    .main-header__btn {
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .main-header__btn {
        display: none;
    }
}

@media (min-width: 1300px) {
    .main-header__btn {
        display: inline-flex;
    }
}

.main-header__call {
    display: none;
    align-items: center;
    margin-left: 30px;
}

.main-header__call:hover i {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
    border-color: transparent;
}

.main-header__call:hover b {
    background-size: 100% 1px;
    color: var(--modins-base, #C41E28);
}

.main-header__call i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    font-size: 25px;
    color: var(--modins-primary, #2b2b5e);
    transition: 0.3s;
}

.main-header__call span {
    color: var(--modins-text, #82828a);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.main-header__call span b {
    display: inline-block;
    margin-top: 6px;
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

@media (min-width: 992px) {
    .main-header__call {
        display: inline-flex;
    }
}

@media (min-width: 1200px) {
    .main-header__call {
        display: none;
    }
}

@media (min-width: 1600px) {
    .main-header__call {
        display: inline-flex;
    }
}

.main-header__nav__wrapper {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .main-header__nav__wrapper {
        padding-right: 60px;
    }
}

.main-header__right {
    display: flex;
    align-items: center;
}

@media (min-width: 768px) {
    .main-header__right {
        margin-left: auto;
        padding: 0;
        padding-left: 10px;
    }
}

@media (min-width: 1200px) {
    .main-header__right {
        margin-left: 0;
    }
}

.main-header__search {
    font-size: 24px;
    color: var(--modins-primary, #2b2b5e);
    transition: all 500ms ease;
    padding-left: 20px;
    margin-left: 40px;
    margin-right: 30px;
    line-height: 1em;
    display: none;
    border-left: 1px solid var(--modins-border-color, #e0ddea);
}

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

.main-header__search:hover {
    color: var(--modins-base, #C41E28);
}

.main-header__nav {
    margin-left: 0px;
    margin-right: 0px;
}

.main-header-two .main-header__inner {
    position: relative;
    background-color: var(--modins-primary, #2b2b5e);
    padding-left: 40px;
    padding-right: 10px;
    margin-bottom: -70.5px;
    z-index: 55;
}

.main-header-two.sticky-header--cloned {
    background-color: var(--modins-primary, #2b2b5e);
}

.main-header-two.sticky-header--cloned .main-header__inner {
    margin-bottom: 0;
}

.main-header-two .main-menu .main-menu__list>li {
    padding-top: 18.25px;
    padding-bottom: 18.25px;
}

.main-header-two .main-menu .main-menu__list>li>a {
    color: var(--modins-white, #fff);
}

.main-header-two .main-menu .main-menu__list>li>a:hover {
    color: var(--modins-base, #C41E28);
}

.main-header-two .main-header__search {
    color: var(--modins-white, #fff);
}

.main-header-two .main-header__btn {
    background-color: var(--modins-base, #C41E28);
}

.main-header-two .main-header__btn:hover {
    color: var(--modins-primary, #2b2b5e);
}

.main-header-two .main-header__btn em {
    background-color: var(--modins-white, #fff);
}

.main-header-two .main-header__nav__wrapper {
    justify-content: space-between;
    padding-right: 0;
    padding-left: 0;
    width: 100%;
}

.main-header-two .main-header__logo.mobile-logo {
    padding: 0;
    padding-top: 20px;
    padding-bottom: 20px;
}

@media (min-width: 1200px) {
    .main-header-two .main-header__logo.mobile-logo {
        display: none;
    }
}

.main-header-two .mobile-nav__btn span {
    background-color: var(--modins-white, #fff);
}

.sticky-header--cloned {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    top: 0;
    background-color: var(--modins-white, #fff);
    transform: translateY(-100%);
    box-shadow: 0px 3px 18px rgba(var(--modins-black-rgb, 28, 26, 29), 0.07);
    transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
    visibility: hidden;
    transition: transform 500ms ease, visibility 500ms ease;
}

.sticky-header--cloned.active {
    transform: translateY(0%);
    visibility: visible;
}

.mobile-nav__btn {
    width: 24px;
    display: flex;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    cursor: pointer;
    z-index: 3;
}

@media (max-width: 1199px) {
    .mobile-nav__btn {
        margin-left: -50px;
        margin-right: 10px;
    }
}

@media (max-width: 767px) {
    .mobile-nav__btn {
        margin-left: -40px;
        margin-right: 10px;
    }
}

@media (min-width: 992px) {
    .mobile-nav__btn {
        display: none;
    }
}

.mobile-nav__btn span {
    width: 100%;
    height: 2px;
    background-color: var(--modins-black, #1c1a1d);
}

@media (max-width: 767px) {
    .mobile-nav__btn span {
        background-color: #c41e28;
    }
}

.mobile-nav__btn span:nth-child(2) {
    margin-top: 4px;
    margin-bottom: 4px;
}

.main-menu {
    /* after third level no menu */
}

.main-menu .main-menu__list,
.main-menu .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    align-items: center;
    display: none;
}

@media (min-width: 992px) {
    .main-menu .main-menu__list,
    .main-menu .main-menu__list ul {
        display: flex;
    }
}

.main-menu .main-menu__list>li {
    padding-top: 38.25px;
    padding-bottom: 38.25px;
    position: relative;
}

.main-menu .main-menu__list>li.dropdown>a {
    position: relative;
}

.main-menu .main-menu__list>li+li {
    margin-left: 45px;
}

@media (max-width: 1400px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1300px) {
    .main-menu .main-menu__list>li+li {
        margin-left: 35px;
    }
}

.main-menu .main-menu__list>li>a {
    font-size: 16px;
    display: flex;
    align-items: center;
    color: var(--modins-text, #82828a);
    font-weight: 500;
    position: relative;
    font-size: 16px;
    transition: all 500ms ease;
}

.main-menu .main-menu__list>li.current>a,
.main-menu .main-menu__list>li:hover>a {
    color: var(--modins-base, #C41E28);
    text-shadow: 0 0 0.5px currentColor;
}

.main-menu .main-menu__list li ul {
    position: absolute;
    top: 100%;
    left: -25px;
    min-width: 270px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transform-origin: top center;
    transform: scaleY(0) translateZ(100px);
    transition: opacity 500ms ease, visibility 500ms ease, transform 700ms ease;
    z-index: 99;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px RGBA(var(--modins-white-rgb, 255, 255, 255), 0.07);
    padding: 15px 20px 11px;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.main-menu .main-menu__list li:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1) translateZ(0px);
}

.main-menu .main-menu__list>.megamenu {
    position: static;
}

.main-menu .main-menu__list>.megamenu>ul {
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

.main-menu .main-menu__list li ul li {
    flex: 1 1 100%;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #e1e0e0;
}

.main-menu .main-menu__list li ul li>a {
    font-size: 14px;
    line-height: 26px;
    color: var(--modins-text, #82828a);
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    font-weight: 500;
    display: flex;
    text-transform: capitalize;
    padding: 8px 20px;
    transition: 400ms;
    margin-bottom: 4px;
}

.main-menu .main-menu__list li ul li>a::after {
    position: absolute;
    right: 20px;
    top: 8px;
    border-radius: 0;
    font-size: 6px;
    font-weight: 700;
    font-family: "Font Awesome 5 Free";
    content: "\f111";
    color: var(--modins-base, #C41E28);
    visibility: hidden;
    opacity: 0;
    transition: all 500ms ease;
    transform: scale(0);
}

.main-menu .main-menu__list li ul li.current>a,
.main-menu .main-menu__list li ul li:hover>a {
    background-color: var(--modins-gray, #f4f3f8);
    color: var(--modins-black, #1c1a1d);
}

.main-menu .main-menu__list li ul li.current>a::after,
.main-menu .main-menu__list li ul li:hover>a::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

.main-menu .main-menu__list li ul li>ul {
    top: 0;
    left: calc(100% + 20px);
}

.main-menu .main-menu__list li ul li>ul.right-align {
    top: 0;
    left: auto;
    right: 100%;
}

.main-menu .main-menu__list li ul li>ul ul {
    display: none;
}

@media (min-width: 1200px) and (max-width: 1400px) {
    .main-menu__list li:nth-last-child(1) ul li>ul,
    .main-menu__list li:nth-last-child(2) ul li>ul {
        left: auto;
        right: calc(100% + 20px);
    }
}

/*--------------------------------------------------------------
# Megamenu Popup
--------------------------------------------------------------*/

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul {
    position: fixed;
    top: 0 !important;
    left: 0 !important;
    width: 100vw;
    height: 100vh;
    visibility: visible;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
    z-index: 999999;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: scroll;
    padding: 0;
    background-color: var(--modins-white, #fff);
    display: block !important;
    margin: 0;
}

.main-menu__list>li.megamenu-clickable>ul::-webkit-scrollbar {
    display: none;
}

.mobile-nav__container .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.main-menu .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active,
.stricky-header .main-menu__list>.megamenu.megamenu-clickable>ul.megamenu-clickable--active {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 1;
    visibility: visible;
    transition: transform 0.7s ease, opacity 0.7s ease, visibility 0.7s ease;
}

body.megamenu-popup-active {
    overflow: hidden;
}

body.megamenu-popup-active .stricky-header {
    bottom: 0;
}

body.megamenu-popup-active .mobile-nav__content {
    overflow: unset;
}

.mobile-nav__content .demo-one .container {
    padding-left: 15px;
    padding-right: 15px;
}

.megamenu-popup {
    position: relative;
}

.megamenu-popup .megamenu-clickable--close {
    position: absolute;
    top: 18px;
    right: 20px;
    display: block;
    color: var(--modins-black, #1c1a1d);
}

@media (min-width: 1300px) {
    .megamenu-popup .megamenu-clickable--close {
        top: 38px;
        right: 40px;
    }
}

.megamenu-popup .megamenu-clickable--close:hover {
    color: var(--modins-base, #C41E28);
}

.megamenu-popup .megamenu-clickable--close span {
    width: 24px;
    height: 24px;
    display: block;
    position: relative;
    color: currentColor;
    transition: all 500ms ease;
}

.megamenu-popup .megamenu-clickable--close span::before,
.megamenu-popup .megamenu-clickable--close span::after {
    content: "";
    width: 100%;
    height: 2px;
    background-color: currentColor;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}

.megamenu-popup .megamenu-clickable--close span::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.boxed-wrapper .main-header__call {
    display: none;
}

/*--------------------------------------------------------------
# Home Showcase
--------------------------------------------------------------*/

.demo-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.demo-one .row {
    --bs-gutter-y: 30px;
}

.demo-one__card {
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--modins-black3-rgb, 0, 0, 0), 0.1);
    text-align: center;
    transition: 500ms ease;
    transform: translateY(0px);
}

.demo-one__card:hover {
    transform: translateY(-10px);
}

.demo-one__title {
    margin: 0;
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: 500;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
}

.demo-one__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.demo-one__title a:hover {
    background-size: 100% 1px;
}

.demo-one__image {
    position: relative;
    overflow: hidden;
}

.demo-one__image img {
    max-width: 100%;
    transition: filter 500ms ease;
    filter: blur(0px);
}

.demo-one__card:hover .demo-one__image img {
    filter: blur(2px);
}

.demo-one__btns {
    background-color: rgba(var(--modins-black3-rgb, 0, 0, 0), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    transform: scale(1, 0);
    transition: transform 500ms ease, opacity 600ms linear;
    transform-origin: bottom center;
    opacity: 0;
}

.demo-one__card:hover .demo-one__btns {
    transform: scale(1, 1);
    opacity: 1;
    transform-origin: top center;
}

.demo-one__btn {
    font-size: 13px;
    padding: 11px 29px;
}

.demo-one__btn::before {
    background-color: var(--modins-base, #C41E28);
}

.demo-one__btn::after {
    background-color: var(--modins-black, #1c1a1d);
}

.demo-one__btn:hover {
    color: var(--modins-white, #fff);
}

@media (min-width: 768px) {
    .demo-one__btn {
        display: inline-flex;
    }
}

.demo-one__title {
    padding-top: 20.5px;
    padding-bottom: 20.5px;
}

.home-showcase {
    margin-bottom: -20px;
}

.home-showcase .row {
    --bs-gutter-x: 42px;
    --bs-gutter-y: 20px;
}

.home-showcase__inner {
    padding: 40px 40px 21px;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(var(--modins-black3-rgb, 0, 0, 0), 0.07);
}

.home-showcase .demo-one__card {
    box-shadow: none;
}

.home-showcase .demo-one__btns {
    flex-direction: column;
}

.home-showcase .demo-one__btn {
    min-width: 135px;
    text-align: center;
    justify-content: center;
}

.home-showcase .demo-one__title {
    padding: 0;
    font-size: 14px;
    margin-top: 15px;
    padding-bottom: 15px;
}

/*--------------------------------------------------------------
# Why choose
--------------------------------------------------------------*/

.why-choose-one {
    position: relative;
}

.why-choose-one__shape-1 {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    animation: shapeMove 4s linear 0s infinite;
}

@media (min-width: 992px) {
    .why-choose-one__shape-1 {
        display: block;
    }
}

@keyframes shapeMove {
    0%,
    100% {
        transform: translateX(0px);
    }
    50% {
        transform: translateX(10px);
    }
}

.why-choose-one__inner {
    background-color: var(--modins-gray, #f4f3f8);
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.why-choose-one__inner::before {
    content: "";
    width: 10000px;
    height: 100%;
    background-color: var(--modins-gray, #f4f3f8);
    position: absolute;
    top: 0;
    right: 100%;
}

.why-choose-one .container {
    position: relative;
}

.why-choose-one__content {
    padding-left: 30px;
    padding-right: 30px;
}

@media (min-width: 1200px) {
    .why-choose-one__content {
        padding-left: 0;
        padding-right: 0;
    }
}

.why-choose-one__image {
    text-align: right;
    margin-top: 35px;
}

@media (min-width: 1200px) {
    .why-choose-one__image {
        margin-top: 0;
    }
}

.why-choose-one__image img {
    max-width: 100%;
}

@media (min-width: 1200px) {
    .why-choose-one__image img {
        max-width: none;
    }
}

.why-choose-one__highlighted {
    margin: 0;
    color: var(--modins-base, #C41E28);
    font-size: 18px;
    line-height: 30px;
    margin-top: -20px;
}

@media (min-width: 768px) {
    .why-choose-one__highlighted {
        font-size: 20px;
    }
}

.why-choose-one__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-top: 15px;
}

@media (min-width: 1200px) {
    .why-choose-one__text {
        margin-top: 20px;
    }
}

.why-choose-one__list {
    margin-top: 45px;
}

.why-choose-one__list__item {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1200px) {
    .why-choose-one__list__item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.why-choose-one__list__item+.why-choose-one__list__item {
    margin-top: 20px;
}

.why-choose-one__list__icon {
    width: 57px;
    height: 57px;
    background-color: var(--modins-base, #C41E28);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--modins-white, #fff);
    font-size: 21px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 500ms ease;
}

.why-choose-one__list__icon i {
    transform: scale(1);
    transition: 500ms ease;
}

.why-choose-one__list__icon:hover {
    background-color: var(--modins-black, #1c1a1d);
    color: var(--modins-white, #fff);
}

.why-choose-one__list__icon:hover i {
    transform: scale(0.9);
}

@media (min-width: 1200px) {
    .why-choose-one__list__icon {
        margin-bottom: 0;
        margin-right: 20px;
    }
}

.why-choose-one__list__title {
    margin: 0;
    text-transform: uppercase;
    font-size: 20px;
    color: var(--modins-black, #1c1a1d);
    font-weight: bold;
}

@media (min-width: 1200px) {
    .why-choose-one__list__title {
        min-width: 130px;
    }
}

.why-choose-one__list__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.why-choose-one__list__title a:hover {
    background-size: 100% 1px;
}

.why-choose-one__list__text {
    margin: 0;
    font-size: 15px;
    line-height: 26px;
    position: relative;
}

.why-choose-one__list__text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 57px;
    background-color: var(--modins-border-color, #e0ddea);
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 1200px) {
    .why-choose-one__list__text::before {
        display: block;
    }
}

@media (min-width: 1200px) {
    .why-choose-one__list__text {
        padding-left: 30px;
    }
}

.why-choose-two {
    padding-top: 100px;
}

.why-choose-two__image {
    position: relative;
    display: inline-block;
    margin-bottom: 110px;
}

@media (min-width: 992px) {
    .why-choose-two__image {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .why-choose-two__image {
        margin-left: 120px;
    }
}

.why-choose-two__image img {
    max-width: 100%;
}

.why-choose-two__image__two {
    position: absolute;
    bottom: -50px;
    left: 0px;
    z-index: 10;
}

@media (min-width: 992px) {
    .why-choose-two__image__two {
        bottom: 0;
        left: -120px;
    }
}

.why-choose-two__image__shape {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 11;
    animation: shapeMove 4s linear 0s infinite;
}

@media (min-width: 992px) {
    .why-choose-two__image__shape {
        bottom: auto;
        top: 200px;
        right: auto;
        left: -100px;
    }
}

.why-choose-two__image__icon {
    width: 96px;
    height: 96px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--modins-base, #C41E28);
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

@media (min-width: 992px) {
    .why-choose-two__image__icon {
        left: -48px;
    }
}

@media (min-width: 1200px) {
    .why-choose-two__content {
        padding-left: 70px;
    }
}

.why-choose-two__highlight {
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    color: var(--modins-base, #C41E28);
    margin: 0;
    margin-top: -10px;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .why-choose-two__highlight {
        margin: 0;
        font-size: 20px;
        line-height: 34px;
        margin-top: -20px;
        margin-bottom: 32px;
    }
}

.why-choose-two__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.875em;
}

@media (min-width: 992px) {
    .why-choose-two__text {
        font-size: 16px;
    }
}

.why-choose-two__progress {
    margin-top: 30px;
    margin-bottom: 37px;
}

.why-choose-two__progress__title {
    text-transform: uppercase;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}

.why-choose-two__progress__bar {
    width: 100%;
    height: 17px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    box-shadow: inset 0px 0px 7px 0px rgba(0, 0, 0, 0.15);
    position: relative;
}

.why-choose-two__progress__inner {
    position: absolute;
    height: calc(100% - 6px);
    left: 4px;
    top: 3px;
    background-color: var(--modins-base, #C41E28);
    transition: all 700ms linear;
    width: 0px;
}

.why-choose-two__progress__number {
    position: absolute;
    bottom: calc(100% + 5px);
    right: 0;
    font-size: 14px;
    font-weight: 400;
}

.why-choose-two__link:hover {
    color: var(--modins-white, #fff);
}

.why-choose-two__link::after {
    background-color: var(--modins-black, #1c1a1d);
}

.why-choose-two__link::before {
    background-color: var(--modins-base, #C41E28);
}

/*--------------------------------------------------------------
# Funfact
--------------------------------------------------------------*/

.funfact-one {
    background-color: var(--modins-primary, #2b2b5e);
    padding-top: 80px;
    padding-bottom: 80px;
}

.funfact-one__item:hover .funfact-one__text {
    color: var(--modins-primary, #2b2b5e);
    background-color: white;
}

.funfact-one__item:hover .funfact-one__text::before {
    border-color: transparent transparent white transparent;
}

.funfact-one__item:hover i {
    transform: rotateY(180deg);
}

.funfact-one__item+.funfact-one__item {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .funfact-one__item+.funfact-one__item {
        margin-top: 0;
    }
}

.funfact-one i {
    font-size: 54px;
    margin-bottom: 15px;
    display: inline-block;
    color: var(--modins-base, #C41E28);
    transition: 0.3s;
}

.funfact-one__wrap {
    display: block;
}

.funfact-one__count {
    margin: 0;
    color: var(--modins-white, #fff);
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: inline-block;
}

.funfact-one__count.count-before {
    margin-left: -5px;
    margin-bottom: 10px;
}

.funfact-one__text {
    margin: 0;
    color: var(--modins-white, #fff);
    font-size: 16px;
    line-height: 36px;
    margin-top: 7px;
    margin-bottom: -6px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
    transition: 0.3s;
    z-index: 1;
}

.funfact-one__text::before {
    position: absolute;
    left: 15px;
    bottom: 99.99%;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent rgba(255, 255, 255, 0.1) transparent;
    transform: rotate(0deg);
    transition: 0.3s;
    z-index: -1;
}

.funfact-two {
    background-color: transparent;
    padding-bottom: 0;
}

.funfact-two.funfact-one i {
    color: var(--modins-white, #fff);
}

.funfact-two .funfact-one__item:hover .funfact-one__text {
    background-color: transparent;
    color: var(--modins-white, #fff);
}

.funfact-two .funfact-one__item {
    padding-left: 80px;
}

.funfact-two .funfact-one__list {
    position: relative;
    padding: 60px 0px;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    z-index: 1;
    border-radius: 20px;
}

.funfact-two .funfact-one__text {
    background-color: transparent;
    color: white;
    margin-top: -5px;
    padding: 0;
}

.funfact-two .funfact-one__text:hover {
    background-color: transparent;
}

.funfact-two .funfact-one__text::before {
    display: none;
}

.funfact-two .funfact-one__count.count-before {
    margin-bottom: 0;
    top: 0;
}

.funfact-two__lines {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: space-between;
    z-index: -1;
}

.funfact-two__lines img:last-child {
    margin-left: -50px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.testimonials-one {
    position: relative;
    padding-top: 160px;
    padding-bottom: 120px;
}

@media (max-width: 991px) {
    .testimonials-one {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

.testimonials-one__dots .owl-dot {
    width: 36px;
    height: 3px;
    display: inline-block;
    outline: 0;
    border: 0;
}

.testimonials-one__dots .owl-dot.active {
    background-color: var(--modins-base, #C41E28);
}

.testimonials-one__dots .owl-dot+.owl-dot {
    margin-left: 10px;
}

.testimonials-one__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    background-size: cover;
}

.testimonials-one .container-fluid {
    margin-right: 0;
}

@media (min-width: 1200px) {
    .testimonials-one .container-fluid {
        display: flex;
        margin-right: -160px;
    }
}

.testimonials-one__top {
    overflow: hidden;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .testimonials-one__top {
        margin-top: 0;
    }
}

.testimonials-one__top__left {
    background-color: var(--modins-primary, #2b2b5e);
    margin-bottom: 10px;
    border-bottom: 4px solid var(--modins-base, #C41E28);
    position: relative;
    z-index: 1;
    padding: 60px 30px;
}

@media (min-width: 992px) {
    .testimonials-one__top__left {
        padding: 60px;
    }
}

.testimonials-one__top__left::before {
    content: "\e914";
    font-family: "icomoon" !important;
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 43px;
    line-height: 1;
    color: var(--modins-white, #fff);
}

.testimonials-one__top__left::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    width: 140px;
    height: 140px;
    border-radius: 0% 0% 0% 50%;
    transform: translateY(-30%) translateX(30%);
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    z-index: -1;
}

.testimonials-one__top__left .shape-one {
    position: absolute;
    top: 100%;
    left: 60px;
}

.testimonials-one__avatas {
    opacity: 0.3;
}

.testimonials-one__avatas .avata-1 {
    position: absolute;
    left: 40%;
    top: 105px;
    z-index: -1;
    animation: treeMove infinite 5s;
}

.testimonials-one__avatas .avata-2 {
    position: absolute;
    bottom: 135px;
    right: 15%;
    z-index: -1;
    animation: treeMove infinite 7s;
}

.testimonials-one__avatas .avata-3 {
    top: 105px;
    position: absolute;
    left: 70%;
    z-index: -1;
    animation: treeMove infinite 9s;
}

.testimonials-one__avatas .avata-4 {
    position: absolute;
    right: 10%;
    top: 40%;
    z-index: -1;
    animation: treeMove infinite 7s;
}

.testimonials-one__avatas .avata-5 {
    position: absolute;
    left: 40%;
    bottom: 135px;
    z-index: -1;
    animation: treeMove infinite 4.5s;
}

.testimonials-one__content {
    color: var(--modins-white, #fff);
}

.testimonials-one__name {
    font-size: 20px;
    font-weight: 700;
    line-height: 22px;
    color: var(--modins-primary, #2b2b5e);
}

.testimonials-one__designation {
    margin-bottom: 0;
    margin-top: -5px;
}

.testimonials-one__image {
    margin-left: 0px;
    margin-top: 70px;
    display: flex;
    align-items: center;
}

@media (min-width: 992px) {
    .testimonials-one__image {
        margin-left: 160px;
        margin-top: 0;
    }
}

.testimonials-one__rating {
    color: var(--modins-base, #C41E28);
}

.testimonials-one__heading {
    margin-bottom: 60px;
    max-width: 500px;
    text-align: center;
    margin: 0 auto;
}

@media (min-width: 1200px) {
    .testimonials-one__heading {
        max-width: 450px;
        flex-shrink: 0;
        margin-right: 100px;
        margin-left: -100px;
        text-align: left;
    }
}

@media (min-width: 1500px) {
    .testimonials-one__heading {
        margin-left: 175px;
    }
}

.testimonials-one .sec-title {
    margin-bottom: 30px;
}

.testimonials-one .sec-title__title {
    color: var(--modins-white, #fff);
}

.testimonials-one .sec-title__tagline {
    color: #a0a0c0;
}

.testimonials-one__info {
    color: #a0a0c0;
    margin-bottom: 60px;
}

.testimonials-one .row {
    --bs-gutter-x: 15px;
}

.testimonials-one--page {
    padding-top: 120px;
}

.testimonials-one--page .testimonials-one__carousel .owl-dots {
    position: relative;
    margin-top: 60px !important;
    left: 0;
    right: 0;
    text-align: center;
}

.testimonials-one .owl-carousel .owl-item .avata {
    width: inherit;
    width: 93px;
    height: 93px;
    border-radius: 50%;
    border: 4px solid var(--modins-base, #C41E28);
    padding: 10px;
    margin-right: 15px;
}

.testimonials-one__carousel .owl-dots {
    margin-top: 30px !important;
}

@media (min-width: 1200px) {
    .testimonials-one__carousel .owl-dots {
        position: absolute;
        left: -29%;
        margin-top: 0px !important;
    }
}

.testimonials-one__carousel .owl-dots .active span {
    background-color: var(--modins-base, #C41E28) !important;
}

.testimonials-one__carousel .owl-dots span {
    display: inline-block;
    width: 36px;
    height: 3px;
    border: 0 !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.testimonials-one--home .sec-title {
    text-align: left;
}

.testimonials-one--home .sec-title__title {
    color: var(--modins-primary, #2b2b5e);
}

.testimonials-two {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}

.testimonials-two__shape {
    position: absolute;
    right: 0;
    top: 0;
    display: none;
    animation: treeMove infinite 8s;
}

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

.testimonials-two .sec-title {
    text-align: center;
}

.testimonials-two .owl-carousel .owl-item img {
    width: inherit;
}

.testimonials-two__card {
    text-align: center;
}

.testimonials-two__rating {
    color: var(--modins-white, #fff);
    display: block;
    text-align: center;
    background-color: #e2dfeb;
    letter-spacing: 3px;
    transition: 0.3s;
    font-size: 12px;
}

.testimonials-two__content {
    position: relative;
    padding: 40px 20px;
}

.testimonials-two__content::before {
    content: url(../images/shapes/testi-shape-3-1.png);
    position: absolute;
    top: 99%;
    left: 0;
    right: 0;
}

@media (min-width: 992px) {
    .testimonials-two__content {
        padding: 40px 60px;
    }
}

.testimonials-two__top__left {
    border: 1px solid var(--modins-border-color, #e0ddea);
    margin-bottom: 40px;
    transition: 0.3s;
}

.testimonials-two__top__left:hover {
    box-shadow: 0px 3px 29px 0px rgba(21, 21, 21, 0.08);
}

.testimonials-two__top__left:hover .testimonials-two__rating {
    background-color: var(--modins-base, #C41E28);
}

.testimonials-two__image {
    margin: 0 auto;
}

.testimonials-two .owl-carousel .owl-item .avata {
    width: inherit;
    margin: 0 auto;
    width: 73px;
    height: 73px;
    border-radius: 50%;
    background-color: var(--modins-white, #fff);
}

.testimonials-two__avata {
    display: inline-block;
    position: relative;
}

.testimonials-two__avata::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    z-index: -1;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    transform: scale(1.15);
}

.testimonials-two__designation {
    margin-bottom: 0;
}

.testimonials-two__name {
    font-size: 20px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: 700;
}

.testimonials-card {
    transition: all 500ms ease;
}

.testimonials-card__inner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    background-color: var(--modins-white, #fff);
    position: relative;
    padding: 45px 30px;
}

@media (min-width: 1200px) {
    .testimonials-card__inner {
        padding: 45px 40px;
    }
}

@media (min-width: 576px) {
    .testimonials-card__top {
        display: flex;
        align-items: center;
    }
}

.testimonials-card .shape-one {
    position: absolute;
    right: 0;
    top: 0;
}

.testimonials-card__image {
    flex-shrink: 0;
    margin-right: 20px;
    border-right: 10px solid var(--modins-base, #C41E28);
    transition: all 500ms ease;
    max-width: 100px;
    margin-bottom: 20px;
}

@media (min-width: 576px) {
    .testimonials-card__image {
        margin-bottom: 0;
    }
}

.testimonials-card__image img {
    max-width: 100%;
}

.testimonials-card:hover .testimonials-card__image {
    border-color: var(--modins-primary, #2b2b5e);
}

.testimonials-card__rating {
    display: flex;
    align-items: center;
}

.testimonials-card__rating i {
    color: var(--modins-base, #C41E28);
    font-size: 12px;
    letter-spacing: var(--modins-letter-space-xl, 0.2em);
}

.testimonials-card__name {
    margin: 0;
    color: var(--modins-black, #1c1a1d);
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    margin-top: 13px;
    margin-bottom: 7px;
}

.testimonials-card__designation {
    margin: 0;
    line-height: 1;
    font-size: 16px;
}

.testimonials-card__content {
    font-size: 15px;
    line-height: 30px;
    margin-top: 20px;
    padding-right: 1px;
}

.testimonials-one--page .testimonials-card__inner {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
}

.testimonials-two-slider {
    padding-bottom: 120px;
}

/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

.cta-one {
    position: relative;
    z-index: 2;
}

.cta-one__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 40px 30px;
    border-top: 10px solid var(--modins-base, #C41E28);
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
}

@media (min-width: 768px) {
    .cta-one__inner {
        padding: 60px;
    }
}

.cta-one__headline {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 30px;
}

@media (min-width: 1200px) {
    .cta-one__headline {
        margin-bottom: 0px;
    }
}

.cta-one__icon {
    font-size: 64px;
    color: var(--modins-base, #C41E28);
    margin-right: 30px;
    line-height: 1;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .cta-one__icon {
        margin-bottom: 0;
        margin-top: 7px;
    }
}

.cta-one__tagline {
    color: #a3c4e0;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    display: inline-block;
}

.cta-one__title {
    font-size: 36px;
    letter-spacing: -0.04em;
    margin-bottom: 30px;
    color: var(--modins-white, #fff);
}

@media (min-width: 992px) {
    .cta-one__title {
        margin-bottom: 0;
    }
}

.cta-one__btn .modins-btn-white {
    background-color: var(--modins-white, #fff);
    color: var(--modins-primary, #2b2b5e);
}

.cta-one__btn .modins-btn-white:hover {
    color: var(--modins-white, #fff);
}

.cta-one__btn .modins-btn-white:hover em {
    background-color: var(--modins-primary, #2b2b5e);
}

.cta-two {
    position: relative;
    background-color: var(--modins-base, #C41E28);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.cta-two__content {
    position: relative;
    padding: 85px 0 90px;
}

.cta-two__sub-title {
    font-family: var(--modins-special-font, "Alex Brush", cursive);
    color: var(--modins-white, #fff);
    font-size: 40px;
    line-height: 1.2em;
    margin: 0 0 2px;
}

.cta-two__title {
    color: var(--modins-white, #fff);
    font-size: 50px;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0 0 37px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .cta-two__title {
        font-size: 44px;
    }
}

@media (max-width: 767px) {
    .cta-two__title {
        font-size: 35px;
    }
}

.cta-two__thumb {
    position: relative;
}

.cta-two__thumb__one {
    position: relative;
    right: 35px;
    margin-top: -28px;
}

@media (max-width: 991px) {
    .cta-two__thumb__one {
        right: 0;
    }
}

.cta-two__thumb__one__shape {
    position: absolute;
    left: -40px;
    top: -40px;
    width: 545px;
    height: 408px;
}

.cta-two__thumb__one__thumb {
    width: 482px;
    height: auto;
    border: 20px solid var(--modins-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(5deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb {
        width: 100%;
    }
}

.cta-two__thumb__one__thumb img {
    width: 100%;
    height: 282px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__one__thumb img {
        height: auto;
    }
}

.cta-two__thumb__two {
    position: absolute;
    right: -48px;
    top: 195px;
    z-index: 3;
}

@media (max-width: 991px) {
    .cta-two__thumb__two {
        top: 45px;
        right: 0;
    }
}

@media (max-width: 767px) {
    .cta-two__thumb__two {
        position: relative;
        top: 0;
        right: 0;
    }
}

.cta-two__thumb__two__flower {
    position: absolute;
    right: -10px;
    top: -121px;
    z-index: 4;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__flower {
        display: none;
    }
}

.cta-two__thumb__two__flower img {
    -webkit-animation-name: float-bob-y-2;
    animation-name: float-bob-y-2;
    -webkit-animation-duration: 4s;
    animation-duration: 4s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.cta-two__thumb__two__shape {
    position: absolute;
    left: -45px;
    top: -60px;
    width: 446px;
    height: 421px;
}

.cta-two__thumb__two__thumb {
    width: 360px;
    height: auto;
    border: 20px solid var(--modins-white, #fff);
    position: relative;
    z-index: 2;
    transform: rotate(-17.2deg);
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb {
        width: 100%;
    }
}

.cta-two__thumb__two__thumb img {
    width: 100%;
    height: 215px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .cta-two__thumb__two__thumb img {
        height: auto;
    }
}

.cta-two__home {
    border-radius: 0px;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
}

.cta-two__home .cta-one__inner {
    background-image: none;
    border: 0;
}

@media (min-width: 768px) {
    .cta-two__home .cta-one__inner {
        padding: 47px;
    }
}

.cta-two__home .cta-one__btn .modins-btn-white {
    border-radius: 0;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/

.gallery-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.gallery-one .container-fluid {
    width: 100%;
    max-width: 1572px;
}

.gallery-one--page {
    padding-top: 100px;
}

.gallery-one .row {
    --bs-gutter-x: 10px;
    --bs-gutter-y: 10px;
}

@media (min-width: 992px) {
    .gallery-one__carousel .owl-nav {
        display: none;
    }
}

.gallery-one__filter__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-one__filter__list li {
    cursor: pointer;
}

.gallery-one__filter__list li span {
    display: block;
    font-size: 10px;
    background-color: var(--modins-gray, #f4f3f8);
    transition: all 500ms ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: var(--modins-letter-space, 0.1em);
    padding: 15px 20px;
    line-height: 1.2em;
}

.gallery-one__filter__list li.active span,
.gallery-one__filter__list li:hover span {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.gallery-one__card {
    position: relative;
    overflow: hidden;
    background-color: var(--modins-black, #1c1a1d);
}

.gallery-one__card img {
    transform: scale(1);
    max-width: 100%;
    transition: transform 500ms ease, opacity 500ms ease;
    opacity: 1;
}

.gallery-one__card__hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(var(--modins-base-rgb, 0, 205, 229), 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(1, 0);
    transition: transform 500ms ease;
    transform-origin: bottom center;
}

.gallery-one__card__hover .img-popup {
    position: relative;
}

.gallery-one__card:hover img {
    transform: scale(1.05);
    opacity: 0.9;
    mix-blend-mode: screen;
}

.gallery-one__card:hover .gallery-one__card__hover {
    transform-origin: top center;
    transform: scale(1, 1);
}

.gallery-one__card__icon {
    width: 32px;
    height: 32px;
    display: block;
    position: relative;
}

.gallery-one__card__icon::after,
.gallery-one__card__icon::before {
    content: "";
    width: 2px;
    height: 100%;
    background-color: var(--modins-white, #fff);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.gallery-one__card__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/*--------------------------------------------------------------
# Sidebar
--------------------------------------------------------------*/

.sidebar__single {
    background-color: var(--modins-gray, #f4f3f8);
    padding: 50px 30px;
}

.sidebar__single+.sidebar__single {
    margin-top: 30px;
}

.sidebar__title {
    margin: 0;
    line-height: 1em;
    font-size: 18px;
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: 26px;
    margin-left: 20px;
}

@media (min-width: 768px) {
    .sidebar__title {
        font-size: 22px;
    }
}

.sidebar__search-wrap {
    background-color: var(--modins-base, #C41E28);
    padding: 30px 30px;
}

.sidebar__search {
    position: relative;
    margin: -10px;
}

@media (min-width: 1200px) {
    .sidebar__search {
        margin: -20px;
    }
}

.sidebar__search input[type=search],
.sidebar__search input[type=text] {
    outline: none;
    width: 100%;
    height: 64px;
    background-color: transparent;
    font-size: 18px;
    color: var(--modins-white, #fff);
    border: 0;
    padding-left: 40px;
    padding-right: 70px;
    transition: all 500ms ease;
}

.sidebar__search button[type=submit] {
    border: none;
    outline: none;
    background-color: rgba(0, 0, 0, 0);
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    width: auto;
    font-size: 22px;
    color: var(--modins-white, #fff);
}

.sidebar__posts {
    margin-bottom: 0;
}

.sidebar__posts__item {
    display: flex;
    align-items: center;
    padding: 20px;
    transition: 0.5s;
}

.sidebar__posts__item:hover {
    background-color: var(--modins-white, #fff);
}

.sidebar__posts__item:last-child {
    margin-bottom: -20px;
}

.sidebar__posts__item:first-child {
    margin-top: -20px;
}

.sidebar__posts__image {
    flex-shrink: 0;
    margin-right: 20px;
}

.sidebar__posts__title {
    margin: 0;
    color: var(--modins-primary, #2b2b5e);
    font-size: 18px;
    font-weight: 600;
    line-height: 25px;
}

.sidebar__posts__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.sidebar__posts__title a:hover {
    background-size: 100% 1px;
}

.sidebar__posts__meta {
    margin: 0;
    line-height: 1em;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.sidebar__posts__meta a {
    display: inline-flex;
    align-items: center;
    color: var(--modins-text, #82828a);
    font-size: 14px;
    line-height: 1em;
    transition: all 500ms ease;
}

.sidebar__posts__meta a:hover {
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 1px currentColor;
}

.sidebar__posts__meta a i {
    color: var(--modins-base, #C41E28);
    margin-right: 3px;
}

.sidebar__categories {
    margin-bottom: -18px;
    margin-top: -18px;
}

.sidebar__categories li a {
    font-size: 16px;
    color: var(--modins-text, #82828a);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    padding: 7px 20px;
}

.sidebar__categories li a::after {
    content: "\e903";
    font-family: "icomoon" !important;
    transition: all 500ms ease;
    font-size: 16px;
    transform: scale(0);
}

.sidebar__categories li a:hover {
    padding: 7px 20px;
    background-color: var(--modins-white, #fff);
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 1px currentColor;
}

.sidebar__categories li a:hover::after {
    text-shadow: 0 0 0px currentColor;
    color: var(--modins-base, #C41E28);
    transform: scale(1);
}

.sidebar__projects__card {
    position: relative;
}

.sidebar__projects__card__image img {
    width: 100%;
}

.sidebar__projects__card__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(var(--modins-white-rgb, 255, 255, 255), 0) 40%, var(--modins-black, #1c1a1d) 100%);
}

.sidebar__projects__card__title {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: bold;
    color: var(--modins-white, #fff);
    text-transform: uppercase;
    margin: 0;
    margin-bottom: -4px;
    max-width: 70px;
}

.sidebar__projects__card__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: inherit;
}

.sidebar__projects__card__title a:hover {
    background-size: 100% 1px;
}

.sidebar__projects__carousel .owl-nav.disabled+.owl-dots {
    margin-top: 0;
}

.sidebar__projects__carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    right: 30px;
    gap: 5px;
}

.sidebar__projects__carousel .owl-dots .owl-dot span {
    background-color: var(--modins-white, #fff);
    box-shadow: 0 0 2px rgba(var(--modins-white, #fff), 1);
    border-width: 2px;
    opacity: 0.2;
}

.sidebar__projects__carousel .owl-dots .owl-dot:hover span,
.sidebar__projects__carousel .owl-dots .owl-dot.active span {
    opacity: 1;
    background-color: rgba(var(--modins-white-rgb, 255, 255, 255), 0);
    border-color: rgba(var(--modins-white-rgb, 255, 255, 255), 1);
    box-shadow: 0 0 0px rgba(var(--modins-white, #fff), 1);
}

.sidebar__tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 24px;
    margin-right: 24px;
}

.sidebar__tags a {
    background-color: var(--modins-white, #fff);
    font-size: 14px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
    transition: all 500ms ease;
    display: inline-flex;
    padding: 7px 20px;
}

.sidebar__tags a:hover {
    color: var(--modins-white, #fff);
    background-color: var(--modins-base, #C41E28);
}

.sidebar__comments {
    margin-top: -2px;
    margin-bottom: -2px;
}

.sidebar__comments__item {
    display: flex;
    align-items: center;
}

.sidebar__comments__item:not(:last-of-type) {
    margin-bottom: 26px;
}

.sidebar__comments__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--modins-black, #1c1a1d);
    font-size: 16px;
    color: var(--modins-white, #fff);
    margin-right: 20px;
    border-radius: 50%;
    transition: all 500ms ease;
}

.sidebar__comments__item:hover .sidebar__comments__icon {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.sidebar__comments__title {
    margin: 0;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    font-size: 15px;
    line-height: 24px;
    font-weight: 500;
    color: var(--modins-text, #82828a);
}

.sidebar__comments__title a {
    color: inherit;
    transition: all 500ms ease;
}

.sidebar__comments__title a:hover {
    color: var(--modins-black, #1c1a1d);
}

.service-sidebar__single+.service-sidebar__single {
    margin-top: 30px;
}

.service-sidebar__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--modins-white, #fff);
    font-size: 25px;
    padding: 32px 50px;
}

@media (min-width: 768px) {
    .service-sidebar__title {
        font-size: 30px;
    }
}

.service-sidebar__nav li a {
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 500ms ease;
    padding: 10.5px 30px;
    font-weight: 700;
    background-color: var(--modins-gray, #f4f3f8);
    z-index: 1;
    position: relative;
}

.service-sidebar__nav li a::after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    transition: all 300ms ease;
    font-size: 16px;
    opacity: 1;
}

.service-sidebar__nav li a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    display: inline-block;
    color: var(--modins-white, #fff);
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #E41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #E41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #E41E28 100%);
    z-index: -1;
    transition: 0.5s;
}

.service-sidebar__nav li.current a,
.service-sidebar__nav li:hover a {
    color: var(--modins-white, #fff);
}

.service-sidebar__nav li.current a::before,
.service-sidebar__nav li:hover a::before {
    width: 100%;
}

.service-sidebar__nav li+li {
    margin-top: 10px;
}

.service-sidebar__discount {
    padding: 40px;
    background-size: cover;
}

.service-sidebar__discount__icon i {
    font-size: 24px;
    font-weight: 500;
    color: var(--modins-base, #C41E28);
    margin-bottom: 20px;
    display: inline-block;
}

.service-sidebar__discount__title {
    margin: 0;
    font-weight: 500;
    color: var(--modins-primary, #2b2b5e);
    font-size: 18px;
    line-height: 1.2em;
    margin-top: -5px;
    margin-bottom: 20px;
}

.service-sidebar__discount__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-sidebar__discount__title a:hover {
    background-size: 100% 1px;
}

.service-sidebar__discount__title a:hover {
    color: var(--modins-base, #C41E28);
}

.service-sidebar__discount__link {
    font-weight: 500;
    font-size: 12px;
    padding: 10.75px 29.25px;
}

.service-sidebar__contact {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: cover;
    position: relative;
    z-index: 1;
}

.service-sidebar__contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: inline-block;
    z-index: -1;
    background-color: var(--modins-primary, #2b2b5e);
    opacity: 0.9;
}

.service-sidebar__contact__icon {
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    width: 80px;
    height: 80px;
    box-shadow: 0 0 0 11px rgba(var(--modins-black-rgb, 28, 26, 29), 0.1);
    background-color: var(--modins-base, #C41E28);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 500ms ease;
    margin-bottom: 22px;
}

.service-sidebar__contact__icon i {
    color: var(--modins-white, #fff);
    font-size: 24px;
    transition: color 500ms ease, transform 500ms ease;
    transform: scale(1);
}

.service-sidebar__contact__icon:hover {
    background-color: var(--modins-white, #fff);
    box-shadow: 0 0 0 11px rgba(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.service-sidebar__contact__icon:hover i {
    transform: scale(0.9);
    color: var(--modins-black, #1c1a1d);
}

.service-sidebar__contact__title {
    margin: 0;
    color: var(--modins-white, #fff);
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    margin-bottom: 23px;
    line-height: 1.2em;
    max-width: 230px;
    border-bottom: 1px solid rgba(var(--modins-white-rgb, 255, 255, 255), 0.1);
    padding-bottom: 20px;
}

@media (min-width: 992px) {
    .service-sidebar__contact__title {
        font-size: 30px;
    }
}

.service-sidebar__contact__number {
    color: var(--modins-white, #fff);
    font-size: 20px;
    line-height: 26px;
    font-weight: 500;
    margin-bottom: 0;
}

.service-sidebar__contact__number span {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: var(--modins-letter-space, 0.1em);
}

.service-sidebar__contact__number a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-sidebar__contact__number a:hover {
    background-size: 100% 1px;
}

/*--------------------------------------------------------------
# Blog details
--------------------------------------------------------------*/

.blog-details .blog-card__image img {
    transform: scale(1);
    transform: translatex(0%) scalex(1);
    opacity: 1;
    filter: blur(0px);
}

.blog-details .blog-card:hover .blog-card__image img {
    transform: scale(1);
    transform: translatex(0%) scalex(1);
    opacity: 1;
    filter: blur(0px);
}

.blog-details .blog-card-two__text {
    margin: 0;
}

.blog-details .blog-card-two__text+.blog-card-two__text {
    margin-top: 31px;
}

.blog-details .blog-card__title {
    margin-bottom: 10px;
    font-size: 34px;
}

.blog-details .blog-card-two__content {
    padding-bottom: 50px;
    border-bottom: 1px solid var(--modins-border-color, #e0ddea);
}

.blog-details__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 30px;
}

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

.blog-details__tags__title {
    margin: 0;
    line-height: 1em;
    font-size: 20px;
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: -4px;
    color: var(--modins-primary, #2b2b5e);
}

.blog-details__tags .sidebar__tags a {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.blog-details__tags .sidebar__tags a:hover {
    background-color: var(--modins-primary, #2b2b5e);
}

.blog-details .sidebar__posts__item:first-child {
    margin-top: 0;
}

.blog-details .sidebar__posts__item:last-child {
    margin-bottom: 0;
}

.blog-details .sidebar__tags {
    margin-left: 0;
    margin-right: 0;
}

.blog-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-details__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--modins-gray, #f4f3f8);
    font-size: 14px;
    color: var(--modins-black, #1c1a1d);
    transition: all 500ms ease;
    border-radius: 50%;
}

.blog-details__social a:hover {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.blog-details .sidebar__posts__title {
    font-size: 22px;
    line-height: 1.2;
    color: var(--modins-primary, #2b2b5e);
    font-weight: 600;
    letter-spacing: -0.04em;
}

.blog-details .sidebar__posts__item:not(:last-of-type) {
    border: 0;
    margin-bottom: 0;
}

.blog-details__paginations {
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
    .blog-details__paginations {
        grid-template-columns: repeat(2, 1fr);
    }
}

.blog-details__paginations .sidebar__posts__item {
    transition: 0.5s;
}

.blog-details__paginations .sidebar__posts__item:hover {
    background-color: var(--modins-base, #C41E28);
}

.blog-details__paginations .sidebar__posts__item:hover .sidebar__posts__title {
    color: var(--modins-white, #fff);
}

.blog-details__paginations .sidebar__posts__item {
    background-color: var(--modins-gray, #f4f3f8);
    padding: 30px !important;
}

@media (min-width: 992px) {
    .blog-details__paginations .sidebar__posts__item {
        padding: 60px !important;
    }
}

/*--------------------------------------------------------------
# Comments
--------------------------------------------------------------*/

.comments-one {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-one {
        margin-top: 55px;
    }
}

.comments-one__title {
    margin: 0;
    font-size: 25px;
    color: var(--modins-black, #1c1a1d);
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: -4px;
}

@media (min-width: 992px) {
    .comments-one__title {
        font-size: 30px;
    }
}

.comments-one__list {
    margin: 0;
    margin-top: 35px;
}

@media (min-width: 768px) {
    .comments-one__card {
        display: flex;
        align-items: flex-start;
    }
}

.comments-one__card:not(:first-of-type) {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--modins-border-color, #e0ddea);
}

@media (min-width: 1200px) {
    .comments-one__card:not(:first-of-type) {
        margin-top: 50px;
        padding-top: 50px;
    }
}

@media (min-width: 768px) {
    .comments-one__card__image {
        margin-right: 30px;
    }
}

@media (min-width: 1200px) {
    .comments-one__card__image {
        margin-right: 45px;
    }
}

.comments-one__card__image img {
    border-radius: 50%;
}

.comments-one__card__title {
    margin: 0;
    font-size: 20px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
    .comments-one__card__title {
        margin-bottom: 21px;
    }
}

.comments-one__card__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
    margin-bottom: 20px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .comments-one__card__text {
        margin-bottom: 0;
    }
}

.comments-one__card__reply {
    padding: 6.5px 18px;
    font-size: 12px;
    font-weight: 600;
    background-color: var(--modins-primary, #2b2b5e);
}

.comments-one__card__reply:hover {
    background-color: var(--modins-base, #C41E28);
}

@media (min-width: 768px) {
    .comments-one__card__reply {
        position: absolute;
        top: 0;
        right: 0;
    }
}

.comments-one__card__reply:hover {
    color: var(--modins-white, #fff);
}

.comments-one__card__reply::after {
    background-color: var(--modins-base, #C41E28);
}

.comments-one__card__reply::before {
    background-color: var(--modins-black, #1c1a1d);
}

.comments-one__card__content {
    position: relative;
}

.comments-form {
    margin-top: 40px;
}

@media (min-width: 1200px) {
    .comments-form {
        margin-top: 55px;
    }
}

.comments-form__title {
    margin: 0;
    font-size: 25px;
    color: var(--modins-primary, #2b2b5e);
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: -4px;
}

@media (min-width: 992px) {
    .comments-form__title {
        font-size: 30px;
    }
}

.comments-form__form {
    margin-top: 45px;
}

/*--------------------------------------------------------------
# login
--------------------------------------------------------------*/

.login-page {
    position: relative;
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .login-page {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.login-page__info {
    background-color: var(--modins-gray, #f4f3f8);
    padding: 13px 30px 15px;
    margin-bottom: 72px;
}

@media (max-width: 991px) {
    .login-page__info {
        margin-bottom: 20px;
    }
}

.login-page__info p {
    margin: 0;
    font-size: 14px;
}

.login-page__info p span {
    color: var(--modins-black, #1c1a1d);
}

.login-page__info p a {
    display: inline-block;
    color: var(--modins-base, #C41E28);
    transition: all 500ms ease;
}

.login-page__info p a:hover {
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 1px currentColor;
}

.login-page__wrap {
    position: relative;
}

.login-page__wrap__title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 34px;
    color: var(--modins-primary, #2b2b5e);
}

@media (max-width: 991px) {
    .login-page__wrap__title {
        margin-top: 50px;
    }
}

.login-page__form {
    position: relative;
    display: block;
    padding: 60px;
    border: 1px solid var(--modins-border-color, #e0ddea);
}

@media (min-width: 991px) and (max-width: 1199px) {
    .login-page__form {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .login-page__form {
        padding: 30px 22px;
    }
}

.login-page__form-input-box {
    position: relative;
    display: block;
    margin-bottom: 20px;
}

.login-page__form-input-box input[type=email],
.login-page__form-input-box input[type=password] {
    height: 58px;
    width: 100%;
    border: none;
    background-color: var(--modins-gray, #f4f3f8);
    padding-left: 30px;
    padding-right: 30px;
    outline: none;
    font-size: 14px;
    color: var(--modins-text, #82828a);
    display: block;
    font-weight: 500;
}

.login-page__checked-box {
    position: relative;
    display: block;
    margin-top: -8px;
    margin-bottom: 15px;
}

.login-page__checked-box label {
    position: relative;
    display: inline-block;
    padding-left: 30px;
    margin-right: 0px;
    margin-bottom: 0;
    color: var(--modins-text, #82828a);
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    text-transform: none;
    cursor: pointer;
}

.login-page__checked-box label span:before {
    position: absolute;
    top: 2px;
    left: 3px;
    display: block;
    border-bottom: 2px solid var(--modins-border-color, #e0ddea);
    border-right: 2px solid var(--modins-border-color, #e0ddea);
    content: "";
    width: 5px;
    height: 8px;
    pointer-events: none;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    opacity: 0;
}

.login-page__checked-box input[type=checkbox] {
    display: none;
}

.login-page__checked-box input[type=checkbox]+label span {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    background: transparent;
    cursor: pointer;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
    border: 1px solid var(--modins-border-color, #e0ddea);
}

.login-page__checked-box input[type=checkbox]:checked+label span:before {
    opacity: 1;
}

.login-page__form-btn-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.login-page__form-btn-box .modins-btn {
    padding-left: 47px;
    padding-right: 47px;
}

.login-page__form-forgot-password {
    position: relative;
    display: block;
    margin-left: 0px;
    flex: 0 0 100%;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .login-page__form-forgot-password {
        margin-left: 20px;
        flex: 0 0 auto;
        margin-top: 0;
    }
}

.login-page__form-forgot-password a {
    font-size: 14px;
    font-weight: 500;
    color: var(--modins-text, #82828a);
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.login-page__form-forgot-password a:hover {
    background-size: 100% 1px;
}

.login-page__form-forgot-password a:hover {
    color: var(--modins-base, #C41E28);
}

/*--------------------------------------------------------------
# error 404
--------------------------------------------------------------*/

.error-404 {
    padding-top: 140px;
    padding-bottom: 120px;
    text-align: center;
}

.error-404__title {
    font-size: 100px;
    line-height: 1;
    letter-spacing: 10px;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    text-shadow: 10px 10px 0 var(--modins-gray), -10px -10px 0 var(--modins-gray), 10px -10px 0 var(--modins-gray), -10px 10px 0 var(--modins-gray), 10px 10px 0 var(--modins-gray);
}

@media (min-width: 768px) {
    .error-404__title {
        font-size: 200px;
    }
}

@media (min-width: 992px) {
    .error-404__title {
        font-size: 400px;
        margin-top: -85px;
        margin-bottom: 50px;
    }
}

@media (min-width: 992px) {
    .error-404__title span {
        color: var(--modins-base, #C41E28);
    }
}

.error-404__title img {
    display: none;
    position: absolute;
    top: 51%;
    left: 33%;
    animation: flowerRotate 5s linear 0s infinite;
}

@media (min-width: 992px) {
    .error-404__title img {
        display: block;
    }
}

.error-404__sub-title {
    font-size: 28px;
    color: var(--modins-primary, #2b2b5e);
    margin: 0;
    line-height: 1.2em;
    margin-bottom: 15px;
    font-weight: bold;
}

@media (min-width: 768px) {
    .error-404__sub-title {
        font-size: 35px;
    }
}

@media (min-width: 1200px) {
    .error-404__sub-title {
        font-size: 40px;
    }
}

.error-404__text {
    font-size: 16px;
    line-height: 1.2em;
    margin: 0;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .error-404__text {
        font-size: 18px;
    }
}

.error-404__search {
    display: inline-flex;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
    max-width: 550px;
}

.error-404__search input[type=text] {
    border: none;
    outline: none;
    display: block;
    background-color: var(--modins-gray, #f4f3f8);
    color: var(--modins-text, #82828a);
    font-size: 14px;
    width: 100%;
    max-width: 550px;
    padding-left: 30px;
    height: 58px;
}

.error-404__search__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 20px;
}

@media (min-width: 768px) {
    .error-404__search__btn {
        font-size: 22px;
    }
}

/*--------------------------------------------------------------
# Faq
--------------------------------------------------------------*/

.faq-page-search {
    padding-top: 100px;
    padding-bottom: 60px;
}

@media (max-width: 767px) {
    .faq-page-search {
        padding-top: 60px;
    }
}

.faq-page-search__shape-1,
.faq-page-search__shape-2,
.faq-page-search__shape-3 {
    position: absolute;
}

.faq-page-search__shape-1 {
    top: 0;
    right: 0;
    animation: leafMove 6s linear 0s infinite;
    z-index: 10;
}

.faq-page-search__shape-2 {
    bottom: 0;
    right: 0;
    animation: messageMove 6s linear 0s infinite;
}

.faq-page-search__shape-3 {
    left: 0;
    bottom: 0;
    animation: leafMove 4s linear 0s infinite;
}

.faq-page-search__inner {
    background-size: cover;
    position: relative;
    overflow: hidden;
    text-align: center;
    margin: 0 auto;
}

.faq-page-search__title {
    margin: 0;
    font-weight: bold;
    color: var(--modins-primary, #2b2b5e);
    font-size: 25px;
    line-height: 1.2em;
    margin-bottom: 10px;
    margin-top: -7px;
}

@media (min-width: 992px) {
    .faq-page-search__title {
        font-size: 34px;
    }
}

.faq-page-search__text {
    margin: 0 auto;
    font-size: 14px;
    line-height: 30px;
    max-width: 479px;
    width: 100%;
}

.faq-page-search__form {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 25px;
}

.faq-page-search__form input[type=text] {
    border: none;
    outline: none;
    display: block;
    background-color: var(--modins-gray, #f4f3f8);
    color: var(--modins-text, #82828a);
    font-size: 14px;
    width: 100%;
    padding-left: 30px;
    height: 58px;
}

.faq-page-search__form__btn {
    border: none;
    outline: none;
    background-color: transparent;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 20px;
}

@media (min-width: 768px) {
    .faq-page-search__form__btn {
        font-size: 22px;
    }
}

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

@media (max-width: 767px) {
    .faq-page {
        padding-bottom: 60px;
    }
}

.faq-page__contact {
    padding: 30px;
}

@media (min-width: 1200px) {
    .faq-page__contact {
        padding: 50px;
    }
}

.faq-page__contact__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--modins-white, #fff);
    font-size: 20px;
    line-height: 1.2em;
    font-weight: bold;
    margin-top: -4px;
    margin-bottom: 21px;
}

@media (min-width: 768px) {
    .faq-page__contact__title {
        font-size: 24px;
    }
}

.faq-page__contact__text {
    display: flex;
    align-items: center;
    margin-bottom: -6px;
}

.faq-page__contact__text br {
    display: inherit;
}

.faq-page__contact__text>i {
    width: 40px;
    height: 40px;
    background-color: var(--modins-black, #1c1a1d);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-white, #fff);
    font-size: 14px;
    flex-shrink: 0;
    border-radius: 50%;
    margin-right: 16px;
}

.faq-page__contact__number {
    color: var(--modins-white, #fff);
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}

.faq-page__contact__number a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    transition: all 500ms ease;
}

.faq-page__contact__number a:hover {
    background-size: 100% 1px;
}

.faq-page__contact__number a:hover {
    color: var(--modins-black, #1c1a1d);
}

.faq-page__accordion .accrodion {
    border: 1px solid var(--modins-border-color, #e0ddea);
    position: relative;
}

.faq-page__accordion .accrodion::before {
    content: "";
    position: absolute;
    width: 4px;
    height: 0%;
    display: inline-block;
    background-color: var(--modins-base, #C41E28);
    transition: 0.3s;
}

.faq-page__accordion .accrodion.active::before {
    height: 100%;
}

.faq-page__accordion .accrodion+.accrodion {
    margin-top: 10px;
}

.faq-page__accordion .accrodion-title {
    padding: 28px 30px;
    cursor: pointer;
}

@media (min-width: 768px) {
    .faq-page__accordion .accrodion-title {
        padding-left: 40px;
        padding-right: 30px;
    }
}

.faq-page__accordion .accrodion-title h4 {
    font-weight: bold;
    color: var(--modins-primary, #2b2b5e);
    font-size: 18px;
    margin: 0;
    transition: all 500ms ease;
    position: relative;
}

.faq-page__accordion .accrodion-title__icon {
    position: absolute;
    right: 0px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 50%;
    border-radius: 50%;
    transform: translateY(-50%);
    background-color: var(--modins-gray, #f4f3f8);
    display: inline-block;
}

.faq-page__accordion .accrodion-title__icon::before {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-page__accordion .active .accrodion-title__icon {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.faq-page__accordion .active .accrodion-title__icon::before {
    content: "\f107";
}

.faq-page__accordion .accrodion-content .inner {
    padding: 0px 30px 24px;
    margin-top: -3px;
}

@media (min-width: 768px) {
    .faq-page__accordion .accrodion-content .inner {
        padding-left: 40px;
        padding-right: 40px;
    }
}

.faq-page__accordion .accrodion-content p {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
}

.faq-two {
    padding-top: 240px;
    padding-bottom: 120px;
    background-color: var(--modins-primary, #2b2b5e);
    position: relative;
    margin-top: -120px;
}

.faq-two__bg {
    position: absolute;
    left: 0;
    width: 100%;
    display: inline-block;
    bottom: 0;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.faq-two__left {
    margin-right: 70px;
}

.faq-two .sec-title__title {
    color: var(--modins-white, #fff);
}

.faq-two .sec-title__tagline {
    color: #a0a0c0;
}

.faq-two__banner {
    display: block;
}

@media (min-width: 768px) {
    .faq-two__banner {
        display: flex;
        align-items: center;
    }
}

.faq-two__img {
    margin-bottom: 30px;
    flex-shrink: 0;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.faq-two__img::before {
    content: "";
    position: absolute;
    right: -10px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-block;
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    z-index: -1;
    animation: textRotate infinite 5s;
}

.faq-two__img img {
    border-radius: 50%;
}

@media (min-width: 768px) {
    .faq-two__img {
        margin-right: 30px;
    }
}

.faq-two__highlight {
    color: var(--modins-base, #C41E28);
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    letter-spacing: -0.04em;
}

@media (min-width: 992px) {
    .faq-two__highlight {
        margin-bottom: 40px;
    }
}

.faq-two__info {
    font-size: 16px;
    line-height: 30px;
    color: #a0a0c0;
    margin-bottom: 30px;
}

.faq-two .faq-page__accordion .accrodion {
    border: 0;
    background-color: rgba(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.faq-two .faq-page__accordion .accrodion.active {
    background-color: rgba(var(--modins-white-rgb, 255, 255, 255), 1);
}

.faq-two .faq-page__accordion .accrodion-title h4 {
    color: var(--modins-white, #fff);
    padding-right: 30px;
}

.faq-two .faq-page__accordion .active .accrodion-title h4 {
    color: var(--modins-primary, #2b2b5e);
    padding-right: 30px;
}

.faq-two .faq-page__accordion .accrodion-title__icon {
    color: var(--modins-primary, #2b2b5e);
}

.faq-two .faq-page__accordion .active .accrodion-title__icon {
    color: var(--modins-white, #fff);
}

/*--------------------------------------------------------------
# Package
--------------------------------------------------------------*/

.package-card {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-color: var(--modins-white, #fff);
}

.package-card__image {
    position: relative;
    overflow: hidden;
}

.package-card__image>img {
    width: 100%;
    transform: scale(1);
    transition: transform 500ms ease;
}

.package-card__image__link {
    display: flex;
    width: 100%;
    height: 100%;
    background-color: rgba(var(--modins-black-rgb, 28, 26, 29), 0.7);
    position: absolute;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(-20%);
    transition: opacity 500ms ease, transform 500ms ease;
}

.package-card__image__link::before,
.package-card__image__link::after {
    content: "";
    width: 20px;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.package-card__image__link::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.package-card:hover .package-card__image>a {
    opacity: 1;
    transform: translateY(0);
}

.package-card:hover .package-card__image>img {
    transform: scale(1.05);
}

.package-card__content {
    background-repeat: no-repeat;
    background-position: right bottom;
    position: relative;
    padding: 50px;
}

.package-card__content__shape {
    display: block;
    width: auto !important;
}

.package-card__price {
    width: 81px;
    height: 81px;
    background-color: var(--modins-base, #C41E28);
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--modins-white, #fff);
    font-size: 18px;
    position: absolute;
    right: 40px;
    top: 0;
    transform: translateY(-50%);
    line-height: 1;
}

@media (min-width: 768px) {
    .package-card__price {
        font-size: 20px;
    }
}

.package-card__title {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    color: var(--modins-black, #1c1a1d);
    font-size: 22px;
    line-height: 1.2em;
    margin-top: -5px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .package-card__title {
        font-size: 24px;
    }
}

.package-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.package-card__title a:hover {
    background-size: 100% 1px;
}

.package-card__title a:hover {
    color: var(--modins-base, #C41E28);
}

.package-card__text {
    margin: 0;
    font-size: 15px;
    line-height: 30px;
    border-bottom: 1px solid var(--modins-border-color, #e0ddea);
    margin-top: 10px;
    padding-bottom: 21px;
    margin-bottom: 6px;
}

.package-card__link {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: var(--modins-letter-space, 0.1em);
    color: var(--modins-black, #1c1a1d);
    transition: all 500ms ease;
    line-height: 1em;
    position: relative;
    top: 10px;
    text-shadow: 0 0 1px currentColor;
}

.package-card__link:hover {
    color: var(--modins-base, #C41E28);
}

.package-card__link i {
    font-size: 16px;
    margin-left: 9px;
}

.package-page {
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .package-page {
        padding: 80px 0;
        padding-top: 60px;
    }
}

/*--------------------------------------------------------------
# Offer
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Membership
--------------------------------------------------------------*/

.membership-one {
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .membership-one {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.membership-one .sec-title {
    text-align: center;
    padding-bottom: 25px;
}

.membership-one__tab__list {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.membership-one__tab__list li {
    cursor: pointer;
}

.membership-one__tab__list li span {
    display: block;
    font-size: 10px;
    background-color: var(--modins-gray, #f4f3f8);
    transition: all 500ms ease;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: var(--modins-letter-space, 0.1em);
    padding: 15px 20px;
    line-height: 1.2em;
    color: var(--modins-text, #82828a);
}

.membership-one__tab__list li.active-btn span,
.membership-one__tab__list li:hover span {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.membership-one__card {
    background-repeat: no-repeat;
    background-position: top right;
    border: 1px solid var(--modins-border-color, #e0ddea);
    padding: 50px;
    background-color: var(--modins-white, #fff);
    transition: all 500ms ease;
}

.membership-one__card:hover {
    border-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.membership-one__card__price {
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    color: var(--modins-black, #1c1a1d);
    line-height: 1;
    font-size: 40px;
    line-height: 1em;
    font-weight: 500;
}

.membership-one__card__tagline {
    margin: 0;
    font-size: 16px;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    line-height: 2.5em;
    color: var(--modins-text, #82828a);
    border-bottom: 1px solid var(--modins-border-color, #e0ddea);
    padding-bottom: 16px;
    margin-bottom: 33px;
}

.membership-one__card__text {
    margin: 0;
    font-weight: 600;
    color: var(--modins-black, #1c1a1d);
    font-size: 16px;
    line-height: 2.5em;
    margin-top: 13px;
}

.membership-one__card__list {
    margin-bottom: 26px;
}

.membership-one__card__list li {
    position: relative;
    font-size: 16px;
    line-height: 2.5em;
    color: var(--modins-text, #82828a);
    display: flex;
    justify-content: center;
    align-items: center;
}

.membership-one__card__list li>i {
    font-size: 14px;
    color: var(--modins-base, #C41E28);
    margin-right: 10px;
    position: relative;
    top: 1px;
}

.membership-two {
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .membership-two {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.membership-two .sec-title {
    text-align: center;
}

.membership-two-card {
    background-repeat: no-repeat;
    background-position: top right;
    border: 1px solid var(--modins-border-color, #e0ddea);
    padding: 36px 40px;
    transition: all 500ms ease;
    background-color: var(--modins-white, #fff);
}

.membership-two-card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

@media (min-width: 992px) {
    .membership-two-card {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }
}

.membership-two-card__icon i,
.membership-two-card__icon span {
    color: var(--modins-base, #C41E28);
    font-size: 60px;
}

@media (min-width: 992px) {
    .membership-two-card__icon {
        margin-right: 30px;
    }
}

.membership-two-card__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--modins-black, #1c1a1d);
    text-transform: uppercase;
    font-size: 20px;
    line-height: 1.5em;
    font-weight: bold;
}

.membership-two-card__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.membership-two-card__title a:hover {
    background-size: 100% 1px;
}

.membership-two-card__text {
    font-size: 15px;
    line-height: 2em;
    margin: 0;
}

.membership-two-card__price {
    margin: 0;
    color: var(--modins-base, #C41E28);
    font-size: 16px;
    line-height: 1.6666666667em;
    margin-top: 10px;
}

@media (min-width: 768px) {
    .membership-two-card__price {
        font-size: 18px;
    }
}

@media (min-width: 992px) {
    .membership-two-card__price {
        margin-left: auto;
    }
}

@media (min-width: 1200px) {
    .membership-two-card__price {
        margin-top: 0;
    }
}

/*--------------------------------------------------------------
# Gift Card
--------------------------------------------------------------*/

.gift-page {
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .gift-page {
        padding: 80px 0;
        padding-top: 60px;
    }
}

@media (min-width: 992px) {
    .gift-page__carousel .owl-nav {
        display: none;
    }
}

.gift-card-one {
    background-repeat: no-repeat;
    background-position: left top;
    border: 1px solid var(--modins-border-color, #e0ddea);
    text-align: center;
    padding: 30px;
    position: relative;
    transition: all 500ms ease;
}

.gift-card-one:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
}

.gift-card-one__inner {
    padding: 45px;
    border: 6px solid var(--modins-black, #1c1a1d);
    transition: all 500ms ease;
}

.gift-card-one:hover .gift-card-one__inner {
    border-color: var(--modins-base, #C41E28);
}

.gift-card-one__flower {
    position: absolute;
    top: 0;
    right: 0;
    width: auto !important;
    animation: flowerRotate 2s linear 0s infinite;
}

.gift-card-one__title {
    margin: 0;
    text-transform: uppercase;
    color: var(--modins-black, #1c1a1d);
    font-weight: bold;
    font-size: 25px;
    line-height: 1em;
    margin-top: -5px;
}

@media (min-width: 768px) {
    .gift-card-one__title {
        font-size: 30px;
    }
}

.gift-card-one__title a {
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
    color: inherit;
}

.gift-card-one__title a:hover {
    background-size: 100% 1px;
}

.gift-card-one__title a:hover {
    color: var(--modins-base, #C41E28);
}

.gift-card-one__price {
    margin: 0;
    font-size: 20px;
    color: var(--modins-base, #C41E28);
    line-height: 1.5em;
}

.gift-card-one__code {
    margin: 0;
    font-size: 16px;
    color: var(--modins-black, #1c1a1d);
    line-height: 22px;
}

.gift-card-one__shape {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: auto !important;
    margin-top: 25px;
    margin-bottom: 25px;
}

.gift-card-one__text {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: var(--modins-letter-space-xl, 0.2em);
    line-height: 22px;
    margin-bottom: 23px;
}

.gift-card-one__link {
    font-size: 10px;
    padding: 11px 29.5px;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/

@keyframes bubbleMover {
    0% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
    }
    30% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
    50% {
        -webkit-transform: translateY(50px) translateX(100px) rotate(45deg);
        transform: translateY(50px) translateX(100px) rotate(45deg);
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
    }
    80% {
        -webkit-transform: translateY(30px) translateX(50px) rotate(15deg);
        transform: translateY(30px) translateX(50px) rotate(15deg);
        -webkit-transform-origin: left top;
        transform-origin: left top;
    }
    100% {
        -webkit-transform: translateY(0px) translateX(0) rotate(0);
        transform: translateY(0px) translateX(0) rotate(0);
        -webkit-transform-origin: center center;
        transform-origin: center center;
    }
}

@keyframes shapeMover {
    0%,
    100% {
        transform: perspective(400px) translateY(0) rotate(0deg) translateZ(0px) translateX(0);
    }
    50% {
        transform: perspective(400px) rotate(-45deg) translateZ(20px) translateY(20px) translateX(20px);
    }
}

@keyframes banner3Shake {
    0% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
    30% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    60% {
        -webkit-transform: rotate3d(1, 0, 0, 0deg);
        transform: rotate3d(1, 0, 0, 0deg);
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg);
    }
    100% {
        -webkit-transform: rotate3d(0, 1, 0, 0deg);
        transform: rotate3d(0, 1, 0, 0deg);
    }
}

@keyframes squareMover {
    0%,
    100% {
        -webkit-transform: translate(0, 0) rotate(0);
        transform: translate(0, 0) rotate(0);
    }
    20%,
    60% {
        -webkit-transform: translate(20px, 40px) rotate(180deg);
        transform: translate(20px, 40px) rotate(180deg);
    }
    30%,
    80% {
        -webkit-transform: translate(40px, 60px) rotate(0deg);
        transform: translate(40px, 60px) rotate(0deg);
    }
}

@keyframes treeMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        -webkit-transform: rotate(5deg) translateX(15px);
        transform: rotate(5deg) translateX(15px);
    }
    50% {
        -webkit-transform: rotate(10deg) translateX(30px);
        transform: rotate(10deg) translateX(30px);
    }
}

@keyframes leafMove {
    0%,
    100% {
        -webkit-transform: rotate(0deg) translateX(0);
        transform: rotate(0deg) translateX(0);
    }
    25%,
    75% {
        transform: rotate(-2deg) translateX(5px);
    }
    50% {
        transform: rotate(-4deg) translateX(10px);
    }
}

@keyframes messageMove {
    0%,
    100% {
        transform: translateX(0);
    }
    25%,
    75% {
        transform: translateX(5px);
    }
    50% {
        transform: translateX(10px);
    }
}

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

@keyframes flowerRotate {
    0%,
    100% {
        transform: rotate(0deg);
    }
    25%,
    75% {
        transform: rotate(5deg);
    }
    50% {
        transform: rotate(10deg);
    }
}

@keyframes swing {
    0% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(-6deg);
    }
}

@keyframes round {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(6deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes textclip {
    to {
        background-position: -200% center;
    }
}

/*--------------------------------------------------------------
# Mobile Nav
--------------------------------------------------------------*/

.mobile-nav__wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    transform: translateX(-100%);
    transform-origin: left center;
    transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
    visibility: hidden;
    position: fixed;
}

.mobile-nav__wrapper .container {
    padding-left: 0;
    padding-right: 0;
}

.mobile-nav__wrapper .home-showcase .row [class*=col-] {
    flex: 0 0 100%;
}

.mobile-nav__wrapper .home-showcase {
    margin-bottom: -1px;
    margin-top: 0;
    border-bottom: 1px solid RGBA(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__wrapper .home-showcase__inner {
    padding: 15px 0px;
    background-color: transparent;
    box-shadow: none;
}

.mobile-nav__wrapper .home-showcase__title {
    color: var(--modins-white, #fff);
}

.mobile-nav__wrapper.expanded {
    opacity: 1;
    transform: translateX(0%);
    visibility: visible;
    transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
}

.mobile-nav__wrapper.expanded .mobile-nav__content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
}

.mobile-nav__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--modins-black, #1c1a1d);
    opacity: 0.3;
    cursor: url(../images/close.png), auto;
}

.mobile-nav__content {
    width: 300px;
    background-color: var(--modins-black2, #141215);
    z-index: 10;
    position: relative;
    height: 100%;
    overflow-y: auto;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-100%);
    transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
}

.mobile-nav__content .main-menu__nav {
    display: block;
    padding: 0;
}

.mobile-nav__content .logo-box {
    margin-bottom: 40px;
    display: flex;
}

.mobile-nav__close {
    position: absolute;
    top: 20px;
    right: 15px;
    font-size: 18px;
    color: var(--modins-white, #fff);
    cursor: pointer;
}

.mobile-nav__close:hover {
    color: var(--modins-base, #C41E28);
}

.mobile-nav__content .main-menu__list,
.mobile-nav__content .main-menu__list ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.mobile-nav__content .main-menu__list ul {
    display: none;
    border-top: 1px solid RGBA(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list ul li>a {
    padding-left: 1em;
}

.mobile-nav__content .main-menu__list li:not(:last-child) {
    border-bottom: 1px solid RGBA(var(--modins-white-rgb, 255, 255, 255), 0.1);
}

.mobile-nav__content .main-menu__list li>a {
    display: flex;
    justify-content: space-between;
    line-height: 30px;
    color: var(--modins-white, #fff);
    font-size: 12px;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    text-transform: uppercase;
    font-weight: 500;
    height: 46px;
    letter-spacing: var(--modins-letter-space, 0.1em);
    align-items: center;
    transition: 500ms;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--modins-base, #C41E28);
}

.mobile-nav__content .main-menu__list li a button {
    width: 30px;
    height: 30px;
    background-color: var(--modins-base, #C41E28);
    border: none;
    outline: none;
    color: var(--modins-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: rotate(-90deg);
    transition: transform 500ms ease;
}

.mobile-nav__content .main-menu__list li a button.expanded {
    transform: rotate(0deg);
    background-color: var(--modins-white, #fff);
    color: var(--modins-black, #1c1a1d);
}

.mobile-nav__social {
    display: flex;
    align-items: center;
}

.mobile-nav__social a {
    font-size: 16px;
    color: var(--modins-white, #fff);
    transition: 500ms;
}

.mobile-nav__social a+a {
    margin-left: 20px;
}

.mobile-nav__social a:hover {
    color: var(--modins-base, #C41E28);
}

.mobile-nav__contact {
    margin-bottom: 0;
    margin-top: 20px;
    margin-bottom: 20px;
}

.mobile-nav__contact li {
    color: var(--modins-white, #fff);
    font-size: 14px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
}

.mobile-nav__contact li+li {
    margin-top: 15px;
}

.mobile-nav__contact li a {
    color: inherit;
    transition: 500ms;
}

.mobile-nav__contact li a:hover {
    color: var(--modins-base, #C41E28);
}

.mobile-nav__contact li>i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--modins-base, #C41E28);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 12px;
    margin-right: 10px;
    color: var(--modins-white, #fff);
}

.mobile-nav__container .main-menu__logo,
.mobile-nav__container .main-menu__right {
    display: none;
}

/*--------------------------------------------------------------
# Search Popup
--------------------------------------------------------------*/

.search-popup {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    -webkit-transition: all 1s ease;
    -khtml-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
}

.search-popup__overlay {
    position: fixed;
    width: 224vw;
    height: 224vw;
    top: calc(90px - 112vw);
    right: calc(50% - 112vw);
    z-index: 3;
    display: block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    -webkit-transform: scale(0);
    -khtml-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: transform 0.8s ease-in-out;
    -khtml-transition: transform 0.8s ease-in-out;
    -moz-transition: transform 0.8s ease-in-out;
    -ms-transition: transform 0.8s ease-in-out;
    -o-transition: transform 0.8s ease-in-out;
    transition: transform 0.8s ease-in-out;
    transition-delay: 0s;
    transition-delay: 0.3s;
    -webkit-transition-delay: 0.3s;
    background-color: #000;
    opacity: 0.9;
    cursor: url(../images/close.png), auto;
}

@media (max-width: 767px) {
    .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-110%);
    }
}

.search-popup__content {
    position: fixed;
    width: 0;
    max-width: 560px;
    padding: 30px 15px;
    left: 50%;
    top: 50%;
    opacity: 0;
    z-index: 3;
    -webkit-transform: translate(-50%, -50%);
    -khtml-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
    transition-delay: 0s, 0.8s, 0s;
    transition-delay: 0s, 0.4s, 0s;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
}

.search-popup__form {
    position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
    width: 100%;
    background-color: var(--modins-white, #fff);
    font-size: 15px;
    color: var(--modins-text, #82828a);
    border: none;
    outline: none;
    height: 66px;
    padding-left: 30px;
}

.search-popup__form .modins-btn {
    padding: 0;
    width: 66px;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    top: 0;
    right: -1px;
    border-radius: 0;
    background-color: var(--modins-base, #C41E28);
}

.search-popup__form .modins-btn em {
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: var(--modins-primary, #2b2b5e);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

.search-popup__form .modins-btn:hover {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
}

.search-popup__form .modins-btn:hover em {
    width: 500px;
    height: 500px;
    display: inline-block;
}

.search-popup.active {
    z-index: 9999;
}

.search-popup.active .search-popup__overlay {
    top: auto;
    bottom: calc(90px - 112vw);
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    transition-delay: 0s;
    -webkit-transition-delay: 0s;
    opacity: 0.9;
    -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
    transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
    .search-popup.active .search-popup__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(0%);
    }
}

.search-popup.active .search-popup__content {
    width: 100%;
    opacity: 1;
    transition-delay: 0.7s;
    -webkit-transition-delay: 0.7s;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/

.page-header {
    background-color: var(--modins-primary, #2b2b5e);
    position: relative;
    padding-top: 170px;
    padding-bottom: 170px;
}

.page-header__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/backgrounds/page-header-bg-1-1.jpg);
    background-position-y: center !important;
}

.page-header .container {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-header__title {
    margin: 0;
    font-size: 40px;
    color: var(--modins-white, #fff);
    font-weight: 600;
}

@media (min-width: 768px) {
    .page-header__title {
        font-size: 45px;
    }
}

.page-header__shape {
    display: inline-flex;
    margin-bottom: 13px;
}

.modins-breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    margin-top: 8px;
}

.modins-breadcrumb li {
    font-size: 16px;
    color: var(--modins-text-dark, #a0a0c0);
    display: flex;
    align-items: center;
}

.modins-breadcrumb li:not(:last-of-type)::after {
    content: "/";
    position: relative;
    top: -1px;
    margin-left: 10px;
    margin-right: 10px;
    color: white;
}

.modins-breadcrumb li span,
.modins-breadcrumb li a {
    color: white;
    display: inline-flex;
    line-height: 1em;
}

.modins-breadcrumb li a:hover {
    color: #fff;
}

/*--------------------------------------------------------------
# Google Map
--------------------------------------------------------------*/

.google-map {
    position: relative;
}

.google-map iframe {
    position: relative;
    display: block;
    border: none;
    height: 400px;
    width: 100%;
    mix-blend-mode: luminosity;
}

.google-map__contact {
    overflow: hidden;
    background-color: var(--modins-gray, #f4f3f8);
}

.contact-map {
    position: relative;
    margin-top: -44px;
}

.contact-map .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

/*--------------------------------------------------------------
# Client Carousel
--------------------------------------------------------------*/

.client-carousel {
    background-size: cover;
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--modins-border-color, #e0ddea);
}

.client-carousel__shape-1 {
    position: absolute;
    left: 0;
    top: 0;
}

.client-carousel__shape-2 {
    position: absolute;
    right: 0;
    top: auto;
}

@media (min-width: 992px) {
    .client-carousel__shape-2 {
        top: 0;
    }
}

.client-carousel__one__item {
    position: relative;
}

.client-carousel__one__item img {
    opacity: 0.2;
    transition: all 500ms ease;
    max-width: 100%;
}

.client-carousel__one__item:hover img {
    opacity: 0.6;
}

.client-carousel-one {
    position: relative;
}

.client-carousel-one .owl-theme .owl-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
    z-index: 2;
    line-height: 0.8;
}

.client-carousel-one .client-carousel__one__item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    transition: all 500ms ease;
    border-radius: 10px;
    overflow: hidden;
}

.client-carousel-one .client-carousel__one__item img {
    transition: all 500ms ease;
    opacity: 0.2;
    max-width: 100%;
    width: auto;
}

.client-carousel-one .client-carousel__one__item:hover {
    background-color: var(--modins-gray, #f4f3f8);
}

.client-carousel-one .client-carousel__one__item:hover img {
    opacity: 0.6;
}

/*--------------------------------------------------------------
# Hero Slider
--------------------------------------------------------------*/

.main-slider-one {
    position: relative;
    background-color: #f4f3f8;
    z-index: 4;
}

.main-slider-one__carousel {
    position: relative;
    width: 100%;
}

.main-slider-one__carousel.owl-carousel .owl-nav {
    left: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
}

.main-slider-one__carousel.owl-carousel .owl-nav img {
    width: inherit;
}

@media (max-width: 1400px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        left: 50px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        left: 20px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel.owl-carousel .owl-nav {
        top: 60%;
    }
}

.main-slider-one__carousel.owl-carousel .owl-nav button {
    transition: all 400ms ease;
    width: 52px;
    height: 52px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--modins-white, #fff);
    border-radius: 50%;
    display: block;
    color: var(--modins-primary, #2b2b5e);
    line-height: 53px;
    font-size: 16px;
    margin: 9px 0;
    text-align: center;
    display: none;
}

@media (min-width: 1600px) {
    .main-slider-one__carousel.owl-carousel .owl-nav button {
        display: block;
    }
}

.main-slider-one__carousel.owl-carousel .owl-nav button:hover {
    color: var(--modins-white, #fff);
    background-color: var(--modins-base, #C41E28);
}

.main-slider-one__carousel .owl-dots {
    right: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
}

@media (max-width: 1400px) {
    .main-slider-one__carousel .owl-dots {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .main-slider-one__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-one__carousel .owl-dots {
        top: 60%;
    }
}

.main-slider-one__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}

.main-slider-one__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--modins-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-one__carousel .owl-dots .owl-dot:hover span,
.main-slider-one__carousel .owl-dots .owl-dot.active span {
    background-color: var(--modins-white, #fff);
}

.main-slider-one__title {
    color: var(--modins-primary, #2b2b5e);
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
    margin: 0 0 17px;
    letter-spacing: -0.04em;
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(-30px);
}

@media (min-width: 768px) {
    .main-slider-one__title {
        font-size: 80px;
        line-height: 1;
    }
}

.main-slider-one__title br {
    display: none;
}

.main-slider-one__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
}

.main-slider-one__shape {
    max-width: inherit !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.main-slider-one__wrap {
    display: block;
    padding-top: 140px;
    padding-bottom: 140px;
    align-items: center;
}

@media (min-width: 768px) {
    .main-slider-one__wrap {
        display: flex;
    }
}

.main-slider-one__content {
    padding-right: 0px;
    position: relative;
}

@media (min-width: 768px) {
    .main-slider-one__content {
        padding-right: 70px;
    }
}

.main-slider-one__content .shape-1 {
    position: absolute;
    right: 0;
    top: 30px;
    top: -40px;
    -moz-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    -webkit-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    animation: swing 1s ease-in-out 1s forwards infinite alternate;
    transform-origin: right top;
    z-index: 11;
}

.main-slider-one__info {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(30px);
}

.main-slider-one__btn {
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(30px);
}

.main-slider-one__social {
    display: flex;
    gap: 10px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .main-slider-one__social {
        flex-direction: column;
        margin-top: 0px;
    }
}

.main-slider-one__social span {
    width: 76px;
    height: 76px;
    font-size: 32px;
    line-height: 76px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--modins-primary, #2b2b5e);
    background-color: var(--modins-white, #fff);
    transition: 0.3s;
}

.main-slider-one__social span:hover {
    color: var(--modins-white, #fff);
    background-color: var(--modins-primary, #2b2b5e);
}

.main-slider-one .modins-btn--base {
    padding: 15px 55px;
}

.main-slider-one .active .steap {
    animation: dash 0.5s linear;
}

@keyframes dash {
    0% {
        stroke-width: 0;
    }
    100% {
        stroke-width: 200px;
    }
}

.main-slider-one .active .main-slider-one__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-one .active .main-slider-one__title {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-one .active .main-slider-one__info {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-one .active .main-slider-one__btn {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-two {
    position: relative;
    background-color: #f4f3f8;
    z-index: 4;
}

.main-slider-two__carousel {
    position: relative;
    width: 100%;
}

.main-slider-two__carousel.owl-carousel .owl-nav {
    margin: auto 0;
    position: absolute;
    text-align: left;
    right: 118px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 120px;
}

@media (min-width: 1200px) {
    .main-slider-two__carousel.owl-carousel .owl-nav {
        right: 366px;
    }
}

.main-slider-two__carousel.owl-carousel .owl-nav img {
    width: inherit;
}

.main-slider-two__carousel.owl-carousel .owl-nav button {
    transition: all 400ms ease;
    width: 52px;
    height: 52px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--modins-white, #fff);
    border-radius: 50%;
    display: block;
    color: var(--modins-primary, #2b2b5e);
    line-height: 53px;
    font-size: 16px;
    margin: 9px 0;
    text-align: center;
    display: none;
    opacity: 0.5;
}

@media (min-width: 1300px) {
    .main-slider-two__carousel.owl-carousel .owl-nav button {
        display: block;
    }
}

.main-slider-two__carousel.owl-carousel .owl-nav button:hover {
    opacity: 1;
    color: var(--modins-primary, #2b2b5e);
    background-color: var(--modins-white, #fff);
}

.main-slider-two__carousel .owl-dots {
    right: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
}

@media (max-width: 1400px) {
    .main-slider-two__carousel .owl-dots {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .main-slider-two__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-two__carousel .owl-dots {
        top: 60%;
    }
}

.main-slider-two__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}

.main-slider-two__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--modins-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-two__carousel .owl-dots .owl-dot:hover span,
.main-slider-two__carousel .owl-dots .owl-dot.active span {
    background-color: var(--modins-white, #fff);
}

.main-slider-two__title {
    color: var(--modins-white, #fff);
    font-size: 60px;
    font-weight: 600;
    line-height: 1.2;
    display: inline-block;
    margin: 0 0 17px;
    letter-spacing: -0.04em;
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(-30px);
}

@media (min-width: 768px) {
    .main-slider-two__title {
        font-size: 80px;
        line-height: 1;
    }
}

.main-slider-two__title br {
    display: none;
}

.main-slider-two__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
}

.main-slider-two__shape {
    max-width: inherit !important;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}

.main-slider-two__wrap {
    display: block;
    padding-top: 240px;
    padding-bottom: 170px;
    align-items: center;
}

@media (min-width: 768px) {
    .main-slider-two__wrap {
        display: flex;
    }
}

.main-slider-two__content {
    padding-right: 0px;
    position: relative;
}

@media (min-width: 768px) {
    .main-slider-two__content {
        padding-right: 70px;
    }
}

.main-slider-two__content .shape-1 {
    position: absolute;
    right: 0;
    top: 30px;
    top: -40px;
    -moz-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    -webkit-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    animation: swing 1s ease-in-out 1s forwards infinite alternate;
    transform-origin: right top;
    z-index: 11;
}

.main-slider-two__info {
    color: var(--modins-white, #fff);
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 30px;
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(30px);
}

.main-slider-two__btn {
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(30px);
}

.main-slider-two__social {
    display: flex;
    gap: 10px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .main-slider-two__social {
        flex-direction: column;
        margin-top: 0px;
    }
}

.main-slider-two__social span {
    width: 76px;
    height: 76px;
    font-size: 32px;
    line-height: 76px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: var(--modins-primary, #2b2b5e);
    background-color: var(--modins-white, #fff);
}

.main-slider-two .active .steap {
    animation: dash 0.5s linear;
}

@keyframes dash {
    0% {
        stroke-width: 0;
    }
    100% {
        stroke-width: 200px;
    }
}

.main-slider-two .active .main-slider-two__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-two .active .main-slider-two__title {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-two .active .main-slider-two__info {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-two .active .main-slider-two__btn {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-three {
    position: relative;
    background-color: #f4f3f8;
    z-index: 4;
    text-align: center;
}

.main-slider-three__bottom {
    position: absolute;
    display: inline-flex;
    align-items: center;
    bottom: 0;
    right: 0;
    z-index: 11;
    background-color: var(--modins-white, #fff);
}

@media (min-width: 768px) {
    .main-slider-three__bottom {
        bottom: -17px;
    }
}

.main-slider-three__bottom__icon {
    width: 79px;
    height: 89px;
    line-height: 89px;
    font-size: 24px;
    color: var(--modins-white, #fff);
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
}

@media (min-width: 768px) {
    .main-slider-three__bottom__icon {
        width: 109px;
        height: 129px;
        font-size: 30px;
        line-height: 129px;
    }
}

.main-slider-three__bottom__content {
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
}

@media (min-width: 768px) {
    .main-slider-three__bottom__content {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.main-slider-three__bottom__content span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.main-slider-three__bottom__content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
    letter-spacing: 0.04em;
}

.main-slider-three__carousel {
    position: relative;
    width: 100%;
}

.main-slider-three__carousel.owl-carousel .owl-nav {
    margin: auto 0;
    position: absolute;
    display: flex;
    justify-content: space-between;
    right: 60px;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
}

.main-slider-three__carousel.owl-carousel .owl-nav img {
    width: inherit;
}

.main-slider-three__carousel.owl-carousel .owl-nav button {
    transition: all 400ms ease;
    width: 52px;
    height: 52px;
    outline: none;
    box-shadow: none;
    border: none;
    background-color: var(--modins-white, #fff);
    border-radius: 50%;
    display: block;
    color: var(--modins-primary, #2b2b5e);
    line-height: 53px;
    font-size: 16px;
    margin: 9px 0;
    text-align: center;
    display: none;
    opacity: 0.5;
}

@media (min-width: 992px) {
    .main-slider-three__carousel.owl-carousel .owl-nav button {
        display: inline-block;
    }
}

.main-slider-three__carousel.owl-carousel .owl-nav button:hover {
    opacity: 1;
    color: var(--modins-primary, #2b2b5e);
    background-color: var(--modins-white, #fff);
}

.main-slider-three__carousel .owl-dots {
    right: 118px;
    margin: auto 0;
    position: absolute;
    right: 0;
    text-align: left;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
}

@media (max-width: 1400px) {
    .main-slider-three__carousel .owl-dots {
        width: 60px;
    }
}

@media (max-width: 1199px) {
    .main-slider-three__carousel .owl-dots {
        width: 40px;
    }
}

@media (max-width: 767px) {
    .main-slider-three__carousel .owl-dots {
        top: 60%;
    }
}

.main-slider-three__carousel .owl-dots .owl-dot {
    display: block;
    margin: 6px 0;
}

.main-slider-three__carousel .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    display: block;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid var(--modins-white, #fff);
    margin: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.main-slider-three__carousel .owl-dots .owl-dot:hover span,
.main-slider-three__carousel .owl-dots .owl-dot.active span {
    background-color: var(--modins-white, #fff);
}

.main-slider-three__title {
    color: var(--modins-white, #fff);
    font-size: 35px;
    font-weight: 600;
    line-height: 1.3;
    display: inline-block;
    margin: 0 0 17px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(-30px);
}

@media (min-width: 768px) {
    .main-slider-three__title {
        font-size: 40px;
    }
}

.main-slider-three__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
    background-position: center center;
}

.main-slider-three__wrap {
    display: block;
    padding-top: 220px;
    padding-bottom: 200px;
    align-items: center;
}

@media (min-width: 768px) {
    .main-slider-three__wrap {
        padding-top: 300px;
        padding-bottom: 200px;
        text-align: left;
    }
}

.main-slider-three__content {
    padding-right: 0px;
    position: relative;
}

@media (min-width: 768px) {
    .main-slider-three__content {
        padding-right: 70px;
    }
}

.main-slider-three__content .shape-1 {
    position: absolute;
    right: 0;
    top: 30px;
    top: -40px;
    -moz-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    -webkit-animation: swing 1s ease-in-out 1s forwards infinite alternate;
    animation: swing 1s ease-in-out 1s forwards infinite alternate;
    transform-origin: right top;
    z-index: 11;
}

.main-slider-three__btn {
    visibility: hidden;
    transition: transform 2000ms ease, opacity 2000ms ease;
    transform: translateY(30px);
}

.main-slider-three .active .main-slider-three__sub-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1100ms;
}

.main-slider-three .active .main-slider-three__title {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-three .active .main-slider-three__info {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-three .active .main-slider-three__btn {
    visibility: visible;
    transform: translateY(0px);
}

.main-slider-one .owl-carousel .owl-item img {
    width: inherit;
}

/*--------------------------------------------------------------
# Feature Section
--------------------------------------------------------------*/

.feature-one {
    position: relative;
    z-index: 2;
    padding-bottom: 120px;
}

.feature-one .container-fluid {
    max-width: 1470px;
}

.feature-one__item {
    position: relative;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.feature-one__item::before {
    content: "";
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    opacity: 0.102;
    position: absolute;
    left: -100px;
    top: -50px;
    width: 174px;
    height: 174px;
    z-index: 2;
    transition: 0.3s;
}

.feature-one__item:hover::before {
    background-color: var(--modins-primary, #2b2b5e);
}

.feature-one__item:hover .feature-one__item__icon::before {
    bottom: 0;
    height: 100%;
}

.feature-one__item__icon {
    padding: 20px 25px;
    font-size: 24px;
    color: var(--modins-white, #fff);
    font-size: 60px;
    position: relative;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    transition: 0.3s;
    z-index: 1;
}

@media (min-width: 768px) {
    .feature-one__item__icon {
        position: absolute;
        padding: 0px 25px;
    }
}

.feature-one__item__icon::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 0;
    right: 0;
    background-color: var(--modins-base, #C41E28);
    transition: 0.3s;
    z-index: -1;
}

.feature-one__item__content {
    padding: 30px;
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .feature-one__item__content {
        padding-left: 140px;
    }
}

.feature-one__item__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--modins-primary, #2b2b5e);
}

.feature-one__item__text {
    font-size: 15px;
    line-height: 26px;
    font-weight: 500;
    margin: 9px auto 0;
}

.feature-two {
    position: relative;
    overflow: hidden;
    background-color: var(--modins-gray, #f4f3f8);
    z-index: 1;
}

.feature-two__shape {
    position: absolute;
    right: 0;
    animation: round infinite 5s;
}

.feature-two__right {
    margin-left: 0;
    margin-bottom: 120px;
}

@media (min-width: 992px) {
    .feature-two__right {
        margin-left: 70px;
        margin-bottom: 0;
    }
}

.feature-two .feature-two__img {
    margin-bottom: 40px;
}

@media (min-width: 1200px) {
    .feature-two .feature-two__img {
        margin-bottom: 0;
    }
}

@media (min-width: 576px) {
    .feature-two__feature {
        display: flex;
        align-items: center;
    }
}

.feature-two__feature__icon {
    width: 94px;
    height: 93px;
    color: var(--modins-white, #fff);
    line-height: 93px;
    display: inline-block;
    text-align: center;
    font-size: 39px;
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #E41E28 100%);
    margin-bottom: 30px;
    border-radius: 50%;
}

@media (min-width: 576px) {
    .feature-two__feature__icon {
        flex-shrink: 0;
        margin-right: 25px;
        border-radius: 50%;
    }
}

.feature-two__feature__icon i {
    display: inline-block;
    transition: 0.3s;
}

.feature-two__feature__icon:hover i {
    transform: rotateY(180deg);
}

.feature-two__feature__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
}

.feature-two__feature__info {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
}

.feature-two__feature+.feature-two__feature {
    margin-top: 30px;
}

@media (min-width: 992px) {
    .feature-two__feature+.feature-two__feature {
        margin-top: 10px;
    }
}

.feature-three {
    padding-top: 120px;
    padding-bottom: 120px;
}

.feature-three .sec-title {
    text-align: center;
}

.feature-three__item {
    text-align: center;
}

.feature-three__item:hover .feature-three__icon i {
    transform: scale(0.8);
}

.feature-three__top {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.feature-three__counter {
    font-size: 16px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 46px;
    border: 3px solid var(--modins-base, #C41E28);
    border-radius: 50%;
    position: absolute;
    left: -40px;
    z-index: 5;
    background-color: var(--modins-white, #fff);
}

.feature-three__icon {
    font-size: 54px;
    width: 107px;
    height: 107px;
    border-radius: 50%;
    display: inline-block;
    color: var(--modins-white, #fff);
    text-align: center;
    background-color: var(--modins-base, #C41E28);
    position: relative;
}

.feature-three__icon i {
    display: inline-block;
    transition: 0.3s;
}

.feature-three__content {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.feature-three__content:before {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 99.99%;
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0 20px 10px 20px;
    border-color: transparent transparent rgb(255, 255, 255) transparent;
    transform: rotate(0deg);
    transition: 0.3s;
    z-index: -1;
}

.feature-three__title {
    color: var(--modins-primary, #2b2b5e);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.feature-three__info {
    margin-bottom: 0;
}

.feature-four__info {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.feature-four__left {
    margin-bottom: 40px;
}

@media (min-width: 992px) {
    .feature-four__left {
        padding-right: 70px;
    }
}

.feature-four__feature {
    display: block;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .feature-four__feature {
        display: flex;
    }
}

.feature-four__feature__item {
    font-size: 16px;
    padding: 20px 30px;
    display: flex;
    width: 100%;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.07);
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .feature-four__feature__item {
        margin-bottom: 0;
    }
}

.feature-four__feature__item span {
    margin-right: 10px;
    color: var(--modins-base, #C41E28);
}

.feature-four__feature__item p {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--modins-primary, #2b2b5e);
}

.feature-four__list {
    margin-top: 40px;
}

.feature-four__list__item+.feature-four__list__item {
    margin-top: 30px;
}

.feature-four__list__item {
    display: flex;
    align-items: center;
}

.feature-four__list__item span {
    flex-shrink: 0;
    border-radius: 30px;
    color: var(--modins-white, #fff);
    font-size: 20px;
    width: 47px;
    height: 47px;
    line-height: 47px;
    margin-right: 20px;
    display: inline-block;
    text-align: center;
    background-color: var(--modins-primary, #2b2b5e);
}

.feature-four__list__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 0;
}

.feature-four__list p {
    margin-bottom: 0;
}

.feature-four__img {
    padding-left: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .feature-four__img {
        display: flex;
        padding-left: 60px;
    }
}

.feature-four__img-text {
    position: absolute;
    left: 12px;
    color: var(--modins-white, #fff);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transform: rotate(90deg);
    transform-origin: bottom left;
}

@media (min-width: 768px) {
    .feature-four__img-text {
        font-size: 12px;
        letter-spacing: 0.4em;
    }
}

@media (min-width: 992px) {
    .feature-four__img-text {
        font-size: 18px;
    }
}

.feature-four__img::before {
    position: absolute;
    left: 0;
    right: 0;
    z-index: -1;
    border-radius: 0 0 0 30%;
    content: "";
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
}

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

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about-one-home {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
}

.about-one-home .modins-btn {
    background-color: var(--modins-primary, #2b2b5e);
}

.about-one-home .modins-btn:hover em {
    background-color: var(--modins-base, #C41E28);
}

.about-one-home__shape {
    display: none;
}

@media (min-width: 992px) {
    .about-one-home__shape {
        display: block;
        position: absolute;
        right: 0;
        top: 0;
        animation: treeMove infinite 8s;
    }
}

@media (max-width: 767px) {
    .about-one-home {
        padding: 80px 0;
    }
}

@media (min-width: 992px) {
    .about-one-home__image {
        padding-right: 50px;
    }
}

.about-one-home__double-image {
    position: relative;
}

.about-one-home__double-image .img-1 {
    margin-bottom: 30px;
    position: relative;
    z-index: -1;
}

@media (min-width: 992px) {
    .about-one-home__double-image .img-1 {
        margin-left: -40px;
    }
}

.about-one-home__double-image .img-1 img {
    width: 100%;
}

.about-one-home__double-image .img-2 {
    position: relative;
    z-index: -1;
}

@media (min-width: 768px) {
    .about-one-home__double-image .img-2 {
        position: absolute;
        bottom: 0;
        left: -150px;
    }
}

.about-one-home__double-image .img-2 img {
    width: inherit;
}

.about-one-home__image__counter {
    position: absolute;
    bottom: 0;
    right: 80px;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 40px;
    border-radius: 0 50px 0 50px;
    border: 2px solid var(--modins-primary, #2b2b5e);
    min-width: 281px;
}

.about-one-home__image__counter::before {
    content: "";
    display: inline-block;
    position: absolute;
    left: -10px;
    top: -10px;
    bottom: -10px;
    right: -10px;
    background-color: var(--modins-white, #fff);
    z-index: -1;
    border-radius: 0 50px 0 50px;
    box-shadow: 14.982px 29.403px 87px 0px rgba(0, 0, 0, 0.1);
}

.about-one-home__image__counter .count-text {
    color: var(--modins-base, #C41E28);
    font-size: 60px;
    font-weight: 700;
    margin-right: 10px;
    flex-shrink: 0;
}

.about-one-home__image__text {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin-bottom: 0;
}

.about-one-home__image__arrow {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -2;
    animation: shapeMover infinite 62s;
}

.about-one-home__content {
    position: relative;
    padding-top: 60px;
}

@media (min-width: 768px) {
    .about-one-home__content {
        padding-top: 0;
    }
}

.about-one-home__content__list {
    margin: 0 0 30px;
    margin-top: -10px;
    padding: 0;
}

@media (max-width: 767px) {
    .about-one-home__content__list {
        display: block;
    }
}

.about-one-home__content__list li {
    font-size: 16px;
    list-style: none;
    font-weight: 600;
    color: var(--modins-primary, #2b2b5e);
    padding-left: 40px;
    line-height: 40px;
    position: relative;
}

@media (min-width: 768px) {
    .about-one-home__content__list li {
        font-size: 18px;
    }
}

.about-one-home__content__list li span {
    position: absolute;
    left: 0;
    top: 12px;
    display: inline-block;
    color: var(--modins-base, #C41E28);
    -webkit-transition: all 0.6s ease;
    -o-transition: all 0.6s ease;
    transition: all 0.6s ease;
}

.about-one-home__content__list li:hover span {
    transform: rotateY(180deg);
}

.about-one-home__content__text-one {
    font-size: 20px;
    line-height: 34px;
    color: var(--modins-base, #C41E28);
    margin: 0 0 34px;
}

.about-one-home__content__text-two {
    line-height: 30px;
    margin: 0 0 42px;
}

.about-one-home__content__author-wrapper {
    display: flex;
    align-items: center;
}

@media (max-width: 767px) {
    .about-one-home__content__author-wrapper {
        display: block;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .about-one-home__content__author-wrapper .modins-btn {
        padding: 16.25px 27px;
    }
}

.about-one-home__content__author {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 58px;
    margin: 0 0 0 20px;
}

@media (max-width: 767px) {
    .about-one-home__content__author {
        margin: 20px 0 0;
    }
}

.about-one-home__content__author__thumb {
    width: 58px;
    height: 58px;
    background-color: var(--modins-base, #C41E28);
    border-radius: 50%;
    padding: 4px;
    overflow: hidden;
}

.about-one-home__content__author__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.about-one-home__content__author__meta {
    display: block;
    position: relative;
    margin: 0;
    padding-left: 15px;
    font-size: 14px;
}

.about-one-home__content__author__meta img {
    display: block;
}

.about-one-home__content__wrapper {
    display: block;
    justify-content: space-between;
    gap: 30px;
    align-items: end;
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .about-one-home__content__wrapper {
        display: flex;
        gap: 0;
    }
}

.about-one-home__content__counter {
    padding: 10px 30px;
    border-style: solid;
    border-width: 1px;
    border-radius: 0 50px 0 50px;
    border-color: rgb(226, 223, 235);
    background-color: rgb(255, 255, 255);
    box-shadow: 14.982px 29.403px 87px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (min-width: 992px) {
    .about-one-home__content__counter {
        padding-right: 40px;
    }
}

.about-one-home__content__counter .shape-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.about-one-home__content__icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.about-one-home__content__icon i {
    font-size: 48px;
    color: var(--modins-primary, #2b2b5e);
}

.about-one-home__content__couter__head span {
    font-size: 38px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
}

.about-one-home__content__text {
    font-size: 18px;
    font-weight: 500;
}

.about-one {
    padding-top: 120px;
    padding-bottom: 120px;
}

.about-one .sec-title {
    margin-bottom: 20px;
}

.about-one__img {
    padding-left: 20px;
    position: relative;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .about-one__img {
        padding-left: 37px;
    }
}

@media (min-width: 992px) {
    .about-one__img {
        padding-left: 0px;
        margin-bottom: 0px;
        padding-right: 45px;
    }
}

.about-one__img img {
    width: 100%;
}

.about-one__shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

@media (min-width: 992px) {
    .about-one__shape-1 {
        left: -37px;
    }
}

.about-one__shape-2 {
    position: absolute;
    width: 90px;
    height: 90px;
    line-height: 90px;
    background-color: var(--modins-base, #C41E28);
    text-align: center;
    top: 0;
    left: 0;
    z-index: 1;
}

.about-one__shape-2 img {
    width: inherit;
    width: 45px;
    height: 48px;
}

@media (min-width: 992px) {
    .about-one__shape-2 {
        left: -37px;
    }
}

.about-one__text {
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .about-one__text {
        margin-bottom: 40px;
    }
}

@media (min-width: 576px) {
    .about-one__feature {
        display: flex;
        margin-bottom: 30px;
    }
}

.about-one__feature__icon {
    font-size: 60px;
    color: var(--modins-base, #C41E28);
    line-height: 1;
}

.about-one__feature__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
    line-height: 30px;
}

@media (min-width: 576px) {
    .about-one__feature__title {
        margin-bottom: 0;
    }
}

@media (min-width: 576px) {
    .about-one__feature__content {
        margin-left: 20px;
    }
}

.about-one__feature__info {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

@media (min-width: 576px) {
    .about-one__btns {
        display: flex;
        align-items: center;
    }
}

.about-one__link {
    margin-bottom: 20px;
    background-color: var(--modins-primary, #2b2b5e);
}

@media (min-width: 576px) {
    .about-one__link {
        margin-bottom: 0;
    }
}

.about-one__link em {
    background-color: var(--modins-base, #C41E28);
}

.about-one__call {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

@media (min-width: 576px) {
    .about-one__call {
        margin-left: 20px;
        margin-top: 0;
    }
}

.about-one__call:hover i {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
    border-color: transparent;
}

.about-one__call:hover b {
    background-size: 100% 1px;
    color: var(--modins-base, #C41E28);
}

.about-one__call i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
    border: 1px solid var(--modins-border-color, #e0ddea);
    font-size: 25px;
    color: var(--modins-primary, #2b2b5e);
    transition: 0.3s;
}

.about-one__call span {
    color: var(--modins-text, #82828a);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}

.about-one__call span b {
    display: inline-block;
    margin-top: 6px;
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    background-size: 0px 1px;
    transition: all 500ms ease;
}

.about-two {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
    z-index: 1;
}

.about-two__bg {
    position: absolute;
    left: 0;
    top: 0px;
    height: 100%;
    width: 375px;
    display: inline-block;
    background-color: #f4f3f8;
    opacity: 0;
    z-index: -1;
}

@media (min-width: 992px) {
    .about-two__bg {
        width: 575px;
        opacity: 1;
    }
}

.about-two__text {
    text-transform: uppercase;
    position: absolute;
    /*left: -60%;
  top: 220px;*/
    left: -130%;
    top: 620px;
    font-weight: 500;
    transform: rotate(90deg);
    background-image: linear-gradient(-225deg, #fff 0%, #fff 29%, #fff 67%, var(--modins-base) 100%);
    font-size: 45px;
    line-height: 1;
    background-size: auto auto;
    background-clip: border-box;
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    display: none;
    letter-spacing: 0.4em;
}

@media (min-width: 768px) {
    .about-two__text {
        display: inline-block;
    }
}

.about-two__text::before {
    content: "";
    width: 100%;
    height: 100%;
}

.about-two__author {
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 992px) {
    .about-two__author {
        display: flex;
    }
}

.about-two__author__link .modins-btn {
    background-color: var(--modins-primary, #2b2b5e);
}

.about-two__author__link .modins-btn em {
    background-color: var(--modins-base, #C41E28);
}

.about-two__author__wrapper {
    display: flex;
    margin-bottom: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .about-two__author__wrapper {
        margin-bottom: 0;
    }
}

.about-two__author__img {
    position: relative;
    display: inline-block;
    z-index: -1;
    margin-right: 30px;
}

.about-two__author__img img {
    border-radius: 50%;
}

.about-two__author__img::after {
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.1);
    width: 100%;
    height: 100%;
    display: inline-block;
    background-color: var(--modins-white, #fff);
    z-index: -1;
}

.about-two__author__img::before {
    border-radius: 50%;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    transform: scale(1.2);
    width: 100%;
    height: 100%;
    display: inline-block;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    z-index: -1;
}

.about-two__author__name {
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
    margin-bottom: 0;
}

.about-two__author__bio {
    line-height: 1;
    font-weight: 500;
}

.about-two__highlight {
    font-size: 18px;
    line-height: 30px;
    color: var(--modins-base, #C41E28);
    text-transform: uppercase;
    font-weight: 700;
}

@media (min-width: 576px) {
    .about-two__highlight {
        font-size: 20px;
    }
}

.about-two__left {
    position: relative;
}

.about-two__left.animated::before {
    height: 244px;
}

@media (min-width: 992px) {
    .about-two__left::before {
        content: "";
        position: absolute;
        left: 20px;
        width: 17px;
        height: 4px;
        display: inline-block;
        background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
        background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
        background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
        transition: 1s;
    }
}

@media (min-width: 1200px) {
    .about-two__left::before {
        left: 70px;
    }
}

@media (min-width: 1200px) {
    .about-two__right {
        margin-left: 60px;
    }
}

.about-two__img-1 {
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .about-two__img-1 {
        margin-left: 60px;
    }
}

@media (min-width: 1200px) {
    .about-two__img-1 {
        margin-left: 120px;
    }
}

.about-two__img-1 img {
    width: 100%;
}

@media (min-width: 992px) {
    .about-two__img-1 img {
        width: inherit;
    }
}

.about-two__img-2 {
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

.about-two__img-2::before {
    content: "";
    position: absolute;
    left: 100%;
    bottom: 36px;
    width: 31px;
    height: 34px;
    display: inline-block;
    background-color: var(--modins-base, #C41E28);
    animation: squareMover infinite 5s;
    opacity: 0;
}

@media (min-width: 992px) {
    .about-two__img-2::before {
        opacity: 1;
    }
}

@media (min-width: 992px) {
    .about-two__img-2 {
        position: absolute;
        bottom: -70px;
        margin-bottom: 0px;
    }
}

.about-two__img-2 img {
    width: 100%;
}

@media (min-width: 992px) {
    .about-two__img-2 img {
        width: inherit;
    }
}

.about-two__progress {
    position: relative;
    margin-top: 40px;
    margin-bottom: 50px;
}

.about-two__progress--title {
    font-weight: 700;
    font-size: 16px;
    color: var(--modins-primary, #2b2b5e);
    margin-bottom: 11px;
}

.about-two__progress--bar {
    position: relative;
    width: 100%;
    height: 13px;
    display: block;
    background-color: #f4f3f8;
}

.about-two__progress--inner {
    position: relative;
    display: block;
    width: 0px;
    height: 13px;
    background-color: var(--modins-base);
    -webkit-transition: all 1500ms ease;
    -ms-transition: all 1500ms ease;
    -o-transition: all 1500ms ease;
    -moz-transition: all 1500ms ease;
    transition: all 1500ms ease;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
}

.about-two__progress--number {
    position: absolute;
    right: 0;
    bottom: 18px;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    transition: all 500ms ease;
}

.about-two__progress .counted .count-text {
    opacity: 1;
}

.about-three__right {
    display: block;
    gap: 20px;
}

@media (min-width: 576px) {
    .about-three__right {
        display: flex;
    }
}

.about-three__right img {
    width: 100%;
}

@media (min-width: 576px) {
    .about-three__right img {
        width: inherit;
    }
}

.about-three__left {
    padding-right: 0;
    margin-bottom: 60px;
}

@media (min-width: 992px) {
    .about-three__left {
        padding-right: 60px;
    }
}

.about-three__img-1 {
    text-align: center;
}

.about-three__img-1 .count-text {
    font-size: 90px;
    font-weight: 700;
    line-height: 1;
    color: var(--modins-base, #C41E28);
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.about-three__img-1 .count-text::after {
    position: absolute;
    top: 0px;
    content: "+";
    font-size: 48px;
    line-height: 1;
    color: var(--modins-primary, #2b2b5e);
}

.about-three__img-1 .img {
    margin-bottom: 20px;
    text-align: left;
}

.about-three__counter {
    position: relative;
    margin-bottom: 30px;
}

@media (min-width: 576px) {
    .about-three__counter {
        margin-bottom: 0px;
    }
}

.about-three__counter__map {
    position: absolute;
    top: 0;
    animation: round 5s infinite;
}

.about-three__counter__title {
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--modins-primary, #2b2b5e);
}

.banner-one {
    margin-bottom: 120px;
}

.banner-one__inner {
    min-height: 280px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 30px;
}

@media (min-width: 992px) {
    .banner-one__inner {
        padding: 0px 60px;
    }
}

.banner-one__bg {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-size: cover;
    background-position: top center;
    z-index: -1;
}

.banner-one .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-one__title {
    font-size: 30px;
    font-weight: 700;
    color: var(--modins-white, #fff);
    margin-bottom: 20px;
    padding-right: 30px;
}

@media (min-width: 768px) {
    .banner-one__title {
        font-size: 36px;
        margin-bottom: 0px;
    }
}

.banner-one-btn:hover {
    color: var(--modins-primary, #2b2b5e);
}

.banner-one-btn em {
    background-color: var(--modins-white, #fff);
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.service-page {
    padding: 120px 0;
}

.service-home-one {
    background-size: cover;
}

.service-home-one .sec-title {
    text-align: center;
}

.service-home-one .service-card {
    overflow: hidden;
}

.service-featured {
    position: relative;
    z-index: 1;
    padding-bottom: 10px;
}

.service-featured .modins-btn:hover {
    color: var(--modins-primary, #2b2b5e);
}

.service-featured .modins-btn em {
    background-color: var(--modins-white, #fff);
}

.service-featured .service-card__bg {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-size: cover;
}

.service-featured .service-card__title {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--modins-white, #fff);
}

.service-featured .service-card__info {
    color: #a0a0c0;
    margin-bottom: 30px;
}

.service-card {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    background-color: var(--modins-white, #fff);
    text-align: center;
}

.service-card:hover {
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09);
}

.service-card:hover .service-card__image::before {
    height: 100%;
}

.service-card:hover .service-card__image::after {
    top: 6px;
    opacity: 1;
}

.service-card:hover .service-card__icon::before {
    transform: scale(1);
}

.service-card__image {
    position: relative;
}

.service-card__image img {
    clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 88%, 50% 100%, 50% 100%, 0 88%, 0% 30%);
    width: 100%;
}

.service-card__image::before {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    top: 0;
    height: 0%;
    z-index: 1;
    background-color: rgba(var(--modins-primary-rgb), 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 88%, 50% 100%, 50% 100%, 0 88%, 0% 30%);
    transition: 0.3s;
}

.service-card__image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -5px;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--modins-base);
    clip-path: polygon(0 0, 100% 0, 100% 30%, 100% 88%, 50% 100%, 50% 100%, 0 88%, 0% 30%);
    transition: 0.3s;
    opacity: 0;
}

.service-card__shape {
    position: absolute;
    bottom: 80px;
    z-index: -1;
}

.service-card__icon {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: -25px;
    font-size: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--modins-white);
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--modins-primary);
    z-index: 2;
}

.service-card__icon::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--modins-base);
    z-index: -1;
    transform: scale(0);
    transition: 0.3s;
}

.service-card__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 35px;
}

.service-card__info {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
}

.service-card__title a {
    color: var(--modins-primary);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-card__title a:hover {
    background-size: 100% 1px;
}

.service-card__title a:hover {
    color: var(--modins-base);
}

.service-two-card {
    padding: 10px;
    transition: 0.3s;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.07);
    text-align: center;
}

.service-two-card:hover {
    background-color: var(--modins-base, #C41E28);
}

.service-two-card:hover .service-two-card__inner {
    border-color: var(--modins-base, #C41E28);
}

.service-two-card:hover .service-two-card__icon::before {
    height: 100%;
}

.service-two-card__inner {
    background-color: var(--modins-white, #fff);
    padding-left: 5px;
    padding-right: 5px;
    border: 1px solid var(--modins-border-color, #e0ddea);
}

.service-two-card__icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    font-size: 32px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--modins-white);
    background-color: var(--modins-base);
    position: relative;
    z-index: 2;
}

.service-two-card__icon::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 0%;
    background-image: -moz-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(90deg, #801E28 0%, #e41E28 100%);
    z-index: -1;
    bottom: 0;
    transition: 0.3s;
}

.service-two-card__content {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 35px;
}

.service-two-card__info {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

.service-two-card__title {
    font-size: 20px;
    font-weight: 700;
}

.service-two-card__title a {
    color: var(--modins-primary);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-two-card__title a:hover {
    background-size: 100% 1px;
}

.service-two-card__title a:hover {
    color: var(--modins-base);
}

.service-two {
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: var(--modins-primary, #2b2b5e);
}

.service-two .sec-title {
    text-align: center;
}

.service-two .sec-title__title {
    color: var(--modins-white, #fff);
}

.service-two .sec-title__tagline {
    color: #a0a0c0;
}

.service-three {
    padding-top: 120px;
    padding-bottom: 120px;
}

.service-three-card {
    text-align: center;
}

.service-three-card:hover .service-three-card__content {
    background-color: rgba(var(--modins-primary-rgb, 43, 43, 94), 0.9);
}

.service-three-card:hover .service-three-card__title a {
    color: var(--modins-white, #fff);
}

.service-three-card:hover .service-three-card__info {
    color: var(--modins-text-dark, #a0a0c0);
}

.service-three-card:hover .service-three-card__img {
    opacity: 1;
}

.service-three-card:hover .service-three-card__icon {
    color: var(--modins-white, #fff);
    background-color: var(--modins-primary, #2b2b5e);
}

.service-three-card:hover .service-three-card__icon::after {
    transform: scale(1);
}

.service-three-card__icon {
    font-size: 32px;
    width: 119px;
    height: 119px;
    line-height: 119px;
    display: inline-block;
    border-radius: 50%;
    color: var(--modins-base, #C41E28);
    background-color: var(--modins-gray, #f4f3f8);
    position: relative;
    transition: 0.3s;
    z-index: 1;
}

.service-three-card__icon::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--modins-white, #fff);
    z-index: -1;
    transform: scale(1);
}

.service-three-card__icon::after {
    content: "";
    position: absolute;
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--modins-base, #C41E28);
    z-index: -1;
    transition: 0.3s;
    transform: scale(0);
}

.service-three-card__content {
    position: relative;
    background-color: rgba(var(--modins-primary-rgb, 43, 43, 94), 0);
    padding: 50px 30px;
    padding-top: 90px;
    margin-top: -60px;
    transition: 0.3s;
}

@media (min-width: 992px) {
    .service-three-card__content {
        padding: 50px 40px;
        padding-top: 90px;
    }
}

.service-three-card__title {
    font-weight: 700;
    font-size: 26px;
    letter-spacing: -0.04em;
}

.service-three-card__title a {
    color: var(--modins-primary, #2b2b5e);
}

.service-three-card__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: 0.3s;
    opacity: 0;
    filter: grayscale(1);
    background-size: cover;
}

.service-three-card .modins-btn {
    padding: 6px 25px;
    font-size: 14px;
}

.service-three-card .modins-btn:hover {
    color: var(--modins-primary, #2b2b5e);
}

.service-three-card .modins-btn em {
    background-color: var(--modins-white, #fff);
}

.service-banner {
    padding-bottom: 120px;
}

.service-banner__content {
    padding: 50px 30px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-image: -moz-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -webkit-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
    background-image: -ms-linear-gradient(0deg, #801E28 0%, #e41E28 100%);
}

@media (min-width: 768px) {
    .service-banner__content {
        margin-top: 80px;
        padding: 80px 60px;
    }
}

@media (min-width: 1200px) {
    .service-banner__content {
        margin-top: 80px;
        padding: 80px 100px;
    }
}

.service-banner__inner {
    position: relative;
}

@media (min-width: 768px) {
    .service-banner__img {
        position: absolute;
        left: 0;
    }
}

.service-banner__img img {
    width: 100%;
}

@media (min-width: 768px) {
    .service-banner__img img {
        width: inherit;
    }
}

.service-banner .shape-1 {
    position: absolute;
    left: 0;
    display: none;
}

@media (min-width: 992px) {
    .service-banner .shape-1 {
        display: inline-block;
        top: 0;
        bottom: 0;
        z-index: -1;
    }
}

.service-banner__title {
    color: var(--modins-white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

@media (min-width: 992px) {
    .service-banner__title {
        font-size: 45px;
        margin-bottom: 25px;
    }
}

.service-banner__info {
    color: #c0f8ff;
    font-size: 16px;
    line-height: 30px;
}

@media (min-width: 992px) {
    .service-banner__info {
        margin-bottom: 25px;
    }
}

.service-banner__list {
    color: var(--modins-white);
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
}

.service-banner__list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
    font-weight: 700;
    line-height: 26px;
}

.service-banner__list li+li {
    margin-top: 15px;
}

@media (min-width: 992px) {
    .service-banner__list li+li {
        margin-top: 10px;
    }
}

.service-banner__list li i {
    position: absolute;
    left: 0;
    top: 7px;
}

@media (min-width: 992px) {
    .service-banner__list li i {
        top: 5px;
    }
}

/*--------------------------------------------------------------
# Service details
--------------------------------------------------------------*/

.service-details {
    padding: 120px 0;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .service-details {
        padding: 80px 0;
        padding-top: 60px;
    }
}

.service-details__thumbnail {
    margin-bottom: 25px;
}

.service-details img {
    max-width: 100%;
}

.service-details__image__circle img {
    border-radius: 50%;
}

.service-details__title {
    margin: 0;
    color: var(--modins-primary, #2b2b5e);
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .service-details__title {
        font-size: 30px;
    }
}

@media (min-width: 992px) {
    .service-details__title {
        font-size: 34px;
    }
}

.service-details__subtitle {
    margin: 0;
    color: var(--modins-primary, #2b2b5e);
    font-weight: bold;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.service-details-list__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--modins-base, #C41E28);
    margin-bottom: 20px;
}

.service-details__text {
    margin: 0;
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}

.service-details__list {
    margin-bottom: 0;
    margin-bottom: 40px;
}

.service-details__list li {
    position: relative;
    font-size: 16px;
    line-height: 1.5em;
    padding-left: 27px;
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 0.5px currentColor;
}

@media (min-width: 768px) {
    .service-details__list li {
        line-height: 2.125em;
    }
}

.service-details__list li+li {
    margin-top: 10px;
}

@media (min-width: 768px) {
    .service-details__list li+li {
        margin-top: 0;
    }
}

.service-details__list li>i {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 14px;
    color: var(--modins-base, #C41E28);
}

@media (min-width: 768px) {
    .service-details__process {
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
        margin-top: 20px;
        gap: 1px;
    }
}

.service-details__process li {
    padding: 50px 30px;
    width: 100%;
    background-color: #f4f3f8;
    padding-left: 50px;
}

.service-details__process li+li {
    margin-top: 20px;
}

@media (min-width: 768px) {
    .service-details__process li+li {
        margin-top: 0;
    }
}

.service-details__process__icon {
    color: var(--modins-base, #C41E28);
    font-size: 50px;
    border-radius: 50%;
    margin-right: 20px;
    transition: all 500ms ease;
    margin-bottom: 25px;
    display: inline-block;
}

.service-details__process__title {
    font-size: 18px;
    font-weight: bold;
    margin: 0;
    color: var(--modins-primary, #2b2b5e);
    margin-bottom: 5px;
}

@media (min-width: 768px) {
    .service-details__process__title {
        font-size: 20px;
    }
}

.service-details__process__text {
    margin: 0;
    font-size: 15px;
    line-height: 2em;
}

.service-details__post {
    margin-bottom: 0;
}

.service-details__post li+li {
    margin-top: 10px;
}

.service-details__post__date {
    text-transform: uppercase;
    letter-spacing: var(--modins-letter-space-xl, 0.2em);
    color: var(--modins-base, #C41E28);
    font-size: 14px;
    margin: 0;
    line-height: 2.1428571429em;
}

.service-details__post__title {
    margin: 0;
    line-height: 1.875em;
    color: var(--modins-black, #1c1a1d);
    text-shadow: 0 0 0.5px currentColor;
}

.service-details__post__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.service-details__post__title a:hover {
    background-size: 100% 1px;
}

.service-details__post__title a:hover {
    color: var(--modins-black, #1c1a1d);
}

.service-details__info {
    border-top: 1px solid var(--modins-border-color, #e0ddea);
    padding-top: 55px;
    margin-top: 60px;
}

.service-details__info__title {
    font-weight: bold;
    text-transform: uppercase;
    margin: 0;
    color: var(--modins-black, #1c1a1d);
    font-size: 20px;
    margin-bottom: 24px;
}

.service-details__info__list {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .service-details__info__list li {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.service-details__info__list li+li {
    border-top: 1px solid var(--modins-border-color, #e0ddea);
    margin-top: 20px;
    padding-top: 20px;
}

.service-details__info__list__date {
    color: var(--modins-black, #1c1a1d);
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.service-details__info__list__date>i {
    color: var(--modins-base, #C41E28);
    font-size: 22px;
    margin-right: 10px;
}

.service-details__info__list__space {
    font-size: 16px;
    line-height: 24px;
    color: var(--modins-text, #82828a);
    margin-top: 10px;
    margin-bottom: 10px;
}

@media (min-width: 768px) {
    .service-details__info__list__space {
        margin-bottom: 0;
        margin-top: 0;
    }
}

.service-details__info__list__btn {
    font-size: 10px;
    padding: 10.75px 30px;
}

.service-details__faq {
    margin-top: 40px;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio-page {
    padding-top: 120px;
    padding-bottom: 120px;
}

.portfolio-one__home {
    padding-top: 120px;
    padding-bottom: 120px;
}

.portfolio-one__home .container-fluid {
    max-width: 1570px;
}

.portfolio-one__home .sec-title {
    text-align: center;
    margin-bottom: 50px;
}

.portfolio-one__home .portfolio-card__content,
.portfolio-one__home .portfolio-card__image {
    overflow: hidden;
}

.portfolio-card__image {
    position: relative;
}

.portfolio-card__image img {
    width: 100%;
}

.portfolio-card__image::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    background-color: var(--modins-primary, #2b2b5e);
    opacity: 0.4;
    transition: 0.3s;
}

.portfolio-card:hover .portfolio-card__image::before {
    height: 100%;
}

.portfolio-card:hover .portfolio-card__content {
    transform: translateY(-10px);
}

.portfolio-card__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -40px;
    margin-right: 40px;
    padding-left: 30px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 8px 40px 0px rgba(0, 0, 0, 0.07);
    position: relative;
    z-index: 1;
    padding-right: 0;
    transition: 0.3s;
}

.portfolio-card__tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--modins-text, #82828a);
    margin-bottom: 0;
}

.portfolio-card__title {
    font-size: 20px;
    font-weight: 700;
    line-height: 26px;
    margin-bottom: 0;
}

.portfolio-card__title a {
    color: var(--modins-primary);
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
    transition: all 500ms ease;
}

.portfolio-card__title a:hover {
    background-size: 100% 1px;
}

.portfolio-card__title a:hover {
    color: var(--modins-base, #C41E28);
}

.portfolio-card__link {
    font-size: 16px;
    line-height: 1;
    color: var(--modins-white);
    background-color: #c41e28;
    padding: 41px 0;
    padding-left: 35px;
    padding-right: 20px;
    display: inline-block;
    text-align: center;
    clip-path: polygon(22% 0, 100% 0%, 100% 100%, 0% 100%);
    transition: 0.3s;
}

.portfolio-card__link:hover {
    background-color: var(--modins-base, #C41E28);
}

.portfolio-details {
    padding-top: 120px;
    padding-bottom: 120px;
}

@media (min-width: 768px) {
    .portfolio-details {
        padding-bottom: 80px;
    }
}

.portfolio-details__img {
    margin-bottom: 40px;
}

.portfolio-details__img img {
    width: 100%;
}

.portfolio-details__title,
.portfolio-details h3 {
    color: var(--modins-primary);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 15px;
}

.portfolio-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--modins-primary);
    line-height: 30px;
    margin-bottom: 30px;
}

.portfolio-details p {
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    margin-bottom: 30px;
    display: inline-block;
}

.portfolio-details__list {
    padding-left: 0;
    margin-bottom: 25px;
    margin-top: 25px;
    list-style: none;
}

.portfolio-details__list li {
    color: var(--modins-primary);
    position: relative;
    padding-left: 35px;
    line-height: 30px;
}

.portfolio-details__list li+li {
    margin-top: 5px;
}

.portfolio-details__list li i {
    color: var(--modins-base);
    position: absolute;
    left: 0;
    top: 7px;
}

.portfolio-details__sidebar {
    padding: 50px 60px;
    border-top: 4px solid var(--modins-base);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.1), inset 0px 4px 0px 0px rgba(0, 205, 229, 0.004);
}

@media (min-width: 0) and (max-width: 500px) {
    .portfolio-details__sidebar {
        padding: 30px 30px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .portfolio-details__sidebar {
        padding: 30px 30px;
    }
}

.portfolio-details__info {
    margin-bottom: 30px;
}

.portfolio-details__info__tagline {
    font-size: 14px;
    font-weight: 500;
    color: var(--modins-text);
}

.portfolio-details__info__title {
    font-size: 16px !important;
    font-weight: 700;
    color: var(--modins-primary);
    line-height: 26px;
}

.portfolio-details__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-details__social a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f3f8;
    font-size: 14px;
    color: var(--modins-primary, #2b2b5e);
    transition: all 500ms ease;
    border-radius: 50%;
}

.portfolio-details__social a:hover {
    background-color: var(--modins-base, #C41E28);
    color: var(--modins-white, #fff);
}

.portfolio-carousel {
    margin-bottom: 120px;
}

.portfolio-carousel .sec-title {
    margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Instagram
--------------------------------------------------------------*/

.instagram-one {
    position: relative;
}

.instagram-one .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.instagram-one a {
    overflow: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    position: relative;
    display: block;
    width: 100%;
    height: auto;
}

.instagram-one a::before {
    position: absolute;
    content: "\f16d";
    font-family: "Font Awesome 5 Brands";
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 55%;
    transform: translateY(-50%);
    z-index: 3;
    color: var(--modins-white, #fff);
    font-size: 30px;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: all ease 0.4s;
    transition-delay: 0s;
}

.instagram-one a::after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 0;
    z-index: 1;
    opacity: 0;
    background: rgba(var(--modins-base-rgb, 0, 205, 229), 0.8);
    visibility: hidden;
    transition: all ease 0.4s;
}

.instagram-one a:hover::after {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.instagram-one a:hover::before {
    top: 50%;
    visibility: visible;
    opacity: 1;
    transition-delay: 0.4s;
}

.instagram-one a img {
    width: 100%;
    height: auto;
    transition: all ease 0.3s;
}

.instagram-one a:hover img {
    transform: scale(1.1) rotate(1.5deg);
    -moz-transform: scale(1.1) rotate(1.5deg);
    -webkit-transform: scale(1.1) rotate(1.5deg);
    -ms-transform: scale(1.1) rotate(1.5deg);
    -o-transform: scale(1.1) rotate(1.5deg);
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

/*--------------------------------------------------------------
# Opening Time
--------------------------------------------------------------*/

.opening {
    position: relative;
    z-index: 2;
    margin-bottom: -85px;
}

.opening__wrapper {
    background-color: var(--modins-base, #C41E28);
    position: relative;
    padding: 39px 0;
}

@media (max-width: 767px) {
    .opening__wrapper {
        padding: 30px 20px;
        text-align: center;
    }
}

.opening__wrapper::after {
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 100%;
    content: "";
    opacity: 0.102;
    background-image: linear-gradient(90deg, rgba(var(--modins-black-rgb, 28, 26, 29), 0) 0%, rgba(var(--modins-black-rgb, 28, 26, 29), 1) 100%);
}

@media (max-width: 991px) {
    .opening__wrapper::after {
        display: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .opening__wrapper::after {
        width: 155px;
    }
}

.opening__icon {
    font-size: 65px;
    color: var(--modins-white, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0 0;
    margin-right: -10px;
    position: relative;
    z-index: 2;
}

.opening__title {
    color: var(--modins-white, #fff);
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 700;
    margin: 27px -30px 0 33px;
    position: relative;
}

@media (max-width: 767px) {
    .opening__title {
        margin: 20px 0 0;
    }
}

.opening__info {
    font-size: 12px;
    line-height: 30px;
    color: var(--modins-white, #fff);
    text-transform: uppercase;
    padding: 12px 0 20px;
    margin: 0 0 0 -14px;
}

@media (max-width: 991px) {
    .opening__info {
        margin: 0 0 0;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .opening__info {
        margin: 0 0 0;
    }
}

.opening__info--last {
    margin-left: -45px;
    padding-left: 60px;
    border-left: 1px solid rgba(var(--modins-white-rgb, 255, 255, 255), 0.2);
}

@media (max-width: 991px) {
    .opening__info--last {
        margin: 0 0 0;
        padding: 0;
        border: none;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .opening__info--last {
        margin-left: -30px;
        padding-left: 20px;
    }
}

.opening__info__text {
    display: block;
    font-size: 20px;
    text-transform: none;
}

/*--------------------------------------------------------------
# Boxed Home
--------------------------------------------------------------*/

body.boxed-wrapper {
    position: relative;
}

body.boxed-wrapper .page-wrapper {
    max-width: 1530px;
    margin-left: auto;
    margin-right: auto;
    background-color: var(--modins-white, #fff);
    box-shadow: 0px 0px 100px 0px rgba(var(--modins-black-rgb, 28, 26, 29), 0.08);
}

/*# sourceMappingURL=modins.css.map */

.about_img_left {
    width: 250px;
    height: 280px;
    border-radius: 30% 0 0 0;
}

.about_img_right {
    width: 300px;
    height: 466px;
    border-radius: 0 30% 0 0;
}

@media ( max-width: 560px) {
    .funfact-two .funfact-one__item {
        padding-left: 0px;
    }
    .about_img_left,
    .about_img_right {
        width: 100%;
        height: auto;
    }
    .feature-two__feature {
        text-align: center !important;
    }
}

#form_submit,
#quotation_submit {
    padding: 15px 55px;
    margin-top: 20px;
    display: inline-block;
    vertical-align: middle;
    -webkit-appearance: none;
    border: none;
    outline: none !important;
    background-color: var(--modins-base, #C41E28);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--modins-font, "Plus Jakarta Sans", sans-serif);
    transition: 500ms;
    position: relative;
    z-index: 1;
    background-color: var(--modins-base, #C41E28);
    color: #fff;
    overflow: hidden;
    border-radius: 0;
}

#form_submit:hover,
#quotation_submit:hover {
    color: var(--modins-base, #C41E28);
    background-color: #fff;
}

#form_submit em,
#quotation_submit em {
    position: absolute;
    width: 0px;
    height: 0px;
    background-color: var(--modins-primary, #2b2b5e);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: -1;
}

#form_submit:hover,
#quotation_submit:hover {
    background-color: var(--modins-primary, #2b2b5e);
    color: var(--modins-white, #fff);
}

#form_submit:hover em,
#quotation_submit:hover em {
    width: 500px;
    height: 500px;
    display: inline-block;
}

.about-two__right h1,
.service-details__content h1,
.about-two__right h2,
.service-details__content h2,
.about-two__right h3,
.service-details__content h3,
.about-two__right h4,
.service-details__content h4 {
    margin-bottom: 40px;
}

.about-two__right h1,
.service-details__content h1,
.about-two__right h2,
.service-details__content h2,
.about-two__right h3,
.service-details__content h3,
.about-two__right h4,
.service-details__content h4 {
    margin: 0;
    line-height: 1.2em;
    /*font-size: 14px;*/
    font-weight: 900;
    /*text-transform: uppercase;*/
    position: relative;
    display: inline-block;
    letter-spacing: 0.1rem;
}

.about-two__right h1::after,
.service-details__content h1::after,
.about-two__right h2::after,
.service-details__content h2::after,
.about-two__right h3::after,
.service-details__content h3::after,
.about-two__right h4::after,
.service-details__content h4::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 110%;
    width: 50px;
    height: 3px;
    display: inline-block;
    transform: translateY(-50%);
    border-radius: 1.5px;
    background-color: var(--modins-base);
}

.about-two__right ul,
.service-details__content ul,
.service-two__right ul,
.funfact-one ul,
.services-tab-content ul {
    list-style: none;
}

.about-two__right ul strong,
.service-details__content ul strong {
    color: #c41e28;
}

.about-two__right ul li::before,
.service-details__content ul li::before,
.service-two__right ul li::before,
.funfact-one ul li::before,
.services-tab-content ul li::before {
    content: "⭕ ";
    color: var(--modins-base, #C41E28);
}

.about-two__right ul li p,
.service-details__content ul li p,
.service-two__right ul li p,
.funfact-one ul li p,
.services-tab-content ul li p {
    display: inline;
}

@media ( max-width: 560px) {
    .quote-btn {
        font-size: 0.8em;
        line-height: 1.3;
        background: #c41e28;
        color: white !important;
        padding: 5px 10px;
        border-radius: 2px;
        text-align: center;
    }
}

.feature-two__feature__title span {
    color: #c41e28;
}

.main-menu .main-menu__list li ul li>a span i {
    position: absolute;
    right: 20px;
    top: 15px;
    color: var(--modins-base, #C41E28);
}

.main-menu .main-menu__list li ul li>a::after {
    display: none;
}

.main-menu .main-menu__list>li>a span i {
    color: var(--modins-base, #C41E28);
}

.funfact-one {
    background-color: #c41e28;
    color: white;
}

.funfact-one h1,
.funfact-one h2,
.funfact-one h3,
.funfact-one h4,
.funfact-one h5,
.funfact-one h6 {
    color: white;
}

.services-tabs {
    border-bottom: none !important;
}

.services-tabs .nav-link {
    border-radius: 0;
    border: none;
    color: #000;
    font-weight: bold;
}

.services-tabs .nav-link.active {
    background-color: rgb(248, 249, 250) !important;
}

.services-tab-content {
    border: none !important;
    border-radius: 0;
}

.service-home-one .img-fluid {
    border-radius: 50%;
}

/* ============================================ */
/* MODERN CORPORATE REDESIGN STYLES */
/* Added: November 28, 2025 */
/* Inspired by: AXA, Allianz, AON, IBM */
/* ============================================ */

/* ============================================ */
/* MODERN CORPORATE REDESIGN STYLES */
/* Added: November 28, 2025 */
/* Inspired by: AXA, Allianz, AON, IBM */
/* ============================================ */

/* CSS Variables for Modern Design */
:root {
    --modern-primary: #C41E28;
    --modern-primary-dark: #9a1720;
    --modern-primary-light: #e02532;
    --modern-dark: #1a1a2e;
    --modern-dark-light: #2d2d44;
    --modern-gray-900: #212529;
    --modern-gray-100: #f8f9fa;
    --modern-spacing-sm: 16px;
    --modern-spacing-md: 32px;
    --modern-spacing-lg: 64px;
    --modern-spacing-xl: 96px;
    --modern-radius: 12px;
    --modern-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --modern-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ============================================ */
/* 1. MODERN HERO SECTION */
/* ============================================ */

.hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--modern-dark) 0%, var(--modern-dark-light) 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(196, 30, 40, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 40, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-modern__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: grayscale(30%);
    z-index: 0;
}

.hero-modern__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(26, 26, 46, 0.95) 0%, 
        rgba(26, 26, 46, 0.88) 50%,
        rgba(196, 30, 40, 0.15) 100%);
    z-index: 1;
}

.hero-modern__content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-modern__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(196, 30, 40, 0.15);
    border: 1px solid rgba(196, 30, 40, 0.3);
    border-radius: 50px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-modern__badge i {
    font-size: 14px;
}

.hero-modern__title {
    font-size: 68px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1.5px;
    color: white;
}

.hero-modern__title .highlight {
    color: var(--modern-primary);
    position: relative;
    display: inline-block;
}

.hero-modern__subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

.hero-modern__cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-modern__stats {
    display: flex;
    gap: 56px;
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat {
    text-align: left;
}

.hero-stat__number {
    font-size: 48px;
    font-weight: 700;
    color: var(--modern-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.hero-stat__label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Floating shapes animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(5deg); }
}

.hero-modern__shape {
    position: absolute;
    opacity: 0.04;
    animation: float 8s ease-in-out infinite;
    z-index: 2;
}

.hero-modern__shape--1 {
    top: 12%;
    left: 6%;
    width: 120px;
    height: 120px;
    background: var(--modern-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation-delay: 0s;
}

.hero-modern__shape--2 {
    bottom: 18%;
    right: 8%;
    width: 160px;
    height: 160px;
    background: var(--modern-primary);
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    animation-delay: 2.5s;
}

/* ============================================ */
/* 2. MODERN BUTTONS */
/* ============================================ */

.btn-modern {
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.5s;
}

.btn-modern:hover::before {
    left: 100%;
}

.btn-modern--primary {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(196, 30, 40, 0.3);
}

.btn-modern--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(196, 30, 40, 0.45);
    color: white;
}

.btn-modern--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-modern--outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-modern--outline-dark {
    background: transparent;
    color: var(--modern-dark);
    border: 2px solid var(--modern-dark);
}

.btn-modern--outline-dark:hover {
    background: var(--modern-dark);
    color: white;
}

.btn-modern--white {
    background: white;
    color: var(--modern-primary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn-modern--white:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    color: var(--modern-primary);
}

/* ============================================ */
/* 3. MODERN ABOUT SECTION */
/* ============================================ */

.about-modern {
    padding: 120px 0;
    background: white;
    position: relative;
}

.about-modern__image {
    position: relative;
}

.about-modern__image img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-modern__badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 40px rgba(196, 30, 40, 0.35);
    z-index: 10;
}

.about-modern__badge-inner {
    text-align: center;
}

.about-modern__badge-number {
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    display: block;
    margin-bottom: 8px;
}

.about-modern__badge-text {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.about-modern__content {
    padding-left: 40px;
}

.about-modern__text {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.about-modern__features {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-modern__feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-modern__feature i {
    font-size: 40px;
    color: var(--modern-primary);
    flex-shrink: 0;
}

.about-modern__feature h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--modern-dark);
}

.about-modern__feature p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.about-modern__cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.about-modern__call {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--modern-dark);
    transition: all 0.3s ease;
}

.about-modern__call i {
    font-size: 40px;
    color: var(--modern-primary);
}

.about-modern__call span {
    font-size: 15px;
    line-height: 1.4;
}

.about-modern__call strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--modern-primary);
}

.about-modern__call:hover {
    transform: translateX(5px);
}

/* ============================================ */
/* 4. MODERN SECTION TITLES */
/* ============================================ */

.sec-title-modern {
    margin-bottom: 48px;
}

.sec-title-modern__tagline {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--modern-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.sec-title-modern__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--modern-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.sec-title-modern__text {
    font-size: 18px;
    line-height: 1.7;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
}

.sec-title-modern.text-center .sec-title-modern__title {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================ */
/* 5. MODERN SERVICE CARDS */
/* ============================================ */

.services-modern {
    padding: 120px 0;
    background: var(--modern-gray-100);
    position: relative;
}

.service-card-modern {
    background: white;
    border-radius: var(--modern-radius);
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(196, 30, 40, 0.1);
}

.service-card-modern__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.08) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.service-card-modern__icon i {
    font-size: 32px;
    color: var(--modern-primary);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-card-modern__icon {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    transform: scale(1.08);
}

.service-card-modern:hover .service-card-modern__icon i {
    color: white;
}

.service-card-modern__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-modern__text {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-card-modern__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--modern-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-modern__link:hover {
    gap: 12px;
    color: var(--modern-primary-dark);
}

.service-card-modern__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-card-modern__link i {
    transform: translateX(4px);
}

/* ============================================ */
/* 6. MODERN STATISTICS SECTION */
/* ============================================ */

.stats-modern {
    padding: 0;
    background: white;
    position: relative;
}

.stats-modern__inner {
    background: linear-gradient(135deg, var(--modern-dark) 0%, var(--modern-dark-light) 100%);
    border-radius: 16px;
    padding: 64px 0;
    margin: -80px auto 80px;
    max-width: 1200px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-modern {
    text-align: center;
    padding: 0 24px;
    position: relative;
}

.stat-modern:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.12);
}

.stat-modern__number {
    font-size: 56px;
    font-weight: 700;
    color: var(--modern-primary);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-modern__label {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================ */
/* 7. MODERN TESTIMONIALS */
/* ============================================ */

.testimonials-modern {
    padding: 120px 0;
    background: white;
}

.testimonial-card-modern {
    background: var(--modern-gray-100);
    border-radius: var(--modern-radius);
    padding: 40px;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.testimonial-card-modern:hover {
    background: white;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 30, 40, 0.1);
}

.testimonial-card-modern__rating {
    margin-bottom: 20px;
}

.testimonial-card-modern__rating i {
    color: #ffc107;
    font-size: 16px;
    margin-right: 4px;
}

.testimonial-card-modern__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--modern-dark);
    font-style: italic;
    margin-bottom: 24px;
    position: relative;
}

.testimonial-card-modern__text::before {
    content: '"';
    font-size: 80px;
    font-family: Georgia, serif;
    color: rgba(196, 30, 40, 0.1);
    position: absolute;
    top: -20px;
    left: -10px;
    line-height: 1;
}

.testimonial-card-modern__author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-card-modern__author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 4px;
}

.testimonial-card-modern__author-info span {
    font-size: 14px;
    color: #6c757d;
}

/* ============================================ */
/* 8. MODERN CTA BANNER */
/* ============================================ */

.cta-modern {
    padding: 0 0 120px 0;
    background: white;
}

.cta-modern__inner {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    border-radius: 20px;
    padding: 72px 64px;
    position: relative;
    overflow: hidden;
}

.cta-modern__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-modern__inner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-modern__title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-modern__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* ============================================ */
/* 9. PAGE HEADER (For subpages) */
/* ============================================ */

.page-header {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--modern-dark) 0%, var(--modern-dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(196, 30, 40, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header__title {
    font-size: 52px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-header__breadcrumb {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
    position: relative;
    z-index: 2;
}

.page-header__breadcrumb li {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.page-header__breadcrumb li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header__breadcrumb li a:hover {
    color: var(--modern-primary);
}

.page-header__breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 12px;
    color: rgba(255, 255, 255, 0.4);
}

.page-header__breadcrumb li:last-child {
    color: white;
}

/* ============================================ */
/* 10. RESPONSIVE ADJUSTMENTS */
/* ============================================ */

@media (max-width: 1199px) {
    .hero-modern__title {
        font-size: 56px;
    }
    .sec-title-modern__title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .hero-modern {
        padding: 100px 0 60px;
        min-height: 70vh;
    }
    
    .hero-modern__title {
        font-size: 48px;
    }
    
    .hero-modern__subtitle {
        font-size: 18px;
    }
    
    .hero-modern__stats {
        flex-direction: column;
        gap: 32px;
        margin-top: 48px;
        padding-top: 40px;
    }
    
    .about-modern__content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-modern__badge {
        bottom: -20px;
        right: 20px;
        width: 140px;
        height: 140px;
    }
    
    .about-modern__badge-number {
        font-size: 42px;
    }
    
    .about-modern__badge-text {
        font-size: 12px;
    }
    
    .sec-title-modern__title {
        font-size: 36px;
    }
    
    .cta-modern__inner {
        padding: 48px 32px;
    }
    
    .cta-modern__title {
        font-size: 32px;
    }
    
    .stat-modern:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-modern__title {
        font-size: 38px;
    }
    
    .hero-modern__subtitle {
        font-size: 16px;
    }
    
    .hero-modern__cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stat__number {
        font-size: 36px;
    }
    
    .sec-title-modern__title {
        font-size: 30px;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header__title {
        font-size: 36px;
    }
    
    .service-card-modern {
        padding: 32px 24px;
    }
    
    .cta-modern__title {
        font-size: 26px;
        margin-bottom: 24px;
    }
    
    .cta-modern__text {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .stats-modern__inner {
        margin: -40px 20px 60px;
        padding: 48px 0;
    }
}

@media (max-width: 575px) {
    .hero-modern__title {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    
    .hero-modern__badge {
        font-size: 11px;
        padding: 8px 16px;
    }
    
    .hero-modern__stats {
        gap: 24px;
    }
    
    .about-modern {
        padding: 80px 0;
    }
    
    .services-modern {
        padding: 80px 0;
    }
    
    .testimonials-modern {
        padding: 80px 0;
    }
    
    .cta-modern {
        padding: 0 0 80px 0;
    }
}

/* ============================================ */
/* 11. ANIMATION ENHANCEMENTS */
/* ============================================ */

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================ */
/* 12. UTILITY CLASSES */
/* ============================================ */

.rounded-3 {
    border-radius: 12px !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

/* Ensure WOW.js animations work properly */
.wow {
    visibility: hidden;
}

.wow.animated {
    visibility: visible;
}

/* ============================================ */
/* END OF MODERN CORPORATE REDESIGN STYLES */
/* ============================================ */


/* ============================================ */
/* ADDITIONAL MODERN STYLES FOR SUBPAGES */
/* Added: November 28, 2025 */
/* ============================================ */

/* FAQ Modern Styles */
.faq-modern {
    padding: 120px 0;
    background: white;
}

.accordion-modern__item {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.accordion-modern__item .accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: var(--modern-dark);
    padding: 24px 28px;
    background: white;
    border: none;
    box-shadow: none;
}

.accordion-modern__item .accordion-button:not(.collapsed) {
    color: var(--modern-primary);
    background: rgba(196, 30, 40, 0.04);
}

.accordion-modern__item .accordion-button::after {
    background-image: none;
    content: '\f107';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--modern-primary);
}

.accordion-modern__item .accordion-body {
    padding: 0 28px 24px 28px;
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

/* Mission Card Modern */
.mission-modern {
    padding: 120px 0;
}

.mission-card-modern {
    background: white;
    border-radius: var(--modern-radius);
    padding: 48px 40px;
    height: 100%;
    box-shadow: var(--modern-shadow);
    transition: all 0.4s ease;
    border-left: 4px solid var(--modern-primary);
}

.mission-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--modern-shadow-lg);
}

.mission-card-modern__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mission-card-modern__icon i {
    font-size: 28px;
    color: var(--modern-primary);
}

.mission-card-modern__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--modern-dark);
    margin-bottom: 16px;
}

.mission-card-modern__text {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

/* Team Card Modern */
.team-modern {
    padding: 120px 0;
}

.team-card-modern {
    background: white;
    border-radius: var(--modern-radius);
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--modern-shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.team-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--modern-shadow-lg);
}

.team-card-modern__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.team-card-modern__icon i {
    font-size: 32px;
    color: white;
}

.team-card-modern__name {
    font-size: 20px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 8px;
}

.team-card-modern__role {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Story Modern */
.story-modern {
    padding: 120px 0 60px;
    background: white;
}

.story-modern__content {
    margin-top: 48px;
}

.story-modern__text {
    font-size: 18px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 24px;
}

/* Achievements Modern */
.achievements-modern {
    padding: 80px 0 120px;
}

.achievement-card-modern {
    background: white;
    border-radius: var(--modern-radius);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--modern-shadow);
    transition: all 0.4s ease;
    height: 100%;
}

.achievement-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--modern-shadow-lg);
}

.achievement-card-modern__year {
    font-size: 48px;
    font-weight: 700;
    color: var(--modern-primary);
    line-height: 1;
    margin-bottom: 16px;
}

.achievement-card-modern__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 12px;
}

.achievement-card-modern__text {
    font-size: 15px;
    line-height: 1.6;
    color: #6c757d;
    margin: 0;
}

/* Values Modern */
.values-modern {
    padding: 120px 0;
    background: white;
}

.value-card-modern {
    background: var(--modern-gray-100);
    border-radius: var(--modern-radius);
    padding: 40px 32px;
    height: 100%;
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
}

.value-card-modern:hover {
    background: white;
    box-shadow: var(--modern-shadow-lg);
    border-top-color: var(--modern-primary);
    transform: translateY(-6px);
}

.value-card-modern__icon {
    width: 72px;
    height: 72px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.value-card-modern__icon i {
    font-size: 32px;
    color: var(--modern-primary);
}

.value-card-modern:hover .value-card-modern__icon {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
}

.value-card-modern:hover .value-card-modern__icon i {
    color: white;
}

.value-card-modern__title {
    font-size: 22px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 16px;
}

.value-card-modern__text {
    font-size: 15px;
    line-height: 1.7;
    color: #6c757d;
    margin: 0;
}

/* Contact Modern */
.contact-modern {
    padding: 120px 0;
    background: white;
}

.contact-info-modern {
    background: var(--modern-gray-100);
    border-radius: var(--modern-radius);
    padding: 40px 32px;
    height: 100%;
}

.contact-info-modern__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--modern-dark);
    margin-bottom: 16px;
}

.contact-info-modern__text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

.contact-info-modern__items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-modern__item {
    display: flex;
    gap: 20px;
}

.contact-info-modern__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-modern__icon i {
    font-size: 24px;
    color: var(--modern-primary);
}

.contact-info-modern__details h5 {
    font-size: 16px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 8px;
}

.contact-info-modern__details p {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
    line-height: 1.6;
}

.contact-info-modern__details a {
    color: var(--modern-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-modern__details a:hover {
    color: var(--modern-primary-dark);
}

.contact-form-modern {
    background: var(--modern-gray-100);
    border-radius: var(--modern-radius);
    padding: 48px 40px;
}

.contact-form-modern__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--modern-dark);
    margin-bottom: 12px;
}

.contact-form-modern__text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
}

/* Quote Form Modern */
.quote-process-modern {
    padding: 80px 0;
}

.process-card-modern {
    text-align: center;
    position: relative;
    padding: 32px 24px;
}

.process-card-modern__number {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.process-card-modern__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 12px;
}

.process-card-modern__text {
    font-size: 15px;
    color: #6c757d;
    margin: 0;
}

.quote-form-modern {
    padding: 80px 0 40px;
    background: white;
}

.quote-form-modern__card {
    background: var(--modern-gray-100);
    border-radius: 16px;
    padding: 56px 48px;
    box-shadow: var(--modern-shadow);
}

.why-choose-modern {
    padding: 80px 0 120px;
}

.feature-modern {
    background: white;
    border-radius: var(--modern-radius);
    padding: 32px 24px;
    height: 100%;
    transition: all 0.4s ease;
}

.feature-modern:hover {
    transform: translateY(-6px);
    box-shadow: var(--modern-shadow);
}

.feature-modern__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-modern__icon i {
    font-size: 28px;
    color: var(--modern-primary);
}

.feature-modern__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 8px;
}

.feature-modern__text {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

/* Form Modern Styles */
.form-label-modern {
    font-size: 14px;
    font-weight: 600;
    color: var(--modern-dark);
    margin-bottom: 8px;
}

.form-control-modern {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 14px 16px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: var(--modern-primary);
    box-shadow: 0 0 0 3px rgba(196, 30, 40, 0.1);
}

.form-select.form-control-modern {
    cursor: pointer;
}

/* ============================================ */
/* END OF ADDITIONAL MODERN STYLES */
/* ============================================ */


/* ============================================ */
/* WEBSITE ENHANCEMENTS - ADDITIONAL FEATURES */
/* Added: November 28, 2025 */
/* ============================================ */

/* ============================================ */
/* 1. SMOOTH SCROLL & REVEAL ANIMATIONS */
/* ============================================ */

html {
    scroll-behavior: smooth;
}

/* Reveal animations */
.reveal-fade-up,
.reveal-fade-left,
.reveal-fade-right {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-fade-up {
    transform: translateY(40px);
}

.reveal-fade-left {
    transform: translateX(-40px);
}

.reveal-fade-right {
    transform: translateX(40px);
}

.reveal-fade-up.reveal-visible,
.reveal-fade-left.reveal-visible,
.reveal-fade-right.reveal-visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Page load animation */
body {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.page-loaded {
    opacity: 1;
}

/* ============================================ */
/* 2. FLOATING INSURANCE BADGES */
/* ============================================ */

.floating-badges {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.floating-badge {
    background: white;
    padding: 12px 20px 12px 16px;
    border-radius: 0 50px 50px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--modern-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: badgeFloat 3s ease-in-out infinite;
}

.floating-badge:hover {
    padding-right: 28px;
    box-shadow: 0 6px 24px rgba(196, 30, 40, 0.3);
    transform: translateX(8px);
}

.floating-badge__icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Hide on mobile/tablet */
@media (max-width: 991px) {
    .floating-badges {
        display: none;
    }
}

/* ============================================ */
/* 3. 3D ICON EFFECTS */
/* ============================================ */

.icon-3d {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.icon-3d::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: inherit;
    transform: translate(4px, 4px);
    z-index: -1;
    transition: all 0.4s ease;
}

.icon-3d:hover {
    transform: translate(-2px, -2px);
}

.icon-3d:hover::before {
    transform: translate(6px, 6px);
    opacity: 0.8;
}

/* Apply 3D effect to service icons */
.service-card-modern__icon,
.value-card-modern__icon,
.team-card-modern__icon,
.mission-card-modern__icon,
.feature-modern__icon,
.contact-info-modern__icon {
    position: relative;
}

.service-card-modern__icon::after,
.value-card-modern__icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(196, 30, 40, 0.1) 100%);
    border-radius: inherit;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-card-modern__icon::after,
.value-card-modern:hover .value-card-modern__icon::after {
    opacity: 1;
}

/* ============================================ */
/* 4. GLOW EFFECTS */
/* ============================================ */

.glow-on-hover {
    transition: all 0.4s ease;
}

/* Button glow */
.btn-modern--primary:hover {
    box-shadow: 0 8px 32px rgba(196, 30, 40, 0.5),
                0 0 20px rgba(196, 30, 40, 0.3);
}

/* Card glow */
.service-card-modern:hover,
.value-card-modern:hover,
.testimonial-card-modern:hover {
    box-shadow: 0 16px 48px rgba(196, 30, 40, 0.12),
                0 0 32px rgba(196, 30, 40, 0.08);
}

/* Icon glow */
.service-card-modern:hover .service-card-modern__icon,
.value-card-modern:hover .value-card-modern__icon {
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.35),
                0 0 20px rgba(196, 30, 40, 0.2);
}

/* Stats glow */
.stat-modern:hover .stat-modern__number {
    text-shadow: 0 0 20px rgba(196, 30, 40, 0.5);
}

/* ============================================ */
/* 5. DARK/LIGHT MODE STYLES */
/* ============================================ */

:root {
    /* Light mode (default) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1a1a2e;
    --text-secondary: #6c757d;
    --border-color: rgba(0, 0, 0, 0.12);
    --card-bg: #ffffff;
    --card-hover-bg: #ffffff;
}

[data-theme="dark"] {
    /* Dark mode */
    --bg-primary: #1a1a2e;
    --bg-secondary: #2d2d44;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(255, 255, 255, 0.12);
    --card-bg: #2d2d44;
    --card-hover-bg: #35354d;
    --modern-gray-100: #2d2d44;
}

/* Apply theme variables */
[data-theme="dark"] body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

[data-theme="dark"] .about-modern,
[data-theme="dark"] .story-modern,
[data-theme="dark"] .values-modern,
[data-theme="dark"] .contact-modern,
[data-theme="dark"] .quote-form-modern,
[data-theme="dark"] .faq-modern,
[data-theme="dark"] .team-modern,
[data-theme="dark"] .testimonials-modern {
    background: var(--bg-primary);
}

[data-theme="dark"] .services-modern,
[data-theme="dark"] .mission-modern,
[data-theme="dark"] .achievements-modern,
[data-theme="dark"] .quote-process-modern,
[data-theme="dark"] .why-choose-modern {
    background: var(--bg-secondary);
}

[data-theme="dark"] .service-card-modern,
[data-theme="dark"] .value-card-modern,
[data-theme="dark"] .testimonial-card-modern,
[data-theme="dark"] .team-card-modern,
[data-theme="dark"] .mission-card-modern,
[data-theme="dark"] .achievement-card-modern,
[data-theme="dark"] .feature-modern,
[data-theme="dark"] .quote-form-modern__card,
[data-theme="dark"] .contact-form-modern,
[data-theme="dark"] .contact-info-modern {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .service-card-modern:hover,
[data-theme="dark"] .value-card-modern:hover,
[data-theme="dark"] .testimonial-card-modern:hover {
    background: var(--card-hover-bg);
}

[data-theme="dark"] .sec-title-modern__title,
[data-theme="dark"] .service-card-modern__title,
[data-theme="dark"] .value-card-modern__title,
[data-theme="dark"] .testimonial-card-modern__text,
[data-theme="dark"] .mission-card-modern__title,
[data-theme="dark"] .team-card-modern__name,
[data-theme="dark"] .achievement-card-modern__title,
[data-theme="dark"] .contact-info-modern__title,
[data-theme="dark"] .contact-form-modern__title,
[data-theme="dark"] .process-card-modern__title,
[data-theme="dark"] .feature-modern__title {
    color: var(--text-primary);
}

[data-theme="dark"] .sec-title-modern__text,
[data-theme="dark"] .service-card-modern__text,
[data-theme="dark"] .value-card-modern__text,
[data-theme="dark"] .about-modern__text,
[data-theme="dark"] .mission-card-modern__text,
[data-theme="dark"] .story-modern__text,
[data-theme="dark"] .achievement-card-modern__text,
[data-theme="dark"] .team-card-modern__role,
[data-theme="dark"] .contact-info-modern__text,
[data-theme="dark"] .contact-form-modern__text,
[data-theme="dark"] .process-card-modern__text,
[data-theme="dark"] .feature-modern__text,
[data-theme="dark"] .contact-info-modern__details p,
[data-theme="dark"] .form-label-modern {
    color: var(--text-secondary);
}

[data-theme="dark"] .form-control-modern {
    background: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

[data-theme="dark"] .form-control-modern::placeholder {
    color: var(--text-secondary);
}

[data-theme="dark"] .accordion-modern__item {
    background: var(--card-bg);
    border-color: var(--border-color);
}

[data-theme="dark"] .accordion-modern__item .accordion-button {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* ============================================ */
/* 6. THEME TOGGLE BUTTON */
/* ============================================ */

.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 16px;
}

.theme-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.theme-toggle i {
    font-size: 18px;
    color: white;
}

.theme-toggle .icon-sun {
    display: none;
}

[data-theme="dark"] .theme-toggle .icon-sun {
    display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
    display: none;
}

/* ============================================ */
/* 7. COOKIE CONSENT BANNER */
/* ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--modern-dark) 0%, var(--modern-dark-light) 100%);
    color: white;
    padding: 24px 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner__text a {
    color: var(--modern-primary);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner__btn {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner__btn--accept {
    background: var(--modern-primary);
    color: white;
}

.cookie-banner__btn--accept:hover {
    background: var(--modern-primary-dark);
    transform: translateY(-2px);
}

.cookie-banner__btn--reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-banner__btn--reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 767px) {
    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* 8. WHATSAPP FLOATING BUTTON */
/* ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5),
                0 0 32px rgba(37, 211, 102, 0.3);
}

.whatsapp-float i {
    animation: whatsappBounce 1s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6); }
}

@keyframes whatsappBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@media (max-width: 767px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* ============================================ */
/* 9. SUCCESS MODAL */
/* ============================================ */

.modal-success .modal-content {
    border-radius: 16px;
    border: none;
    overflow: hidden;
}

.modal-success .modal-header {
    background: linear-gradient(135deg, var(--modern-primary) 0%, var(--modern-primary-dark) 100%);
    color: white;
    border: none;
    padding: 24px 32px;
}

.modal-success .modal-title {
    font-size: 24px;
    font-weight: 700;
}

.modal-success .modal-body {
    padding: 32px;
    text-align: center;
}

.modal-success__icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 30, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: successPulse 1.5s ease-in-out;
}

.modal-success__icon i {
    font-size: 40px;
    color: var(--modern-primary);
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ============================================ */
/* 10. FORM VALIDATION STYLES */
/* ============================================ */

.form-control-modern.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-control-modern.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* ============================================ */
/* 11. LOADING SPINNER (for forms) */
/* ============================================ */

.btn-modern.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.btn-modern.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 16px;
    margin-top: -8px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================ */
/* 12. ENHANCED HOVER TRANSITIONS */
/* ============================================ */

a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Link underline animation */
.service-card-modern__link,
.testimonial-card-modern a {
    position: relative;
}

.service-card-modern__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--modern-primary);
    transition: width 0.3s ease;
}

.service-card-modern__link:hover::after {
    width: 80%;
}

/* ============================================ */
/* 13. SCROLL PROGRESS BAR (Optional) */
/* ============================================ */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--modern-primary) 0%, var(--modern-primary-light) 100%);
    z-index: 10000;
    transition: width 0.1s ease;
}

/* ============================================ */
/* 14. ACCESSIBILITY ENHANCEMENTS */
/* ============================================ */

/* Focus visible for keyboard navigation */
a:focus-visible,
button:focus-visible,
.form-control:focus-visible {
    outline: 3px solid var(--modern-primary);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-to-content {
    position: fixed;
    top: -100px;
    left: 20px;
    background: var(--modern-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 6px;
    z-index: 10001;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 20px;
}

/* ============================================ */
/* 15. RESPONSIVE ENHANCEMENTS */
/* ============================================ */

@media (max-width: 991px) {
    [data-theme="dark"] .stats-modern__inner {
        background: linear-gradient(135deg, #2d2d44 0%, #35354d 100%);
    }
}

/* ============================================ */
/* END OF ENHANCEMENTS */
/* ============================================ */



/* Disable Custom Cursor */
.custom-cursor__cursor,
.custom-cursor__cursor-two {
    display: none !important;
}

body, body * {
    cursor: auto !important;
}

/* ============================================ */
/* SUPER MODERN UI/UX UPGRADE v2.0 */
/* Premium Design System - IBM Plex Sans Style */
/* Added: November 28, 2025 */
/* ============================================ */

/* Import IBM Plex Sans / Inter Style Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================ */
/* 1. PREMIUM CSS VARIABLES */
/* ============================================ */

:root {
    /* Modern Typography */
    --font-modern: 'Inter', 'Kumbh Sans', system-ui, -apple-system, sans-serif;
    
    /* Premium Spacing */
    --space-xs: 12px;
    --space-sm: 24px;
    --space-md: 48px;
    --space-lg: 72px;
    --space-xl: 96px;
    --space-2xl: 128px;
    
    /* Modern Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 24px 64px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(196, 30, 40, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(20px);
    
    /* Modern Gradients */
    --gradient-premium: linear-gradient(135deg, #C41E28 0%, #9a1720 50%, #1a1a2e 100%);
    --gradient-soft: linear-gradient(135deg, rgba(196, 30, 40, 0.05) 0%, rgba(26, 26, 46, 0.02) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

/* ============================================ */
/* 2. UPGRADED HERO - SUPER MODERN */
/* ============================================ */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0a0a16;
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Animated background particles */
.hero-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(196, 30, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(196, 30, 40, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    animation: particleMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.98); }
}

.hero-modern__video {
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
}

.hero-modern__overlay {
    background: linear-gradient(135deg, 
        rgba(10, 10, 22, 0.97) 0%, 
        rgba(26, 26, 46, 0.92) 40%,
        rgba(196, 30, 40, 0.08) 100%);
}

/* Upgraded floating shapes */
.hero-modern__shape {
    opacity: 0.06;
    filter: blur(40px);
    animation: floatLarge 15s ease-in-out infinite;
}

.hero-modern__shape--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--modern-primary) 0%, transparent 70%);
}

.hero-modern__shape--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--modern-primary-light) 0%, transparent 70%);
}

@keyframes floatLarge {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(5deg) scale(1.1); }
    66% { transform: translateY(20px) rotate(-3deg) scale(0.95); }
}

/* Upgraded badge */
.hero-modern__badge {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Upgraded title */
.hero-modern__title {
    font-family: var(--font-modern);
    font-size: 78px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-modern__title .highlight {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-modern__title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #C41E28 0%, transparent 100%);
    border-radius: 3px;
    animation: underlineGrow 1.5s ease-out;
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

/* Upgraded subtitle */
.hero-modern__subtitle {
    font-family: var(--font-modern);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* ============================================ */
/* 3. PREMIUM BUTTON UPGRADE */
/* ============================================ */

.btn-modern {
    padding: 20px 40px;
    font-family: var(--font-modern);
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    transform-style: preserve-3d;
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-modern:hover::after {
    opacity: 1;
}

.btn-modern--primary {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 40%, #C41E28 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 32px rgba(196, 30, 40, 0.4),
                0 0 32px rgba(196, 30, 40, 0.2);
}

.btn-modern--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(196, 30, 40, 0.5),
                0 0 48px rgba(196, 30, 40, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-modern--outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-modern--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================ */
/* 4. GLASSMORPHISM SERVICE CARDS */
/* ============================================ */

.service-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 40, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card-modern:hover::after {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
    border-color: rgba(196, 30, 40, 0.2);
}

.service-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern__icon i {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(196, 30, 40, 0.3));
}

.service-card-modern:hover .service-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: translateZ(20px) rotateY(10deg) scale(1.1);
    box-shadow: 0 20px 48px rgba(196, 30, 40, 0.45),
                inset 0 2px 12px rgba(255, 255, 255, 0.4);
}

.service-card-modern__title {
    font-family: var(--font-modern);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.service-card-modern__text {
    font-family: var(--font-modern);
    font-size: 16px;
    line-height: 1.8;
    color: #556;
}

.service-card-modern__link {
    font-family: var(--font-modern);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-modern__link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-premium);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern__link:hover::before {
    width: 90%;
}

/* ============================================ */
/* 5. PREMIUM STATS SECTION */
/* ============================================ */

.stats-modern__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-modern__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 40%, rgba(196, 30, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(196, 30, 40, 0.1) 0%, transparent 50%);
}

.stat-modern__number {
    font-family: var(--font-modern);
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.stat-modern__label {
    font-family: var(--font-modern);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
}

/* ============================================ */
/* 6. GLASSMORPHISM ABOUT SECTION */
/* ============================================ */

.about-modern {
    padding: var(--space-2xl) 0;
    position: relative;
}

.about-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    z-index: 0;
}

.about-modern > .container {
    position: relative;
    z-index: 1;
}

.about-modern__image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.about-modern__image img {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modern__image:hover img {
    transform: scale(1.05);
}

.about-modern__badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transform: rotate(-8deg);
    transition: transform 0.6s ease;
}

.about-modern__image:hover .about-modern__badge {
    transform: rotate(0deg) scale(1.05);
}

.about-modern__badge-number {
    font-family: var(--font-modern);
    font-size: 72px;
    font-weight: 900;
}

.about-modern__badge-text {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 600;
}

/* ============================================ */
/* 7. PREMIUM SECTION TITLES */
/* ============================================ */

.sec-title-modern {
    margin-bottom: 64px;
}

.sec-title-modern__tagline {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 700;
    color: var(--modern-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 40, 0.15);
    display: inline-block;
}

.sec-title-modern__title {
    font-family: var(--font-modern);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-top: 24px;
    position: relative;
}

.sec-title-modern__title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-premium);
    border-radius: 3px;
}

.sec-title-modern.text-center .sec-title-modern__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title-modern__text {
    font-family: var(--font-modern);
    font-size: 20px;
    line-height: 1.75;
    color: #667;
    margin-top: 28px;
}

/* ============================================ */
/* 8. PREMIUM CTA BANNER UPGRADE */
/* ============================================ */

.cta-modern__inner {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    border-radius: 32px;
    padding: 88px 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(196, 30, 40, 0.4),
                inset 0 2px 8px rgba(255, 255, 255, 0.2);
    animation: gradientShift 8s ease infinite;
}

.cta-modern__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: floatBlob 12s ease-in-out infinite;
}

.cta-modern__inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatBlob 15s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.cta-modern__title {
    font-family: var(--font-modern);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-modern__text {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 400;
}

/* ============================================ */
/* 9. PREMIUM TESTIMONIAL CARDS */
/* ============================================ */

.testimonial-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: var(--shadow-soft);
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium), 0 0 48px rgba(196, 30, 40, 0.1);
    transform: translateY(-8px);
}

.testimonial-card-modern__text {
    font-family: var(--font-modern);
    font-size: 19px;
    line-height: 1.85;
    color: #334;
}

.testimonial-card-modern__text::before {
    font-size: 100px;
    color: rgba(196, 30, 40, 0.08);
    top: -30px;
    left: -15px;
}

.testimonial-card-modern__author-info h4 {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 700;
}

/* ============================================ */
/* 10. PREMIUM PAGE HEADER */
/* ============================================ */

.page-header {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 40%, rgba(196, 30, 40, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(196, 30, 40, 0.08) 0%, transparent 50%);
}

.page-header__title {
    font-family: var(--font-modern);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* 11. GLASSMORPHISM FORMS */
/* ============================================ */

.contact-form-modern,
.quote-form-modern__card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 64px 56px;
    box-shadow: var(--shadow-medium);
}

.form-control-modern {
    border-radius: 14px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
    font-family: var(--font-modern);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-modern:focus {
    border-color: var(--modern-primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 40, 0.12),
                0 8px 24px rgba(196, 30, 40, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-label-modern {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 600;
    color: #334;
    margin-bottom: 12px;
}

/* ============================================ */
/* 12. VALUE CARDS - PREMIUM */
/* ============================================ */

.value-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 52px 44px;
    border-top: 6px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: var(--modern-primary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
}

.value-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.18) 100%);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.15),
                inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.value-card-modern:hover .value-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    box-shadow: 0 20px 48px rgba(196, 30, 40, 0.4),
                inset 0 2px 12px rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotateY(5deg);
}

.value-card-modern__title {
    font-family: var(--font-modern);
    font-size: 26px;
    font-weight: 700;
}

/* ============================================ */
/* 13. MODERN ACCORDION - PREMIUM */
/* ============================================ */

.accordion-modern__item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.accordion-modern__item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(8px);
}

.accordion-modern__item .accordion-button {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 700;
    padding: 28px 32px;
    border-radius: 20px;
}

.accordion-modern__item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.08) 0%, rgba(196, 30, 40, 0.04) 100%);
    box-shadow: inset 0 2px 8px rgba(196, 30, 40, 0.1);
}

.accordion-modern__item .accordion-body {
    font-family: var(--font-modern);
    font-size: 17px;
    line-height: 1.85;
    padding: 0 32px 28px 32px;
}

/* ============================================ */
/* 14. CONTACT INFO - GLASS STYLE */
/* ============================================ */

.contact-info-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 52px 44px;
    box-shadow: var(--shadow-medium);
}

.contact-info-modern__icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.2),
                inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.contact-info-modern__icon i {
    font-size: 28px;
}

.contact-info-modern__details h5 {
    font-family: var(--font-modern);
    font-size: 18px;
    font-weight: 700;
}

/* ============================================ */
/* 15. MISSION/TEAM/ACHIEVEMENT CARDS */
/* ============================================ */

.mission-card-modern,
.team-card-modern,
.achievement-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card-modern:hover,
.team-card-modern:hover,
.achievement-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: var(--modern-primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
}

.mission-card-modern__icon,
.team-card-modern__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.achievement-card-modern__year {
    font-family: var(--font-modern);
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* 16. PREMIUM FLOATING BADGES UPGRADE */
/* ============================================ */

.floating-badge {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px 28px 16px 20px;
}

.floating-badge:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(196, 30, 40, 0.35);
}

/* ============================================ */
/* 17. WHATSAPP BUTTON - ULTRA MODERN */
/* ============================================ */

.whatsapp-float {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5),
                0 0 48px rgba(37, 211, 102, 0.3);
    font-size: 36px;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 16px 56px rgba(37, 211, 102, 0.6),
                0 0 64px rgba(37, 211, 102, 0.4);
}

/* ============================================ */
/* 18. COOKIE BANNER - GLASS STYLE */
/* ============================================ */

.cookie-banner {
    background: linear-gradient(135deg, rgba(10, 10, 22, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 32px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    padding: 16px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.4);
}

.cookie-banner__btn--accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.5);
}

/* ============================================ */
/* 19. PREMIUM BACKGROUND SECTIONS */
/* ============================================ */

.services-modern,
.mission-modern,
.achievements-modern,
.quote-process-modern,
.why-choose-modern {
    position: relative;
}

.services-modern::before,
.mission-modern::before,
.achievements-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(196, 30, 40, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(26, 26, 46, 0.02) 0%, transparent 40%);
    z-index: 0;
}

/* ============================================ */
/* 20. SCROLL PROGRESS - PREMIUM */
/* ============================================ */

.scroll-progress {
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 2px 12px rgba(196, 30, 40, 0.5);
}

/* ============================================ */
/* 21. DARK MODE - PREMIUM VERSION */
/* ============================================ */

[data-theme="dark"] {
    --glass-bg: rgba(45, 45, 68, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-modern,
[data-theme="dark"] .value-card-modern,
[data-theme="dark"] .testimonial-card-modern,
[data-theme="dark"] .mission-card-modern,
[data-theme="dark"] .team-card-modern,
[data-theme="dark"] .achievement-card-modern {
    background: rgba(45, 45, 68, 0.6);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-modern:hover,
[data-theme="dark"] .value-card-modern:hover,
[data-theme="dark"] .testimonial-card-modern:hover {
    background: rgba(55, 55, 78, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 48px rgba(196, 30, 40, 0.2);
}

[data-theme="dark"] .form-control-modern {
    background: rgba(45, 45, 68, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
    color: white;
}

[data-theme="dark"] .form-control-modern:focus {
    background: rgba(55, 55, 78, 0.7);
    border-color: var(--modern-primary);
}

/* ============================================ */
/* 22. RESPONSIVE - PREMIUM ADJUSTMENTS */
/* ============================================ */

@media (max-width: 1199px) {
    .hero-modern__title {
        font-size: 64px;
    }
    .sec-title-modern__title {
        font-size: 48px;
    }
    .page-header__title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .hero-modern {
        padding: 120px 0 80px;
    }
    .hero-modern__title {
        font-size: 52px;
    }
    .sec-title-modern__title {
        font-size: 40px;
    }
    .page-header {
        padding: 160px 0 80px;
    }
    .page-header__title {
        font-size: 44px;
    }
    .cta-modern__inner {
        padding: 64px 48px;
    }
    .cta-modern__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-modern__title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .sec-title-modern__title {
        font-size: 34px;
    }
    .page-header__title {
        font-size: 36px;
    }
    .service-card-modern,
    .value-card-modern {
        padding: 40px 32px;
    }
    .contact-form-modern,
    .quote-form-modern__card {
        padding: 48px 36px;
    }
}

/* ============================================ */
/* 23. MICRO-INTERACTIONS */
/* ============================================ */

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 40, 0.3); }
    50% { box-shadow: 0 0 40px rgba(196, 30, 40, 0.6); }
}

.btn-modern--primary:active {
    transform: scale(0.98);
}

.service-card-modern:active,
.value-card-modern:active {
    transform: scale(0.98);
}

/* Smooth transitions for everything */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* 24. PREMIUM TYPOGRAPHY UPGRADE */
/* ============================================ */

h1, h2, h3, h4, h5, h6,
.hero-modern__title,
.sec-title-modern__title,
.page-header__title,
.service-card-modern__title,
.value-card-modern__title,
.testimonial-card-modern__author-info h4,
.mission-card-modern__title,
.team-card-modern__name,
.achievement-card-modern__title,
.cta-modern__title {
    font-family: var(--font-modern);
    letter-spacing: -0.5px;
}

p, .hero-modern__subtitle,
.sec-title-modern__text,
.service-card-modern__text,
.value-card-modern__text,
.about-modern__text {
    font-family: var(--font-modern);
    line-height: 1.8;
}

/* ============================================ */
/* END OF SUPER MODERN UI/UX UPGRADE v2.0 */
/* ============================================ */


/* ============================================ */
/* SUPER MODERN UI/UX UPGRADE v2.0 */
/* Premium Design System - IBM Plex Sans Style */
/* Added: November 28, 2025 */
/* ============================================ */

/* Import IBM Plex Sans / Inter Style Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================ */
/* 1. PREMIUM CSS VARIABLES */
/* ============================================ */

:root {
    /* Modern Typography */
    --font-modern: 'Inter', 'Kumbh Sans', system-ui, -apple-system, sans-serif;
    
    /* Premium Spacing */
    --space-xs: 12px;
    --space-sm: 24px;
    --space-md: 48px;
    --space-lg: 72px;
    --space-xl: 96px;
    --space-2xl: 128px;
    
    /* Modern Shadows */
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-hard: 0 24px 64px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(196, 30, 40, 0.25);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-blur: blur(20px);
    
    /* Modern Gradients */
    --gradient-premium: linear-gradient(135deg, #C41E28 0%, #9a1720 50%, #1a1a2e 100%);
    --gradient-soft: linear-gradient(135deg, rgba(196, 30, 40, 0.05) 0%, rgba(26, 26, 46, 0.02) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
}

/* ============================================ */
/* 2. UPGRADED HERO - SUPER MODERN */
/* ============================================ */

.hero-modern {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: #0a0a16;
    overflow: hidden;
    padding: 140px 0 100px;
}

/* Animated background particles */
.hero-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 30%, rgba(196, 30, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(196, 30, 40, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    animation: particleMove 20s ease-in-out infinite;
    z-index: 1;
}

@keyframes particleMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.05); }
    66% { transform: translate(-15px, 15px) scale(0.98); }
}

.hero-modern__video {
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
}

.hero-modern__overlay {
    background: linear-gradient(135deg, 
        rgba(10, 10, 22, 0.97) 0%, 
        rgba(26, 26, 46, 0.92) 40%,
        rgba(196, 30, 40, 0.08) 100%);
}

/* Upgraded floating shapes */
.hero-modern__shape {
    opacity: 0.06;
    filter: blur(40px);
    animation: floatLarge 15s ease-in-out infinite;
}

.hero-modern__shape--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--modern-primary) 0%, transparent 70%);
}

.hero-modern__shape--2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--modern-primary-light) 0%, transparent 70%);
}

@keyframes floatLarge {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    33% { transform: translateY(-40px) rotate(5deg) scale(1.1); }
    66% { transform: translateY(20px) rotate(-3deg) scale(0.95); }
}

/* Upgraded badge */
.hero-modern__badge {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Upgraded title */
.hero-modern__title {
    font-family: var(--font-modern);
    font-size: 78px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
}

.hero-modern__title .highlight {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-modern__title .highlight::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #C41E28 0%, transparent 100%);
    border-radius: 3px;
    animation: underlineGrow 1.5s ease-out;
}

@keyframes underlineGrow {
    from { width: 0; opacity: 0; }
    to { width: 100%; opacity: 1; }
}

/* Upgraded subtitle */
.hero-modern__subtitle {
    font-family: var(--font-modern);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

/* ============================================ */
/* 3. PREMIUM BUTTON UPGRADE */
/* ============================================ */

.btn-modern {
    padding: 20px 40px;
    font-family: var(--font-modern);
    font-size: 17px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    transform-style: preserve-3d;
}

.btn-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-modern:hover::after {
    opacity: 1;
}

.btn-modern--primary {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 40%, #C41E28 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 8px 32px rgba(196, 30, 40, 0.4),
                0 0 32px rgba(196, 30, 40, 0.2);
}

.btn-modern--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(196, 30, 40, 0.5),
                0 0 48px rgba(196, 30, 40, 0.3);
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-modern--outline {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-modern--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================ */
/* 4. GLASSMORPHISM SERVICE CARDS */
/* ============================================ */

.service-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-premium);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 40, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.service-card-modern:hover::after {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
    border-color: rgba(196, 30, 40, 0.2);
}

.service-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transform-style: preserve-3d;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern__icon i {
    font-size: 40px;
    filter: drop-shadow(0 4px 8px rgba(196, 30, 40, 0.3));
}

.service-card-modern:hover .service-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: translateZ(20px) rotateY(10deg) scale(1.1);
    box-shadow: 0 20px 48px rgba(196, 30, 40, 0.45),
                inset 0 2px 12px rgba(255, 255, 255, 0.4);
}

.service-card-modern__title {
    font-family: var(--font-modern);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.service-card-modern__text {
    font-family: var(--font-modern);
    font-size: 16px;
    line-height: 1.8;
    color: #556;
}

.service-card-modern__link {
    font-family: var(--font-modern);
    font-size: 16px;
    font-weight: 600;
    position: relative;
    transition: all 0.4s ease;
}

.service-card-modern__link::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-premium);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-modern__link:hover::before {
    width: 90%;
}

/* ============================================ */
/* 5. PREMIUM STATS SECTION */
/* ============================================ */

.stats-modern__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-modern__inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 40%, rgba(196, 30, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 60%, rgba(196, 30, 40, 0.1) 0%, transparent 50%);
}

.stat-modern__number {
    font-family: var(--font-modern);
    font-size: 72px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.stat-modern__label {
    font-family: var(--font-modern);
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 1.5px;
}

/* ============================================ */
/* 6. GLASSMORPHISM ABOUT SECTION */
/* ============================================ */

.about-modern {
    padding: var(--space-2xl) 0;
    position: relative;
}

.about-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-soft);
    z-index: 0;
}

.about-modern > .container {
    position: relative;
    z-index: 1;
}

.about-modern__image {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
}

.about-modern__image img {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.2);
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-modern__image:hover img {
    transform: scale(1.05);
}

.about-modern__badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
    transform: rotate(-8deg);
    transition: transform 0.6s ease;
}

.about-modern__image:hover .about-modern__badge {
    transform: rotate(0deg) scale(1.05);
}

.about-modern__badge-number {
    font-family: var(--font-modern);
    font-size: 72px;
    font-weight: 900;
}

.about-modern__badge-text {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 600;
}

/* ============================================ */
/* 7. PREMIUM SECTION TITLES */
/* ============================================ */

.sec-title-modern {
    margin-bottom: 64px;
}

.sec-title-modern__tagline {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 700;
    color: var(--modern-primary);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 40, 0.15);
    display: inline-block;
}

.sec-title-modern__title {
    font-family: var(--font-modern);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-top: 24px;
    position: relative;
}

.sec-title-modern__title::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-premium);
    border-radius: 3px;
}

.sec-title-modern.text-center .sec-title-modern__title::after {
    left: 50%;
    transform: translateX(-50%);
}

.sec-title-modern__text {
    font-family: var(--font-modern);
    font-size: 20px;
    line-height: 1.75;
    color: #667;
    margin-top: 28px;
}

/* ============================================ */
/* 8. PREMIUM CTA BANNER UPGRADE */
/* ============================================ */

.cta-modern__inner {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    border-radius: 32px;
    padding: 88px 72px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(196, 30, 40, 0.4),
                inset 0 2px 8px rgba(255, 255, 255, 0.2);
    animation: gradientShift 8s ease infinite;
}

.cta-modern__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 70%);
    animation: floatBlob 12s ease-in-out infinite;
}

.cta-modern__inner::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -15%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: floatBlob 15s ease-in-out infinite reverse;
}

@keyframes floatBlob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.cta-modern__title {
    font-family: var(--font-modern);
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
}

.cta-modern__text {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 400;
}

/* ============================================ */
/* 9. PREMIUM TESTIMONIAL CARDS */
/* ============================================ */

.testimonial-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: var(--shadow-soft);
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-medium), 0 0 48px rgba(196, 30, 40, 0.1);
    transform: translateY(-8px);
}

.testimonial-card-modern__text {
    font-family: var(--font-modern);
    font-size: 19px;
    line-height: 1.85;
    color: #334;
}

.testimonial-card-modern__text::before {
    font-size: 100px;
    color: rgba(196, 30, 40, 0.08);
    top: -30px;
    left: -15px;
}

.testimonial-card-modern__author-info h4 {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 700;
}

/* ============================================ */
/* 10. PREMIUM PAGE HEADER */
/* ============================================ */

.page-header {
    padding: 200px 0 100px;
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 40%, rgba(196, 30, 40, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(196, 30, 40, 0.08) 0%, transparent 50%);
}

.page-header__title {
    font-family: var(--font-modern);
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* 11. GLASSMORPHISM FORMS */
/* ============================================ */

.contact-form-modern,
.quote-form-modern__card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 64px 56px;
    box-shadow: var(--shadow-medium);
}

.form-control-modern {
    border-radius: 14px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    padding: 18px 20px;
    font-family: var(--font-modern);
    font-size: 16px;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-control-modern:focus {
    border-color: var(--modern-primary);
    box-shadow: 0 0 0 4px rgba(196, 30, 40, 0.12),
                0 8px 24px rgba(196, 30, 40, 0.15);
    background: white;
    transform: translateY(-2px);
}

.form-label-modern {
    font-family: var(--font-modern);
    font-size: 15px;
    font-weight: 600;
    color: #334;
    margin-bottom: 12px;
}

/* ============================================ */
/* 12. VALUE CARDS - PREMIUM */
/* ============================================ */

.value-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 52px 44px;
    border-top: 6px solid transparent;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    border-top-color: var(--modern-primary);
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
}

.value-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.18) 100%);
    border-radius: 22px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.15),
                inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.value-card-modern:hover .value-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    box-shadow: 0 20px 48px rgba(196, 30, 40, 0.4),
                inset 0 2px 12px rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotateY(5deg);
}

.value-card-modern__title {
    font-family: var(--font-modern);
    font-size: 26px;
    font-weight: 700;
}

/* ============================================ */
/* 13. MODERN ACCORDION - PREMIUM */
/* ============================================ */

.accordion-modern__item {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
}

.accordion-modern__item:hover {
    box-shadow: var(--shadow-medium);
    transform: translateX(8px);
}

.accordion-modern__item .accordion-button {
    font-family: var(--font-modern);
    font-size: 20px;
    font-weight: 700;
    padding: 28px 32px;
    border-radius: 20px;
}

.accordion-modern__item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.08) 0%, rgba(196, 30, 40, 0.04) 100%);
    box-shadow: inset 0 2px 8px rgba(196, 30, 40, 0.1);
}

.accordion-modern__item .accordion-body {
    font-family: var(--font-modern);
    font-size: 17px;
    line-height: 1.85;
    padding: 0 32px 28px 32px;
}

/* ============================================ */
/* 14. CONTACT INFO - GLASS STYLE */
/* ============================================ */

.contact-info-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 52px 44px;
    box-shadow: var(--shadow-medium);
}

.contact-info-modern__icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.2),
                inset 0 2px 6px rgba(255, 255, 255, 0.3);
}

.contact-info-modern__icon i {
    font-size: 28px;
}

.contact-info-modern__details h5 {
    font-family: var(--font-modern);
    font-size: 18px;
    font-weight: 700;
}

/* ============================================ */
/* 15. MISSION/TEAM/ACHIEVEMENT CARDS */
/* ============================================ */

.mission-card-modern,
.team-card-modern,
.achievement-card-modern {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 56px 48px;
    box-shadow: var(--shadow-soft);
    border-left: 6px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mission-card-modern:hover,
.team-card-modern:hover,
.achievement-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    border-left-color: var(--modern-primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-hard), var(--shadow-glow);
}

.mission-card-modern__icon,
.team-card-modern__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.achievement-card-modern__year {
    font-family: var(--font-modern);
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================ */
/* 16. PREMIUM FLOATING BADGES UPGRADE */
/* ============================================ */

.floating-badge {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    padding: 16px 28px 16px 20px;
}

.floating-badge:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(196, 30, 40, 0.35);
}

/* ============================================ */
/* 17. WHATSAPP BUTTON - ULTRA MODERN */
/* ============================================ */

.whatsapp-float {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5),
                0 0 48px rgba(37, 211, 102, 0.3);
    font-size: 36px;
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 16px 56px rgba(37, 211, 102, 0.6),
                0 0 64px rgba(37, 211, 102, 0.4);
}

/* ============================================ */
/* 18. COOKIE BANNER - GLASS STYLE */
/* ============================================ */

.cookie-banner {
    background: linear-gradient(135deg, rgba(10, 10, 22, 0.95) 0%, rgba(26, 26, 46, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 32px 0;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    padding: 16px 36px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.4);
}

.cookie-banner__btn--accept:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.5);
}

/* ============================================ */
/* 19. PREMIUM BACKGROUND SECTIONS */
/* ============================================ */

.services-modern,
.mission-modern,
.achievements-modern,
.quote-process-modern,
.why-choose-modern {
    position: relative;
}

.services-modern::before,
.mission-modern::before,
.achievements-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(196, 30, 40, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(26, 26, 46, 0.02) 0%, transparent 40%);
    z-index: 0;
}

/* ============================================ */
/* 20. SCROLL PROGRESS - PREMIUM */
/* ============================================ */

.scroll-progress {
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
    box-shadow: 0 2px 12px rgba(196, 30, 40, 0.5);
}

/* ============================================ */
/* 21. DARK MODE - PREMIUM VERSION */
/* ============================================ */

[data-theme="dark"] {
    --glass-bg: rgba(45, 45, 68, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-modern,
[data-theme="dark"] .value-card-modern,
[data-theme="dark"] .testimonial-card-modern,
[data-theme="dark"] .mission-card-modern,
[data-theme="dark"] .team-card-modern,
[data-theme="dark"] .achievement-card-modern {
    background: rgba(45, 45, 68, 0.6);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-modern:hover,
[data-theme="dark"] .value-card-modern:hover,
[data-theme="dark"] .testimonial-card-modern:hover {
    background: rgba(55, 55, 78, 0.8);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 48px rgba(196, 30, 40, 0.2);
}

[data-theme="dark"] .form-control-modern {
    background: rgba(45, 45, 68, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
    color: white;
}

[data-theme="dark"] .form-control-modern:focus {
    background: rgba(55, 55, 78, 0.7);
    border-color: var(--modern-primary);
}

/* ============================================ */
/* 22. RESPONSIVE - PREMIUM ADJUSTMENTS */
/* ============================================ */

@media (max-width: 1199px) {
    .hero-modern__title {
        font-size: 64px;
    }
    .sec-title-modern__title {
        font-size: 48px;
    }
    .page-header__title {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .hero-modern {
        padding: 120px 0 80px;
    }
    .hero-modern__title {
        font-size: 52px;
    }
    .sec-title-modern__title {
        font-size: 40px;
    }
    .page-header {
        padding: 160px 0 80px;
    }
    .page-header__title {
        font-size: 44px;
    }
    .cta-modern__inner {
        padding: 64px 48px;
    }
    .cta-modern__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-modern__title {
        font-size: 42px;
        letter-spacing: -1px;
    }
    .sec-title-modern__title {
        font-size: 34px;
    }
    .page-header__title {
        font-size: 36px;
    }
    .service-card-modern,
    .value-card-modern {
        padding: 40px 32px;
    }
    .contact-form-modern,
    .quote-form-modern__card {
        padding: 48px 36px;
    }
}

/* ============================================ */
/* 23. MICRO-INTERACTIONS */
/* ============================================ */

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(196, 30, 40, 0.3); }
    50% { box-shadow: 0 0 40px rgba(196, 30, 40, 0.6); }
}

.btn-modern--primary:active {
    transform: scale(0.98);
}

.service-card-modern:active,
.value-card-modern:active {
    transform: scale(0.98);
}

/* Smooth transitions for everything */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================ */
/* 24. PREMIUM TYPOGRAPHY UPGRADE */
/* ============================================ */

h1, h2, h3, h4, h5, h6,
.hero-modern__title,
.sec-title-modern__title,
.page-header__title,
.service-card-modern__title,
.value-card-modern__title,
.testimonial-card-modern__author-info h4,
.mission-card-modern__title,
.team-card-modern__name,
.achievement-card-modern__title,
.cta-modern__title {
    font-family: var(--font-modern);
    letter-spacing: -0.5px;
}

p, .hero-modern__subtitle,
.sec-title-modern__text,
.service-card-modern__text,
.value-card-modern__text,
.about-modern__text {
    font-family: var(--font-modern);
    line-height: 1.8;
}

/* ============================================ */
/* END OF SUPER MODERN UI/UX UPGRADE v2.0 */
/* ============================================ */


/* ============================================ */
/* WORLD-CLASS SAAS UI/UX DESIGN */
/* Inspired by: Stripe, AgentPass, Lovable, Monday.com */
/* Added: November 28, 2025 */
/* ============================================ */

/* ============================================ */
/* 1. SAAS-STYLE HERO (Stripe-inspired) */
/* ============================================ */

.hero-saas {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    overflow: hidden;
    padding: 180px 0 100px;
}

.hero-saas__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(196, 30, 40, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(196, 30, 40, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-saas__shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-saas__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-saas__shape--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero-saas__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff3d47 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.hero-saas__shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-saas__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2.5px;
    color: white;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-saas__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-saas__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-saas__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-saas__breadcrumb a:hover {
    color: #C41E28;
}

.hero-saas__breadcrumb span:last-child {
    color: white;
}

/* ============================================ */
/* 2. PREMIUM SERVICE CATEGORY GRID */
/* ============================================ */

.services-premium-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
}

.services-premium-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 40, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 40, 0.015) 0%, transparent 40%);
    z-index: 0;
}

.services-premium-grid > .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.service-card-saas {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas:hover::before {
    transform: scaleX(1);
}

.service-card-saas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(196, 30, 40, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-saas:hover::after {
    opacity: 1;
}

.service-card-saas:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(196, 30, 40, 0.1);
}

.service-card-saas__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.08) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.12),
                inset 0 1px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas__icon i {
    font-size: 32px;
    color: #C41E28;
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.2));
}

.service-card-saas:hover .service-card-saas__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.service-card-saas:hover .service-card-saas__icon i {
    color: white;
}

.service-card-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0a0a16;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #556677;
    margin-bottom: 24px;
}

.service-card-saas__link {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #C41E28;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-saas__link i {
    transition: transform 0.3s ease;
}

.service-card-saas:hover .service-card-saas__link {
    gap: 12px;
}

.service-card-saas:hover .service-card-saas__link i {
    transform: translateX(4px);
}

/* ============================================ */
/* 3. FEATURE HIGHLIGHT STRIP (Monday.com style) */
/* ============================================ */

.feature-strip {
    padding: 80px 0;
    background: white;
}

.feature-strip > .container {
    max-width: 1200px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.feature-pill:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 32px rgba(196, 30, 40, 0.06);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(196, 30, 40, 0.15);
}

.feature-pill__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.18) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 30, 40, 0.15);
}

.feature-pill__icon i {
    font-size: 24px;
    color: #C41E28;
}

.feature-pill__content {
    flex: 1;
}

.feature-pill__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a16;
    margin-bottom: 4px;
}

.feature-pill__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #667788;
    margin: 0;
    line-height: 1.5;
}

.feature-pill:hover .feature-pill__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(196, 30, 40, 0.25);
}

.feature-pill:hover .feature-pill__icon i {
    color: white;
}

/* ============================================ */
/* 4. COMPARISON SECTION (Webflow-inspired) */
/* ============================================ */

.comparison-saas {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.comparison-saas > .container {
    max-width: 1200px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 64px 56px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.comparison-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0a0a16;
    margin-bottom: 24px;
}

.comparison-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #556677;
    margin-bottom: 32px;
}

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

.comparison-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #334455;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.comparison-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(196, 30, 40, 0.25);
}

/* ============================================ */
/* 5. PREMIUM CTA STRIP (Bottom) */
/* ============================================ */

.cta-saas {
    padding: 0 0 100px;
    background: white;
}

.cta-saas__inner {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    border-radius: 32px;
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.35),
                inset 0 1px 4px rgba(255, 255, 255, 0.3);
    animation: gradientShiftSlow 8s ease infinite;
}

.cta-saas__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientShiftSlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.cta-saas__button {
    position: relative;
    z-index: 2;
}

.btn-saas-white {
    padding: 22px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: white;
    color: #C41E28;
    border-radius: 14px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-saas-white:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    background: #fafbfc;
    color: #C41E28;
}

.btn-saas-white i {
    transition: transform 0.3s ease;
}

.btn-saas-white:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* 6. SECTION TITLE - SAAS STYLE */
/* ============================================ */

.sec-title-saas {
    text-align: center;
    margin-bottom: 72px;
}

.sec-title-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #C41E28;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.06);
    border-radius: 50px;
}

.sec-title-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #0a0a16;
    margin-bottom: 24px;
    line-height: 1.15;
}

.sec-title-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #667788;
    max-width: 720px;
    margin: 0 auto;
}

/* ============================================ */
/* 7. DARK MODE - SAAS STYLE */
/* ============================================ */

[data-theme="dark"] .hero-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

[data-theme="dark"] .services-premium-grid {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

[data-theme="dark"] .service-card-saas {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-saas:hover {
    background: rgba(55, 55, 78, 0.8);
}

[data-theme="dark"] .service-card-saas__title {
    color: white;
}

[data-theme="dark"] .service-card-saas__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .sec-title-saas__title {
    color: white;
}

[data-theme="dark"] .sec-title-saas__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .feature-pill {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .feature-pill:hover {
    background: rgba(55, 55, 78, 0.8);
}

[data-theme="dark"] .feature-pill__title {
    color: white;
}

[data-theme="dark"] .feature-pill__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .comparison-card {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comparison-card__title {
    color: white;
}

[data-theme="dark"] .comparison-card__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .comparison-checklist li {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================ */
/* 8. RESPONSIVE - SAAS STYLE */
/* ============================================ */

@media (max-width: 1199px) {
    .hero-saas__title {
        font-size: 60px;
    }
    .sec-title-saas__title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-saas {
        padding: 140px 0 80px;
        min-height: 55vh;
    }
    .hero-saas__title {
        font-size: 48px;
    }
    .hero-saas__subtitle {
        font-size: 20px;
    }
    .sec-title-saas__title {
        font-size: 40px;
    }
    .cta-saas__inner {
        padding: 64px 48px;
    }
    .cta-saas__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-saas {
        padding: 120px 0 60px;
    }
    .hero-saas__title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .hero-saas__subtitle {
        font-size: 18px;
    }
    .sec-title-saas__title {
        font-size: 32px;
    }
    .service-card-saas {
        padding: 40px 32px;
    }
    .feature-pill {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .cta-saas__inner {
        padding: 56px 32px;
    }
    .cta-saas__title {
        font-size: 30px;
    }
    .btn-saas-white {
        padding: 18px 36px;
        font-size: 16px;
    }
}

/* ============================================ */
/* END OF SAAS UI/UX DESIGN */
/* ============================================ */


/* ============================================ */
/* WORLD-CLASS SAAS UI/UX DESIGN */
/* Inspired by: Stripe, AgentPass, Lovable, Monday.com */
/* Added: November 28, 2025 */
/* ============================================ */

/* ============================================ */
/* 1. SAAS-STYLE HERO (Stripe-inspired) */
/* ============================================ */

.hero-saas {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    overflow: hidden;
    padding: 180px 0 100px;
}

.hero-saas__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(196, 30, 40, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(196, 30, 40, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.hero-saas__shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-saas__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.15;
    animation: floatShape 20s ease-in-out infinite;
}

.hero-saas__shape--1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.hero-saas__shape--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff3d47 0%, transparent 70%);
    bottom: 15%;
    right: 10%;
    animation-delay: 5s;
}

.hero-saas__shape--3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -40px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

.hero-saas__content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2.5px;
    color: white;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.85) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-saas__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-saas__breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-saas__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-saas__breadcrumb a:hover {
    color: #C41E28;
}

.hero-saas__breadcrumb span:last-child {
    color: white;
}

/* ============================================ */
/* 2. PREMIUM SERVICE CATEGORY GRID */
/* ============================================ */

.services-premium-grid {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
}

.services-premium-grid::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 40, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 40, 0.015) 0%, transparent 40%);
    z-index: 0;
}

.services-premium-grid > .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.service-card-saas {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 48px 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas:hover::before {
    transform: scaleX(1);
}

.service-card-saas::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(196, 30, 40, 0.06) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card-saas:hover::after {
    opacity: 1;
}

.service-card-saas:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(196, 30, 40, 0.1);
}

.service-card-saas__icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.08) 0%, rgba(196, 30, 40, 0.15) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.12),
                inset 0 1px 4px rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-saas__icon i {
    font-size: 32px;
    color: #C41E28;
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.2));
}

.service-card-saas:hover .service-card-saas__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

.service-card-saas:hover .service-card-saas__icon i {
    color: white;
}

.service-card-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #0a0a16;
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #556677;
    margin-bottom: 24px;
}

.service-card-saas__link {
    font-family: 'Inter', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #C41E28;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-card-saas__link i {
    transition: transform 0.3s ease;
}

.service-card-saas:hover .service-card-saas__link {
    gap: 12px;
}

.service-card-saas:hover .service-card-saas__link i {
    transform: translateX(4px);
}

/* ============================================ */
/* 3. FEATURE HIGHLIGHT STRIP (Monday.com style) */
/* ============================================ */

.feature-strip {
    padding: 80px 0;
    background: white;
}

.feature-strip > .container {
    max-width: 1200px;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    margin-bottom: 20px;
}

.feature-pill:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08),
                0 0 32px rgba(196, 30, 40, 0.06);
    transform: translateX(8px);
    background: rgba(255, 255, 255, 1);
    border-color: rgba(196, 30, 40, 0.15);
}

.feature-pill__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.1) 0%, rgba(196, 30, 40, 0.18) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(196, 30, 40, 0.15);
}

.feature-pill__icon i {
    font-size: 24px;
    color: #C41E28;
}

.feature-pill__content {
    flex: 1;
}

.feature-pill__title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0a0a16;
    margin-bottom: 4px;
}

.feature-pill__text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #667788;
    margin: 0;
    line-height: 1.5;
}

.feature-pill:hover .feature-pill__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(196, 30, 40, 0.25);
}

.feature-pill:hover .feature-pill__icon i {
    color: white;
}

/* ============================================ */
/* 4. COMPARISON SECTION (Webflow-inspired) */
/* ============================================ */

.comparison-saas {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.comparison-saas > .container {
    max-width: 1200px;
}

.comparison-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 28px;
    padding: 64px 56px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
}

.comparison-card__title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    color: #0a0a16;
    margin-bottom: 24px;
}

.comparison-card__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
    color: #556677;
    margin-bottom: 32px;
}

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

.comparison-checklist li {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #334455;
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
}

.comparison-checklist li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(196, 30, 40, 0.25);
}

/* ============================================ */
/* 5. PREMIUM CTA STRIP (Bottom) */
/* ============================================ */

.cta-saas {
    padding: 0 0 100px;
    background: white;
}

.cta-saas__inner {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 50%, #C41E28 100%);
    background-size: 200% 100%;
    border-radius: 32px;
    padding: 80px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.35),
                inset 0 1px 4px rgba(255, 255, 255, 0.3);
    animation: gradientShiftSlow 8s ease infinite;
}

.cta-saas__inner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes gradientShiftSlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: white;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.cta-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    position: relative;
    z-index: 2;
}

.cta-saas__button {
    position: relative;
    z-index: 2;
}

.btn-saas-white {
    padding: 22px 48px;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    background: white;
    color: #C41E28;
    border-radius: 14px;
    border: none;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-saas-white:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
    background: #fafbfc;
    color: #C41E28;
}

.btn-saas-white i {
    transition: transform 0.3s ease;
}

.btn-saas-white:hover i {
    transform: translateX(4px);
}

/* ============================================ */
/* 6. SECTION TITLE - SAAS STYLE */
/* ============================================ */

.sec-title-saas {
    text-align: center;
    margin-bottom: 72px;
}

.sec-title-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #C41E28;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.06);
    border-radius: 50px;
}

.sec-title-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    color: #0a0a16;
    margin-bottom: 24px;
    line-height: 1.15;
}

.sec-title-saas__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    line-height: 1.7;
    color: #667788;
    max-width: 720px;
    margin: 0 auto;
}

/* ============================================ */
/* 7. DARK MODE - SAAS STYLE */
/* ============================================ */

[data-theme="dark"] .hero-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

[data-theme="dark"] .services-premium-grid {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

[data-theme="dark"] .service-card-saas {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .service-card-saas:hover {
    background: rgba(55, 55, 78, 0.8);
}

[data-theme="dark"] .service-card-saas__title {
    color: white;
}

[data-theme="dark"] .service-card-saas__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .sec-title-saas__title {
    color: white;
}

[data-theme="dark"] .sec-title-saas__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .feature-pill {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .feature-pill:hover {
    background: rgba(55, 55, 78, 0.8);
}

[data-theme="dark"] .feature-pill__title {
    color: white;
}

[data-theme="dark"] .feature-pill__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .comparison-card {
    background: rgba(45, 45, 68, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comparison-card__title {
    color: white;
}

[data-theme="dark"] .comparison-card__text {
    color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .comparison-checklist li {
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================ */
/* 8. RESPONSIVE - SAAS STYLE */
/* ============================================ */

@media (max-width: 1199px) {
    .hero-saas__title {
        font-size: 60px;
    }
    .sec-title-saas__title {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .hero-saas {
        padding: 140px 0 80px;
        min-height: 55vh;
    }
    .hero-saas__title {
        font-size: 48px;
    }
    .hero-saas__subtitle {
        font-size: 20px;
    }
    .sec-title-saas__title {
        font-size: 40px;
    }
    .cta-saas__inner {
        padding: 64px 48px;
    }
    .cta-saas__title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-saas {
        padding: 120px 0 60px;
    }
    .hero-saas__title {
        font-size: 38px;
        letter-spacing: -1px;
    }
    .hero-saas__subtitle {
        font-size: 18px;
    }
    .sec-title-saas__title {
        font-size: 32px;
    }
    .service-card-saas {
        padding: 40px 32px;
    }
    .feature-pill {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }
    .cta-saas__inner {
        padding: 56px 32px;
    }
    .cta-saas__title {
        font-size: 30px;
    }
    .btn-saas-white {
        padding: 18px 36px;
        font-size: 16px;
    }
}

/* ============================================ */
/* END OF SAAS UI/UX DESIGN */
/* ============================================ */


/* ============================================ */
/* HOMEPAGE SAAS REFINEMENT */
/* Perfect cohesiveness with rest of site */
/* ============================================ */

/* Homepage Hero - Video Version */
.hero-saas--homepage {
    min-height: 85vh;
}

.hero-saas__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
    z-index: 0;
}

.hero-saas__content--homepage {
    max-width: 900px;
}

.hero-saas__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Upgrade existing hero-modern to match hero-saas */
.hero-modern {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    min-height: 85vh;
    padding: 180px 0 100px;
}

.hero-modern::before {
    background: 
        radial-gradient(circle at 15% 30%, rgba(196, 30, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(196, 30, 40, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    animation: particleMove 20s ease-in-out infinite;
}

.hero-modern__overlay {
    background: linear-gradient(135deg, 
        rgba(10, 10, 22, 0.97) 0%, 
        rgba(26, 26, 46, 0.92) 40%,
        rgba(196, 30, 40, 0.08) 100%);
}

.hero-modern__badge {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-modern__title {
    font-family: 'Inter', 'Kumbh Sans', sans-serif;
    font-size: 78px;
    font-weight: 900;
    letter-spacing: -2.5px;
}

.hero-modern__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
}

/* Upgrade about-modern sections to glassmorphism */
.about-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
}

.about-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 40, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 40, 0.015) 0%, transparent 40%);
    z-index: 0;
}

.about-modern > .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.about-modern__image img {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.about-modern__badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.about-modern__content {
    padding-left: 60px;
}

.about-modern__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

/* Upgrade services on homepage to match glassmorphism */
.services-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.services-modern > .container {
    max-width: 1200px;
}

/* Convert homepage service cards to SaaS style */
.services-modern .service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.services-modern .service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.services-modern .service-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.services-modern .service-card-modern:hover .service-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

/* Stats section upgrade */
.stats-modern {
    padding: 0;
}

.stats-modern__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    margin: -80px auto 100px;
    max-width: 1200px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.stat-modern__number {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

/* Testimonials upgrade */
.testimonials-modern {
    padding: 100px 0;
    background: white;
}

.testimonials-modern > .container {
    max-width: 1200px;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
}

/* Upgrade all section titles on homepage */
.sec-title-modern__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 40, 0.15);
}

.sec-title-modern__title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 24px;
}

.sec-title-modern__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-top: 28px;
}

/* Perfect alignment for all containers */
.container {
    max-width: 1200px !important;
}

/* Consistent section spacing */
section {
    padding: 100px 0;
}

.hero-modern,
.hero-saas {
    padding: 180px 0 100px;
}

/* Remove scattered spacing, apply consistent rhythm */
.services-modern,
.about-modern,
.testimonials-modern,
.services-premium-grid,
.feature-strip,
.comparison-saas {
    padding: 100px 0;
}

.cta-saas,
.cta-modern {
    padding: 0 0 100px;
}

/* Ensure no weird gaps */
section + section {
    margin-top: 0;
}

/* Dark mode consistency */
[data-theme="dark"] .about-modern,
[data-theme="dark"] .services-modern,
[data-theme="dark"] .testimonials-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

[data-theme="dark"] .services-modern .service-card-modern,
[data-theme="dark"] .testimonial-card-modern {
    background: rgba(45, 45, 68, 0.6);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================ */
/* END OF HOMEPAGE SAAS REFINEMENT */
/* ============================================ */


/* ============================================ */
/* HOMEPAGE SAAS REFINEMENT */
/* Perfect cohesiveness with rest of site */
/* ============================================ */

/* Homepage Hero - Video Version */
.hero-saas--homepage {
    min-height: 85vh;
}

.hero-saas__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
    z-index: 0;
}

.hero-saas__content--homepage {
    max-width: 900px;
}

.hero-saas__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Upgrade existing hero-modern to match hero-saas */
.hero-modern {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    min-height: 85vh;
    padding: 180px 0 100px;
}

.hero-modern::before {
    background: 
        radial-gradient(circle at 15% 30%, rgba(196, 30, 40, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 85% 70%, rgba(196, 30, 40, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    animation: particleMove 20s ease-in-out infinite;
}

.hero-modern__overlay {
    background: linear-gradient(135deg, 
        rgba(10, 10, 22, 0.97) 0%, 
        rgba(26, 26, 46, 0.92) 40%,
        rgba(196, 30, 40, 0.08) 100%);
}

.hero-modern__badge {
    padding: 14px 32px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-modern__title {
    font-family: 'Inter', 'Kumbh Sans', sans-serif;
    font-size: 78px;
    font-weight: 900;
    letter-spacing: -2.5px;
}

.hero-modern__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 22px;
}

/* Upgrade about-modern sections to glassmorphism */
.about-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
    position: relative;
}

.about-modern::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(196, 30, 40, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(196, 30, 40, 0.015) 0%, transparent 40%);
    z-index: 0;
}

.about-modern > .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
}

.about-modern__image img {
    border-radius: 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.15);
}

.about-modern__badge {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    border-radius: 28px;
    box-shadow: 0 20px 60px rgba(196, 30, 40, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.about-modern__content {
    padding-left: 60px;
}

.about-modern__text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.8;
}

/* Upgrade services on homepage to match glassmorphism */
.services-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #fafbfc 0%, #f5f7fa 100%);
}

.services-modern > .container {
    max-width: 1200px;
}

/* Convert homepage service cards to SaaS style */
.services-modern .service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.services-modern .service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
    background: rgba(255, 255, 255, 0.98);
}

.services-modern .service-card-modern__icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.12) 0%, rgba(196, 30, 40, 0.2) 100%);
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.2),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
}

.services-modern .service-card-modern:hover .service-card-modern__icon {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    transform: scale(1.08) translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.6);
}

/* Stats section upgrade */
.stats-modern {
    padding: 0;
}

.stats-modern__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    margin: -80px auto 100px;
    max-width: 1200px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3),
                inset 0 2px 4px rgba(255, 255, 255, 0.05);
}

.stat-modern__number {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

/* Testimonials upgrade */
.testimonials-modern {
    padding: 100px 0;
    background: white;
}

.testimonials-modern > .container {
    max-width: 1200px;
}

.testimonial-card-modern {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 28px;
    padding: 48px 44px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card-modern:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12),
                0 0 48px rgba(196, 30, 40, 0.08);
}

/* Upgrade all section titles on homepage */
.sec-title-modern__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 8px 20px;
    background: rgba(196, 30, 40, 0.08);
    border-radius: 50px;
    border: 1px solid rgba(196, 30, 40, 0.15);
}

.sec-title-modern__title {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-top: 24px;
}

.sec-title-modern__text {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    margin-top: 28px;
}

/* Perfect alignment for all containers */
.container {
    max-width: 1200px !important;
}

/* Consistent section spacing */
section {
    padding: 100px 0;
}

.hero-modern,
.hero-saas {
    padding: 180px 0 100px;
}

/* Remove scattered spacing, apply consistent rhythm */
.services-modern,
.about-modern,
.testimonials-modern,
.services-premium-grid,
.feature-strip,
.comparison-saas {
    padding: 100px 0;
}

.cta-saas,
.cta-modern {
    padding: 0 0 100px;
}

/* Ensure no weird gaps */
section + section {
    margin-top: 0;
}

/* Dark mode consistency */
[data-theme="dark"] .about-modern,
[data-theme="dark"] .services-modern,
[data-theme="dark"] .testimonials-modern {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
}

[data-theme="dark"] .services-modern .service-card-modern,
[data-theme="dark"] .testimonial-card-modern {
    background: rgba(45, 45, 68, 0.6);
    backdrop-filter: blur(20px);
    border-color: rgba(255, 255, 255, 0.08);
}

/* ============================================ */
/* END OF HOMEPAGE SAAS REFINEMENT */
/* ============================================ */


/* ============================================ */
/* HOMEPAGE SAAS SPECIFIC STYLES */
/* ============================================ */

/* Homepage Hero - Keep video visible */
.hero-saas--homepage {
    min-height: 90vh;
}

.hero-saas__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
    z-index: 0;
}

/* Homepage specific content spacing */
.hero-saas__content--homepage {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero stats for homepage */
.hero-saas__stats {
    display: flex;
    gap: 64px;
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.hero-saas__stat {
    text-align: center;
}

.hero-saas__stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.hero-saas__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Stats section upgrade */
.stats-saas {
    padding: 0;
    background: transparent;
    margin-top: -80px;
}

.stats-saas__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto 100px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25),
                inset 0 1px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-saas__inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 35%, rgba(196, 30, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(196, 30, 40, 0.1) 0%, transparent 50%);
}

.stat-saas {
    text-align: center;
    padding: 0 32px;
    position: relative;
}

.stat-saas:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-saas__number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.stat-saas__label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Homepage CTA positioning */
.hero-saas__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-saas--homepage {
        min-height: 75vh;
    }
    
    .hero-saas__stats {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
        padding-top: 48px;
    }
    
    .hero-saas__stat-number {
        font-size: 48px;
    }
    
    .stat-saas:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-saas--homepage {
        padding: 140px 0 70px;
    }
    
    .hero-saas__cta {
        flex-direction: column;
    }
    
    .btn-modern,
    .btn-saas-white {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* END OF HOMEPAGE SAAS ADDITIONS */
/* ============================================ */


/* ============================================ */
/* HOMEPAGE SAAS SPECIFIC STYLES */
/* ============================================ */

/* Homepage Hero - Keep video visible */
.hero-saas--homepage {
    min-height: 90vh;
}

.hero-saas__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.08;
    filter: grayscale(40%) blur(2px);
    z-index: 0;
}

/* Homepage specific content spacing */
.hero-saas__content--homepage {
    max-width: 900px;
    margin: 0 auto;
}

/* Hero stats for homepage */
.hero-saas__stats {
    display: flex;
    gap: 64px;
    margin-top: 80px;
    padding-top: 64px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: center;
}

.hero-saas__stat {
    text-align: center;
}

.hero-saas__stat-number {
    font-family: 'Inter', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.hero-saas__stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Stats section upgrade */
.stats-saas {
    padding: 0;
    background: transparent;
    margin-top: -80px;
}

.stats-saas__inner {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 50%, #2d2d44 100%);
    border-radius: 32px;
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto 100px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.25),
                inset 0 1px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.stats-saas__inner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 25% 35%, rgba(196, 30, 40, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 65%, rgba(196, 30, 40, 0.1) 0%, transparent 50%);
}

.stat-saas {
    text-align: center;
    padding: 0 32px;
    position: relative;
}

.stat-saas:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-saas__number {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff3d47 0%, #C41E28 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 16px rgba(196, 30, 40, 0.4));
}

.stat-saas__label {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Homepage CTA positioning */
.hero-saas__cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-saas--homepage {
        min-height: 75vh;
    }
    
    .hero-saas__stats {
        flex-direction: column;
        gap: 40px;
        margin-top: 60px;
        padding-top: 48px;
    }
    
    .hero-saas__stat-number {
        font-size: 48px;
    }
    
    .stat-saas:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-saas--homepage {
        padding: 140px 0 70px;
    }
    
    .hero-saas__cta {
        flex-direction: column;
    }
    
    .btn-modern,
    .btn-saas-white {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================ */
/* END OF HOMEPAGE SAAS ADDITIONS */
/* ============================================ */


/* ============================================ */
/* MODERN SAAS FOOTER (Asenay Tech Style) */
/* Clean, organized columns - No images */
/* ============================================ */

.footer-saas {
    background: linear-gradient(135deg, #1a1a2e 0%, #0a0a16 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(196, 30, 40, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 30, 40, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.footer-saas > .container {
    position: relative;
    z-index: 1;
}

.footer-saas__top {
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Company Logo & Info */
.footer-saas__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-saas__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    max-width: 320px;
}

/* Social Icons */
.footer-saas__social {
    display: flex;
    gap: 12px;
}

.footer-saas__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-saas__social a:hover {
    background: #C41E28;
    border-color: #C41E28;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 30, 40, 0.3);
}

/* Footer Widgets */
.footer-saas__widget {
    height: 100%;
}

.footer-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer Links */
.footer-saas__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-saas__links li {
    margin-bottom: 14px;
}

.footer-saas__links a {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-saas__links a:hover {
    color: white;
    transform: translateX(4px);
}

/* Contact Info */
.footer-saas__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-saas__contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
}

.footer-saas__contact i {
    width: 20px;
    color: #C41E28;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-saas__contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__contact a:hover {
    color: white;
}

.footer-saas__contact span {
    color: rgba(255, 255, 255, 0.7);
}

/* Footer Bottom */
.footer-saas__bottom {
    padding: 32px 0;
    margin-top: 64px;
}

.footer-saas__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-saas__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-saas__legal {
    display: flex;
    gap: 24px;
}

.footer-saas__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__legal a:hover {
    color: white;
}

/* Dark Mode */
[data-theme="dark"] .footer-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-saas {
        padding: 60px 0 0;
    }
    
    .footer-saas__top {
        padding-bottom: 48px;
    }
    
    .footer-saas__bottom {
        margin-top: 48px;
    }
}

@media (max-width: 767px) {
    .footer-saas__bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-saas__legal {
        justify-content: center;
    }
    
    .footer-saas__tagline {
        max-width: 100%;
    }
}

/* ============================================ */
/* END OF MODERN SAAS FOOTER */
/* ============================================ */


/* ============================================ */
/* PREMIUM SAAS FOOTER (Asenay Tech Style) */
/* Clean, modern, no image gallery */
/* ============================================ */

.footer-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 40, 0.3) 50%, transparent 100%);
}

.footer-saas__widget {
    margin-bottom: 48px;
}

.footer-saas__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-saas__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-saas__social {
    display: flex;
    gap: 12px;
}

.footer-saas__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-saas__social a:hover {
    background: #C41E28;
    border-color: #C41E28;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 30, 40, 0.4);
}

.footer-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

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

.footer-saas__links li {
    margin-bottom: 12px;
}

.footer-saas__links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-saas__links a:hover {
    color: white;
    transform: translateX(4px);
}

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

.footer-saas__contact li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-saas__contact i {
    color: #C41E28;
    margin-top: 2px;
    font-size: 14px;
}

.footer-saas__contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__contact a:hover {
    color: white;
}

/* Footer Bottom */
.footer-saas__bottom {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.footer-saas__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-saas__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-saas__legal {
    display: flex;
    gap: 24px;
}

.footer-saas__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__legal a:hover {
    color: white;
}

/* Dark Mode */
[data-theme="dark"] .footer-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-saas {
        padding: 64px 0 0;
    }
    
    .footer-saas__bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-saas {
        padding: 48px 0 0;
    }
    
    .footer-saas__widget {
        margin-bottom: 40px;
    }
    
    .footer-saas__tagline {
        max-width: 100%;
    }
}

/* ============================================ */
/* END OF PREMIUM SAAS FOOTER */
/* ============================================ */


/* ============================================ */
/* PREMIUM SAAS FOOTER (Asenay Tech Style) */
/* Clean, modern, no image gallery */
/* ============================================ */

.footer-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-saas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(196, 30, 40, 0.3) 50%, transparent 100%);
}

.footer-saas__widget {
    margin-bottom: 48px;
}

.footer-saas__logo {
    display: inline-block;
    margin-bottom: 24px;
}

.footer-saas__logo img {
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.footer-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-saas__social {
    display: flex;
    gap: 12px;
}

.footer-saas__social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-saas__social a:hover {
    background: #C41E28;
    border-color: #C41E28;
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(196, 30, 40, 0.4);
}

.footer-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

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

.footer-saas__links li {
    margin-bottom: 12px;
}

.footer-saas__links a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-saas__links a:hover {
    color: white;
    transform: translateX(4px);
}

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

.footer-saas__contact li {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-saas__contact i {
    color: #C41E28;
    margin-top: 2px;
    font-size: 14px;
}

.footer-saas__contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__contact a:hover {
    color: white;
}

/* Footer Bottom */
.footer-saas__bottom {
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 32px;
}

.footer-saas__bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-saas__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-saas__legal {
    display: flex;
    gap: 24px;
}

.footer-saas__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-saas__legal a:hover {
    color: white;
}

/* Dark Mode */
[data-theme="dark"] .footer-saas {
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

/* Responsive */
@media (max-width: 991px) {
    .footer-saas {
        padding: 64px 0 0;
    }
    
    .footer-saas__bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .footer-saas {
        padding: 48px 0 0;
    }
    
    .footer-saas__widget {
        margin-bottom: 40px;
    }
    
    .footer-saas__tagline {
        max-width: 100%;
    }
}

/* ============================================ */
/* END OF PREMIUM SAAS FOOTER */
/* ============================================ */



/* Fix Footer Logo Display */
.footer-saas__logo img {
    display: block !important;
    max-width: 160px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.footer-saas__widget {
    display: block !important;
    visibility: visible !important;
}


/* Fix Footer Logo Display */
.footer-saas__logo img {
    display: block !important;
    max-width: 160px !important;
    height: auto !important;
    filter: brightness(0) invert(1) !important;
    opacity: 1 !important;
}

.footer-saas__widget {
    display: block !important;
    visibility: visible !important;
}


/* Premium Footer Logo Box (Asenay Tech Style) */
.footer-saas__logo {
    display: block !important;
    background: white !important;
    padding: 20px 24px !important;
    border-radius: 12px !important;
    margin-bottom: 28px !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
}

.footer-saas__logo:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
}

.footer-saas__logo img {
    display: block !important;
    width: 140px !important;
    height: auto !important;
    filter: none !important;
    opacity: 1 !important;
}

/* ============================================ */
/* FOOTER COMPACT REFINEMENT (Asenay Tech Quality) */
/* Tighter spacing, professional layout */
/* ============================================ */

/* Override previous footer styles with tighter spacing */
.footer-saas {
    padding: 60px 0 0 !important; /* Reduced from 80px */
    background: linear-gradient(135deg, #0a0a16 0%, #1a1a2e 100%);
}

.footer-saas__main {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-saas__widget {
    margin-bottom: 0 !important; /* Remove bottom margin */
}

/* Logo styling - white box */
.footer-saas__logo {
    display: inline-block !important;
    background: white !important;
    padding: 16px 20px !important; /* Tighter padding */
    border-radius: 10px !important;
    margin-bottom: 20px !important; /* Reduced from 28px */
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.footer-saas__logo img {
    display: block !important;
    width: 130px !important; /* Slightly smaller */
    height: auto !important;
    filter: none !important;
}

/* Tagline - more compact */
.footer-saas__tagline {
    font-family: 'Inter', sans-serif;
    font-size: 14px !important; /* Smaller */
    line-height: 1.6 !important; /* Tighter */
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 20px !important; /* Reduced from 24px */
    max-width: 280px;
}

/* Social icons - more compact */
.footer-saas__social {
    display: flex;
    gap: 10px !important; /* Reduced from 12px */
}

.footer-saas__social a {
    width: 36px !important; /* Smaller */
    height: 36px !important;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px !important; /* Slightly smaller radius */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px !important;
    transition: all 0.3s ease;
}

/* Column titles - smaller, compact */
.footer-saas__title {
    font-family: 'Inter', sans-serif;
    font-size: 14px !important; /* Smaller from 16px */
    font-weight: 700;
    color: white;
    margin-bottom: 16px !important; /* Reduced from 20px */
    letter-spacing: -0.2px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Links - tighter spacing */
.footer-saas__links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-saas__links li {
    margin-bottom: 8px !important; /* Much tighter - was 12px */
    line-height: 1.4 !important; /* Compact */
}

.footer-saas__links a {
    font-family: 'Inter', sans-serif;
    font-size: 13px !important; /* Slightly smaller */
    color: rgba(255, 255, 255, 0.65) !important;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    line-height: 1.4 !important;
}

.footer-saas__links a:hover {
    color: white !important;
    transform: translateX(3px);
}

/* Contact list - compact */
.footer-saas__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-saas__contact li {
    font-family: 'Inter', sans-serif;
    font-size: 13px !important; /* Smaller */
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px !important; /* Reduced from 16px */
    display: flex;
    align-items: flex-start;
    gap: 10px !important; /* Tighter gap */
    line-height: 1.5 !important;
}

.footer-saas__contact i {
    color: #C41E28;
    margin-top: 2px;
    font-size: 13px !important; /* Smaller icon */
    flex-shrink: 0;
}

.footer-saas__contact a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.5 !important;
}

/* Row spacing - consistent gaps */
.footer-saas__main .row {
    row-gap: 40px !important; /* Consistent vertical spacing */
    column-gap: 32px !important; /* Consistent horizontal spacing */
}

/* Footer Bottom - more compact */
.footer-saas__bottom {
    padding: 24px 0 !important; /* Reduced from 32px */
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 48px !important; /* Reduced from large gap */
}

.footer-saas__bottom-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px !important; /* Tighter */
}

.footer-saas__copyright {
    font-family: 'Inter', sans-serif;
    font-size: 13px !important; /* Smaller */
    color: rgba(255, 255, 255, 0.55) !important;
    margin: 0;
    line-height: 1.4;
}

.footer-saas__legal {
    display: flex;
    gap: 20px !important; /* Tighter */
}

.footer-saas__legal a {
    font-family: 'Inter', sans-serif;
    font-size: 13px !important; /* Smaller */
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.footer-saas__legal a:hover {
    color: white;
}

/* Responsive - Mobile Tightening */
@media (max-width: 991px) {
    .footer-saas {
        padding: 48px 0 0 !important; /* Tighter on tablet */
    }
    
    .footer-saas__main .row {
        row-gap: 32px !important;
    }
    
    .footer-saas__bottom {
        margin-top: 40px !important;
        padding: 20px 0 !important;
    }
    
    .footer-saas__bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px !important;
    }
}

@media (max-width: 767px) {
    .footer-saas {
        padding: 40px 0 0 !important; /* Even tighter on mobile */
    }
    
    .footer-saas__widget {
        margin-bottom: 0 !important;
    }
    
    .footer-saas__main .row {
        row-gap: 28px !important; /* Compact mobile spacing */
    }
    
    .footer-saas__bottom {
        margin-top: 32px !important;
        padding: 16px 0 !important;
    }
    
    .footer-saas__logo {
        margin-bottom: 16px !important;
    }
    
    .footer-saas__tagline {
        max-width: 100%;
        margin-bottom: 16px !important;
    }
}

/* Column alignment fix */
.footer-saas .col-lg-4,
.footer-saas .col-lg-2,
.footer-saas .col-md-6,
.footer-saas .col-6 {
    display: flex;
    flex-direction: column;
}

/* ============================================ */
/* END OF FOOTER COMPACT REFINEMENT */
/* ============================================ */



/* ULTRA-COMPACT FOOTER LINKS (Asenay Tech Tight Spacing) */
.footer-saas__links li {
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
}

.footer-saas__links a {
    font-size: 13px !important;
    line-height: 1.4 !important;
    padding: 2px 0 !important;
}

.footer-saas__contact li {
    margin-bottom: 10px !important;
    line-height: 1.45 !important;
}

.footer-saas__title {
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}


/* ULTRA-COMPACT FOOTER LINKS (Asenay Tech Tight Spacing) */
.footer-saas__links li {
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
}

.footer-saas__links a {
    font-size: 13px !important;
    line-height: 1.4 !important;
    padding: 2px 0 !important;
}

.footer-saas__contact li {
    margin-bottom: 10px !important;
    line-height: 1.45 !important;
}

.footer-saas__title {
    margin-bottom: 14px !important;
    font-size: 13px !important;
    line-height: 1.3 !important;
}


/* Remove Footer Divider Line */
.footer-saas__bottom {
    border-top: none !important;
    margin-top: 40px !important;
    padding: 24px 0 !important;
}


/* Hide News Link Completely */
.main-menu__list > li:has(a[href*='blog.html']),
.main-menu__list > li:has(a[href*='news']) {
    display: none !important;
}

/* Also hide from mobile nav */
.mobile-nav__container li:has(a[href*='blog.html']),
.mobile-nav__container li:has(a[href*='news']) {
    display: none !important;
}


/* Hide News Link Completely */
.main-menu__list > li:has(a[href*='blog.html']),
.main-menu__list > li:has(a[href*='news']) {
    display: none !important;
}

/* Also hide from mobile nav */
.mobile-nav__container li:has(a[href*='blog.html']),
.mobile-nav__container li:has(a[href*='news']) {
    display: none !important;
}

/* ============================================ */
/* PREMIUM ENTERPRISE HERO - HOMEPAGE ONLY */
/* High-end insurance industry standard */
/* ============================================ */

.hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1f35 100%);
    overflow: hidden;
    padding: 160px 0 100px;
}

/* Video Background */
.hero-premium__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: grayscale(50%) blur(3px);
    z-index: 0;
}

/* Gradient Overlay */
.hero-premium__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.97) 0%, 
        rgba(26, 31, 58, 0.94) 50%,
        rgba(196, 30, 40, 0.12) 100%);
    z-index: 1;
}

/* Floating Shapes */
.hero-premium__shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-premium__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: floatShape 25s ease-in-out infinite;
}

.hero-premium__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-premium__shape--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff3d47 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: 8s;
}

/* Container */
.hero-premium__container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

/* Content Column */
.hero-premium__content {
    color: white;
}

/* Badge */
.hero-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-premium__badge i {
    color: #C41E28;
    font-size: 16px;
}

/* Main Title */
.hero-premium__title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 28px;
}

.hero-premium__title-highlight {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-premium__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 50%, transparent 100%);
    border-radius: 2px;
}

/* Subtitle */
.hero-premium__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
}

/* CTA Buttons */
.hero-premium__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-premium {
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-premium--primary {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    color: white;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.4);
}

.btn-premium--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(196, 30, 40, 0.5);
    color: white;
}

.btn-premium--outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-premium--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    color: white;
}

/* Trust Indicators */
.hero-premium__trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-premium__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-premium__trust-item i {
    color: #C41E28;
    font-size: 18px;
    flex-shrink: 0;
}

/* Hero Image Column */
.hero-premium__image {
    position: relative;
    z-index: 5;
}

.hero-premium__image-placeholder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(196, 30, 40, 0.2);
    transform-style: preserve-3d;
}

.hero-premium__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    filter: brightness(0.9) contrast(1.1);
}

.hero-premium__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(196, 30, 40, 0.3) 0%, 
        rgba(10, 14, 39, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-premium__image-placeholder:hover .hero-premium__image-overlay {
    opacity: 1;
}

.hero-premium__image-overlay i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-premium__title {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .hero-premium {
        padding: 140px 0 80px;
        min-height: 80vh;
    }
    
    .hero-premium__title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .hero-premium__subtitle {
        font-size: 17px;
        max-width: 100%;
    }
    
    /* Stack image on top on tablet/mobile */
    .hero-premium .col-lg-6:last-child {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-premium {
        padding: 120px 0 60px;
    }
    
    .hero-premium__title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-premium__subtitle {
        font-size: 16px;
    }
    
    .hero-premium__actions {
        flex-direction: column;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .hero-premium__badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ============================================ */
/* END OF PREMIUM ENTERPRISE HERO */
/* ============================================ */


/* ============================================ */
/* PREMIUM ENTERPRISE HERO - HOMEPAGE ONLY */
/* High-end insurance industry standard */
/* ============================================ */

.hero-premium {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1f35 100%);
    overflow: hidden;
    padding: 160px 0 100px;
}

/* Video Background */
.hero-premium__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.06;
    filter: grayscale(50%) blur(3px);
    z-index: 0;
}

/* Gradient Overlay */
.hero-premium__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(10, 14, 39, 0.97) 0%, 
        rgba(26, 31, 58, 0.94) 50%,
        rgba(196, 30, 40, 0.12) 100%);
    z-index: 1;
}

/* Floating Shapes */
.hero-premium__shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-premium__shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: floatShape 25s ease-in-out infinite;
}

.hero-premium__shape--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #C41E28 0%, transparent 70%);
    top: -10%;
    right: 10%;
    animation-delay: 0s;
}

.hero-premium__shape--2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ff3d47 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: 8s;
}

/* Container */
.hero-premium__container {
    position: relative;
    z-index: 10;
    max-width: 1400px;
}

/* Content Column */
.hero-premium__content {
    color: white;
}

/* Badge */
.hero-premium__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-premium__badge i {
    color: #C41E28;
    font-size: 16px;
}

/* Main Title */
.hero-premium__title {
    font-family: 'Inter', sans-serif;
    font-size: 68px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    color: white;
    margin-bottom: 28px;
}

.hero-premium__title-highlight {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-premium__title-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C41E28 0%, #ff3d47 50%, transparent 100%);
    border-radius: 2px;
}

/* Subtitle */
.hero-premium__subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
}

/* CTA Buttons */
.hero-premium__actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-premium {
    padding: 18px 36px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-premium--primary {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%);
    color: white;
    box-shadow: 0 12px 32px rgba(196, 30, 40, 0.4);
}

.btn-premium--primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(196, 30, 40, 0.5);
    color: white;
}

.btn-premium--outline {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.btn-premium--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
    color: white;
}

/* Trust Indicators */
.hero-premium__trust {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-premium__trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.hero-premium__trust-item i {
    color: #C41E28;
    font-size: 18px;
    flex-shrink: 0;
}

/* Hero Image Column */
.hero-premium__image {
    position: relative;
    z-index: 5;
}

.hero-premium__image-placeholder {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(196, 30, 40, 0.2);
    transform-style: preserve-3d;
}

.hero-premium__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    filter: brightness(0.9) contrast(1.1);
}

.hero-premium__image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(196, 30, 40, 0.3) 0%, 
        rgba(10, 14, 39, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.hero-premium__image-placeholder:hover .hero-premium__image-overlay {
    opacity: 1;
}

.hero-premium__image-overlay i {
    font-size: 80px;
    color: white;
    opacity: 0.8;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-premium__title {
        font-size: 58px;
    }
}

@media (max-width: 991px) {
    .hero-premium {
        padding: 140px 0 80px;
        min-height: 80vh;
    }
    
    .hero-premium__title {
        font-size: 48px;
        letter-spacing: -1.5px;
    }
    
    .hero-premium__subtitle {
        font-size: 17px;
        max-width: 100%;
    }
    
    /* Stack image on top on tablet/mobile */
    .hero-premium .col-lg-6:last-child {
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-premium {
        padding: 120px 0 60px;
    }
    
    .hero-premium__title {
        font-size: 40px;
        letter-spacing: -1px;
    }
    
    .hero-premium__subtitle {
        font-size: 16px;
    }
    
    .hero-premium__actions {
        flex-direction: column;
    }
    
    .btn-premium {
        width: 100%;
        justify-content: center;
    }
    
    .hero-premium__badge {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* ============================================ */
/* END OF PREMIUM ENTERPRISE HERO */
/* ============================================ */



/* Hide Statistics Section Completely */
.stats-saas,
.stats-modern,
.stat-saas,
.stat-modern {
    display: none !important;
}



/* Hide Statistics Section Completely */
.stats-saas,
.stats-modern,
.stat-saas,
.stat-modern {
    display: none !important;
}


/* ============================================ */
/* UNIVERSAL SERVICE ICON STYLING */
/* Perfect consistency across all service cards */
/* ============================================ */

/* Universal Icon Container */
.service-icon-container {
    /* Perfect Square */
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    
    /* Centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Visual Style */
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.10) 0%, rgba(196, 30, 40, 0.18) 100%) !important;
    border-radius: 22px !important;
    
    /* Shadow - Consistent depth */
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
    
    /* Spacing */
    margin-bottom: 24px !important;
    flex-shrink: 0 !important;
    
    /* Transition */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* All Icons Inside Container */
.service-icon-container i,
.service-icon-container svg {
    /* Consistent Size */
    font-size: 36px !important;
    width: 36px !important;
    height: 36px !important;
    
    /* Color */
    color: #C41E28 !important;
    
    /* Centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Shadow */
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.25)) !important;
    
    /* Remove any inherited margins/padding */
    margin: 0 !important;
    padding: 0 !important;
    
    /* Line height fix for font icons */
    line-height: 1 !important;
}

/* Hover State - Consistent across all cards */
.service-card-saas:hover .service-icon-container,
.service-card-modern:hover .service-icon-container {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%) !important;
    transform: scale(1.08) translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.35),
                inset 0 2px 6px rgba(255, 255, 255, 0.6) !important;
}

.service-card-saas:hover .service-icon-container i,
.service-card-modern:hover .service-icon-container i {
    color: white !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* Ensure no conflicting margins from card content */
.service-card-saas h3,
.service-card-modern h3,
.service-card-saas__title,
.service-card-modern__title {
    margin-top: 0 !important;
}

/* Fix for any Font Awesome specific alignment issues */
.service-icon-container .fas,
.service-icon-container .fab,
.service-icon-container .far {
    /* Center font awesome icons perfectly */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
}

/* Specific icon adjustments for perfect optical alignment */
.service-icon-container .fa-plane,
.service-icon-container .fa-ship,
.service-icon-container .fa-truck {
    /* Slightly larger for visual balance */
    font-size: 38px !important;
}

.service-icon-container .fa-heartbeat,
.service-icon-container .fa-bolt {
    /* Slightly smaller for visual balance */
    font-size: 34px !important;
}

/* Dark Mode Consistency */
[data-theme="dark"] .service-icon-container {
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.15) 0%, rgba(196, 30, 40, 0.25) 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.2) !important;
}

/* Remove any legacy icon styles that might conflict */
.service-card-saas__icon,
.service-card-modern__icon,
.value-card-modern__icon,
.mission-card-modern__icon,
.team-card-modern__icon {
    /* Override with universal styles */
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.10) 0%, rgba(196, 30, 40, 0.18) 100%) !important;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
    margin-bottom: 24px !important;
}

.service-card-saas__icon i,
.service-card-modern__icon i,
.value-card-modern__icon i,
.mission-card-modern__icon i,
.team-card-modern__icon i {
    font-size: 36px !important;
    color: #C41E28 !important;
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.25)) !important;
}

/* ============================================ */
/* END OF UNIVERSAL SERVICE ICON STYLING */
/* ============================================ */


/* ============================================ */
/* UNIVERSAL SERVICE ICON STYLING */
/* Perfect consistency across all service cards */
/* ============================================ */

/* Universal Icon Container */
.service-icon-container {
    /* Perfect Square */
    width: 76px !important;
    height: 76px !important;
    min-width: 76px !important;
    min-height: 76px !important;
    
    /* Centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Visual Style */
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.10) 0%, rgba(196, 30, 40, 0.18) 100%) !important;
    border-radius: 22px !important;
    
    /* Shadow - Consistent depth */
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
    
    /* Spacing */
    margin-bottom: 24px !important;
    flex-shrink: 0 !important;
    
    /* Transition */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* All Icons Inside Container */
.service-icon-container i,
.service-icon-container svg {
    /* Consistent Size */
    font-size: 36px !important;
    width: 36px !important;
    height: 36px !important;
    
    /* Color */
    color: #C41E28 !important;
    
    /* Centering */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Shadow */
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.25)) !important;
    
    /* Remove any inherited margins/padding */
    margin: 0 !important;
    padding: 0 !important;
    
    /* Line height fix for font icons */
    line-height: 1 !important;
}

/* Hover State - Consistent across all cards */
.service-card-saas:hover .service-icon-container,
.service-card-modern:hover .service-icon-container {
    background: linear-gradient(135deg, #C41E28 0%, #ff3d47 100%) !important;
    transform: scale(1.08) translateY(-4px) !important;
    box-shadow: 0 16px 40px rgba(196, 30, 40, 0.35),
                inset 0 2px 6px rgba(255, 255, 255, 0.6) !important;
}

.service-card-saas:hover .service-icon-container i,
.service-card-modern:hover .service-icon-container i {
    color: white !important;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3)) !important;
}

/* Ensure no conflicting margins from card content */
.service-card-saas h3,
.service-card-modern h3,
.service-card-saas__title,
.service-card-modern__title {
    margin-top: 0 !important;
}

/* Fix for any Font Awesome specific alignment issues */
.service-icon-container .fas,
.service-icon-container .fab,
.service-icon-container .far {
    /* Center font awesome icons perfectly */
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
}

/* Specific icon adjustments for perfect optical alignment */
.service-icon-container .fa-plane,
.service-icon-container .fa-ship,
.service-icon-container .fa-truck {
    /* Slightly larger for visual balance */
    font-size: 38px !important;
}

.service-icon-container .fa-heartbeat,
.service-icon-container .fa-bolt {
    /* Slightly smaller for visual balance */
    font-size: 34px !important;
}

/* Dark Mode Consistency */
[data-theme="dark"] .service-icon-container {
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.15) 0%, rgba(196, 30, 40, 0.25) 100%) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3),
                inset 0 1px 3px rgba(255, 255, 255, 0.2) !important;
}

/* Remove any legacy icon styles that might conflict */
.service-card-saas__icon,
.service-card-modern__icon,
.value-card-modern__icon,
.mission-card-modern__icon,
.team-card-modern__icon {
    /* Override with universal styles */
    width: 76px !important;
    height: 76px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, rgba(196, 30, 40, 0.10) 0%, rgba(196, 30, 40, 0.18) 100%) !important;
    box-shadow: 0 8px 24px rgba(196, 30, 40, 0.15),
                inset 0 1px 3px rgba(255, 255, 255, 0.4) !important;
    margin-bottom: 24px !important;
}

.service-card-saas__icon i,
.service-card-modern__icon i,
.value-card-modern__icon i,
.mission-card-modern__icon i,
.team-card-modern__icon i {
    font-size: 36px !important;
    color: #C41E28 !important;
    filter: drop-shadow(0 2px 4px rgba(196, 30, 40, 0.25)) !important;
}

/* ============================================ */
/* END OF UNIVERSAL SERVICE ICON STYLING */
/* ============================================ */



/* WhatsApp Call Badge in Floating Stack */
.floating-badge--whatsapp {
    cursor: pointer !important;
    text-decoration: none !important;
    color: inherit !important;
}

.floating-badge--whatsapp:hover {
    background: rgba(37, 211, 102, 0.08) !important;
    border-color: rgba(37, 211, 102, 0.3) !important;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25) !important;
}

.floating-badge__icon--whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%) !important;
}

.floating-badge__icon--whatsapp i {
    color: white !important;
    font-size: 22px !important;
}

.floating-badge--whatsapp span {
    color: #0a0a16 !important;
    font-weight: 600 !important;
}


/* Single WhatsApp Badge - Perfect Centering */
.floating-badges {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

.floating-badge {
    margin-bottom: 0 !important;
}


/* Three Floating Badges - Proper Spacing */
.floating-badges {
    gap: 16px !important;
}


/* Three Floating Badges - Proper Spacing */
.floating-badges {
    gap: 16px !important;
}


/* ============================================ */
/* CURSOR FIX - All Clickable Elements */
/* ============================================ */

/* All Links */
a,
a:hover,
a:focus {
    cursor: pointer !important;
}

/* All Buttons */
button,
button:hover,
.btn,
.btn-modern,
.btn-premium,
.btn-saas-white,
.modins-btn {
    cursor: pointer !important;
}

/* Navigation Links */
.main-menu__list a,
.topbar-one__menu a,
.mobile-nav__container a,
.footer-saas__links a,
.footer-saas__legal a {
    cursor: pointer !important;
}

/* Dropdown Items */
.dropdown a,
.submenu-inner a,
.main-menu__list li a {
    cursor: pointer !important;
}

/* Service Cards */
.service-card-saas,
.service-card-modern,
.service-card-saas a,
.service-card-modern a,
.service-card-saas__link,
.service-card-modern__link {
    cursor: pointer !important;
}

/* Floating Badges */
.floating-badge,
.floating-badge--whatsapp,
.floating-badge:hover {
    cursor: pointer !important;
}

/* WhatsApp Buttons */
.whatsapp-float,
.whatsapp-float:hover {
    cursor: pointer !important;
}

/* Theme Toggle */
.theme-toggle,
.theme-toggle:hover {
    cursor: pointer !important;
}

/* Cookie Banner Buttons */
.cookie-banner__btn,
#acceptCookies,
#rejectCookies {
    cursor: pointer !important;
}

/* Form Elements */
input[type='submit'],
input[type='button'],
select,
.form-control:not([type='text']):not([type='email']):not([type='tel']):not(textarea) {
    cursor: pointer !important;
}

/* Accordion */
.accordion-button,
.accordion-button:hover {
    cursor: pointer !important;
}

/* Modal Close */
.btn-close,
.modal button {
    cursor: pointer !important;
}

/* Override any text cursor on containers */
.hero-premium,
.hero-saas,
.services-premium-grid,
.footer-saas {
    cursor: default !important;
}

/* Text elements stay as text */
p, h1, h2, h3, h4, h5, h6, span:not(.floating-badge span) {
    cursor: default !important;
}

/* ============================================ */
/* END OF CURSOR FIX */
/* ============================================ */


/* ============================================ */
/* CURSOR FIX - All Clickable Elements */
/* ============================================ */

/* All Links */
a,
a:hover,
a:focus {
    cursor: pointer !important;
}

/* All Buttons */
button,
button:hover,
.btn,
.btn-modern,
.btn-premium,
.btn-saas-white,
.modins-btn {
    cursor: pointer !important;
}

/* Navigation Links */
.main-menu__list a,
.topbar-one__menu a,
.mobile-nav__container a,
.footer-saas__links a,
.footer-saas__legal a {
    cursor: pointer !important;
}

/* Dropdown Items */
.dropdown a,
.submenu-inner a,
.main-menu__list li a {
    cursor: pointer !important;
}

/* Service Cards */
.service-card-saas,
.service-card-modern,
.service-card-saas a,
.service-card-modern a,
.service-card-saas__link,
.service-card-modern__link {
    cursor: pointer !important;
}

/* Floating Badges */
.floating-badge,
.floating-badge--whatsapp,
.floating-badge:hover {
    cursor: pointer !important;
}

/* WhatsApp Buttons */
.whatsapp-float,
.whatsapp-float:hover {
    cursor: pointer !important;
}

/* Theme Toggle */
.theme-toggle,
.theme-toggle:hover {
    cursor: pointer !important;
}

/* Cookie Banner Buttons */
.cookie-banner__btn,
#acceptCookies,
#rejectCookies {
    cursor: pointer !important;
}

/* Form Elements */
input[type='submit'],
input[type='button'],
select,
.form-control:not([type='text']):not([type='email']):not([type='tel']):not(textarea) {
    cursor: pointer !important;
}

/* Accordion */
.accordion-button,
.accordion-button:hover {
    cursor: pointer !important;
}

/* Modal Close */
.btn-close,
.modal button {
    cursor: pointer !important;
}

/* Override any text cursor on containers */
.hero-premium,
.hero-saas,
.services-premium-grid,
.footer-saas {
    cursor: default !important;
}

/* Text elements stay as text */
p, h1, h2, h3, h4, h5, h6, span:not(.floating-badge span) {
    cursor: default !important;
}

/* ============================================ */
/* END OF CURSOR FIX */
/* ============================================ */


/* Fix About Feature Icons */
.about-saas__feature i {
    font-size: 40px !important;
    color: #C41E28 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* Fix About Feature Icons */
.about-saas__feature i {
    font-size: 40px !important;
    color: #C41E28 !important;
    flex-shrink: 0 !important;
    width: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}


/* WhatsApp Button - Managed by visual-fixes.css */
/* .whatsapp-float display is controlled in visual-fixes.css */

/* Hide Our Story Page Links */
a[href*="our-story.html"],
a[href*="our-story"] {
    display: none !important;
}

/* ============================================ */
/* FIX: Form inputs inside service cards */
/* ============================================ */
.service-card-saas form,
.service-card-saas input,
.service-card-saas textarea,
.service-card-saas select,
.service-card-saas button,
.service-card-saas label,
.service-card-saas .form-control,
.service-card-saas .form-control-modern,
.service-card-saas .form-select,
.service-card-saas .form-check-input,
.service-card-saas .form-check-label,
.service-card-saas .row,
.service-card-saas .col-md-6,
.service-card-saas .col-12 {
    position: relative;
    z-index: 10;
    pointer-events: auto !important;
}

.service-card-saas input:focus,
.service-card-saas textarea:focus,
.service-card-saas select:focus {
    z-index: 20;
}

/* Disable the overlay effect on cards containing forms */
.service-card-saas:has(form)::after {
    display: none !important;
}

/* Fallback for browsers that don't support :has() */
.service-card-saas form ~ * {
    position: relative;
    z-index: 5;
}

/* Ensure form controls are interactive */
.form-control-modern,
.form-control,
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
    cursor: text !important;
    pointer-events: auto !important;
}

select,
.form-select {
    cursor: pointer !important;
}

button[type="submit"],
.btn-modern {
    cursor: pointer !important;
    pointer-events: auto !important;
}
