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

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

.pt-0 {
    padding-top: 0px !important;
}

.pb-0 {
    padding-bottom: 0px !important;
}

.ptb-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
}

label.error {
    color: red;
    position: absolute;
}

.policy_container h3 {
    margin-top: 20px !important;
}

.policy_container h4 {
    margin-top: 20px !important;
}

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


/*  */


.container-2 {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    max-width: 1320px !important;
    margin: auto;
}

.sidebar {
    width: 100%;
    background: #163f4a;
    backdrop-filter: blur(10px);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow-y: auto;
}

.sidebar h2 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 0 20px;
    position: relative;
}

.sidebar h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #E8985E, #A9714B);
    border-radius: 2px;
}

.left-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    color: #b8c5d1;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.left-menu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.left-menu-item:hover::before {
    left: 100%;
}

.left-menu-item:hover {
    background: rgba(102, 126, 234, 0.1);
    color: #ffffff;
    transform: translateX(5px);
    border-left-color: #E8985E;
}

.left-menu-item.active {
    background: linear-gradient(90deg, #E8985E, #A9714B);
    color: #ffffff;
    border-left-color: #ffffff;
    transform: translateX(0);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.left-menu-item .arrow {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.left-menu-item:hover .arrow {
    transform: translateX(3px);
}

.main-content {
    flex: 1;
    padding: 0;
    overflow-y: auto;
}

.section {
    min-height: auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

.section h1 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #E8985E 0%, #A9714B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.section-text {
    max-width: 100%;
}

.section p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
}

.highlight-box {
    background: #163f4a;
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 10px;
    padding: 20px;
    margin: 20px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #E8985E, #A9714B);
}

.highlight-box h3 {
    color: #E8985E;
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: bolder;
}

.highlight-box p {
    margin-bottom: 0;
    font-size: 14px;
}

.section-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    max-width: 100%;
    width: 100%;
}

.section-image:hover {
    transform: translateY(-8px);
}

.section-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.section-image:hover .image-overlay {
    transform: translateY(0);
}

.features-list {
    list-style: none;
    margin: 15px 0;
}

.features-list li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    color: #b8c5d1;
    font-size: 14px;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

@media (min-width: 769px) {
    .container-2 {
        flex-direction: row;
    }

    .sidebar {
        width: 300px;
        position: sticky;
        top: 110px;
        overflow: hidden;
        height: 480px;
        padding: 30px 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: none;
    }

    .sidebar h2 {
        font-size: 22px;
        padding: 0 25px;
        margin-bottom: 25px;
    }

    .sidebar h2::after {
        left: 25px;
        width: 45px;
        height: 3px;
    }

    .left-menu-item {
        padding: 18px 25px;
        font-size: 15px;
        border-left: 4px solid transparent;
    }

    .left-menu-item .arrow {
        font-size: 17px;
    }

    .section {
        padding: 60px 40px;
        /* min-height: 80vh; */
    }

    .section h1 {
        font-size: 40px;
        text-align: left;
    }

    .section-content {
        display: grid;
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }

    .section-text {
        max-width: 550px;
    }

    .section p {
        font-size: 17px;
    }

    .section-image {
        max-width: 350px;
        width: 100%;
    }

    .section-image img {
        height: 300px;
    }

    .highlight-box {
        padding: 22px;
        border-radius: 11px;
    }

    .highlight-box h3 {
        font-size: 19px;
    }

    .highlight-box p {
        font-size: 15px;
    }

    .features-list li {
        font-size: 15px;
        padding-left: 22px;
    }

    .cta-button {
        padding: 14px 32px;
        font-size: 15px;
        margin-left: 0;
    }
}

@media (min-width: 1025px) {
    .sidebar {
        width: 350px;
        padding: 40px 0;
    }

    .sidebar h2 {
        font-size: 24px;
        padding: 0 30px;
        margin-bottom: 30px;
    }

    .sidebar h2::after {
        left: 30px;
        width: 50px;
    }

    .left-menu-item {
        padding: 20px 30px;
        font-size: 16px;
    }

    .left-menu-item .arrow {
        font-size: 18px;
    }

    .section {
        padding: 60px 60px;
    }

    .section h1 {
        font-size: 48px;
    }

    .section-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-text {
        max-width: 800px;
    }

    .section p {
        font-size: 18px;
    }

    .section-image {
        max-width: 400px;
    }

    .section-image img {
        height: 350px;
    }

    .highlight-box {
        padding: 25px;
        border-radius: 12px;
    }

    .highlight-box h3 {
        font-size: 20px;
    }

    .highlight-box p {
        font-size: 16px;
    }

    .features-list li {
        font-size: 16px;
        padding-left: 25px;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 16px;
    }
}

@media (max-width: 769px) {
    .page-wrapper {
        overflow: hidden !important;
    }
}

/* -------------------------------- */

.mr-215 {
    margin-right: 215px;
}

.ul-d-flex {
    display: flex;
    gap: 20px;
}

.why-choose-one__img img {
    border-radius: 40px;
}

.testimonial-two__single {
    height: 248px;
}

.sweet-alert.icon h2 {
    margin-bottom: 20px !important;
}

.policy_container h3 {
    padding-bottom: 20px;
}

/* .policy_container h4 {
    color: #ffd25d;
} */

.scroll-to-top__text-2 {
    display: none;
}

ul.main-menu__list .current a {
    color: #39ffff;
}



.sidebar-textwidget textarea,
input {
    position: relative;
    display: block;
    width: 100%;
    height: 50px;
    font-size: 15px;
    padding: 10px 20px;
    color: #848484;
    border: none;
    border-radius: 10px;
    outline: none;
    transition: all 500ms ease;
}

.form-inner h4 {
    margin-bottom: 20px;
}



.process-one__shape-1 img {
    width: 130px;
}

.logo a img {
    filter: brightness(0) invert(1);
}

.main-menu-two__logo a img {
    filter: brightness(0) invert(1);
    width: 180px;
}

.site-footer-two__logo a img {
    filter: brightness(0) invert(1);
    width: 180px;
}

.logo-box a img {
    filter: brightness(0) invert(1);
}

p {
    font-family: Roboto, Open sans;
}

.main-slider-two__title {
    font-family: Roboto, Open sans;
    font-weight: 200;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Roboto, Open sans;
}

body {
    font-family: Roboto, Open sans;
}

.d-flex-center {
    justify-content: center;
    text-align: center;
}

.d-flex-3 {
    display: flex;
    align-items: center;
}

.d-flex-4 {
    display: flex;
    justify-content: space-around;
    align-items: baseline;

}

.home-bg {
    background-image: url('../images/home/BG.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.banner-bg {
    background-image: url('../images/home/Home\ page\ BG.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.home-testimonial .item {
    background-image: url('../images/home/Card.png');
    background-size: cover;
    background-repeat: no-repeat;
}

.why-choose-three__icon {
    position: relative;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    height: 75px;
    width: 75px;
    border-radius: 50%;
    background: linear-gradient(270deg, #00b8fb 0%, #1a788e 100%) !important;
    top: 0px;
    z-index: 1;
    padding: 10px;
}

.why-choose-three__icon:before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 10px solid transparent;
    background: linear-gradient(90deg, #00b8fb, #5CB0E9) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    visibility: visible;
    opacity: .20;
    z-index: -1;
}

.d-flex-banner {
    display: flex;
    gap: 20px;
    padding-top: 30px;
}

.d-flex-6 {
    display: flex;
    align-items: center;
}

.f-size-52 {
    font-size: 52px !important;
    line-height: 60px;
}

.d-flex-4 {
    display: flex;
    align-items: center;
}
#contact-form .form-inner .form-group {
    position: relative;
    margin-bottom: 40px;
}
.form-group.message-btn{
    margin-top: 60px !important;
}

/* ---------------Custom media query----------------- */

@media (max-width: 500px) {
    .ul-d-flex {
        gap: 0;
        flex-direction: column;
    }

    .counter-two__content {
        gap: 20px;
        align-items: center;
        display: flex;
    }

    .team-two__carousel.owl-theme .owl-nav {
        position: relative;
        bottom: 0;
        left: 0;
    }

    .testimonial-two__single {
        height: 100%;
        width: 100%;
    }

    .testimonial-two__client-info {
        bottom: 13px;
        margin-left: -48px;
    }

    .testimonial-two__text {
        font-size: 14px;
        padding-right: 36px;
        line-height: 18px;
        margin-top: 0px;
    }

    .owl-carousel .owl-item img {
        max-width: 70%;
    }

    .mr-215 {
        margin-right: 0;
    }

    .section-content {
        text-align: start;
    }

    .pt-0-mob {
        padding-top: 0px !important;
    }

    .pb-0-mob {
        padding-bottom: 0px !important;
    }

    .split-line {
        display: inline !important;
    }

    .portfolio-two__content-box {
        opacity: 1;
    }

    .portfolio-two__title h3 {
        opacity: 0;
    }

    .portfolio-two__box li {
        flex: 0 0 100%;
    }

    .scroll-to-top__text {
        display: none;
    }

    .scroll-to-top__text-2 {
        display: block !important;
        transform: rotate(90deg);
    }

    .main-menu-two__wrapper-inner {
        justify-content: space-between;
    }

    .f-size-52 {
        font-size: 26px !important;
    }

    .thm-btn {
        padding: 18px;
    }

    .counter-two__single {
        flex-direction: column;
    }

    .process-one__shape-1 {
        display: none;
    }

    .home-testimonial .item {
        background-size: contain;
    }

    .why-choose-two__points li {
        flex-direction: column;
        align-items: center;
    }

    .why-choose-two__points li .content {
        text-align: center;
    }

    .about-two {
        padding: 130px 0 80px;
    }
}

/* ============================================= */
@media (min-width: 600px) and (max-width: 992px) {
    .contact-one__list li {
        width: 100% !important;
        flex-direction: column !important;
    }

    .contact-one__list {
        display: flex !important;
        align-items: baseline !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .highlight-box h3 {
        text-align: left;
    }

    .section-title__title {
        font-size: 36px;
    }

    .team-two__carousel.owl-theme .owl-nav {
        position: relative;
        bottom: 0px;
        top: 20px;
        left: 0px;
    }

    .process-two .section-title {
        margin-bottom: 50px;
    }

    .services-two__services-list-single {
        align-items: start;
    }

    .main-menu-two__wrapper-inner {
        justify-content: space-between;
    }

    .testimonial-two__single {
        height: 100%;
        width: 100%;
    }

    .testimonial-two__client-info {
        bottom: 12px;
        margin-left: -46px;
    }

    .owl-carousel .owl-item img {
        max-width: 70%;
    }

    .testimonial-two__text {
        font-size: 14px;
        padding-right: 36px;
        line-height: 18px;
        margin-top: 0px;
    }

    .home-testimonial .item {
        background-size: contain;
    }

    .process-one__shape-1 {
        left: 80px;
    }

    .services-two__hover-img {
        display: none;
    }

    .pb-0-mob {
        padding-bottom: 0px;
    }

}

/* ============================================= */

/* ============================================= */
@media (min-width: 993px) and (max-width: 1024px) {
    .cta-two__left {
        margin-top: 280px;
    }

    .pb-0-mob {
        padding-bottom: 0px;
    }

    .section-title__title {
        font-size: 36px;
    }

    .main-menu-two__wrapper-inner {
        justify-content: space-between;
    }

    .team-two__carousel.owl-theme .owl-nav {
        position: relative;
        bottom: 0px;
        left: 0px;
        top: 20px;
    }

    .counter-two__single {
        align-items: center;
        flex-direction: column;
    }

    .testimonial-two__single {
        height: 100%;
        width: 100%;
    }

    .testimonial-two__single {
        top: 50px;
    }

    .testimonial-two__client-info {
        top: 6px;
        margin-left: -40px;
    }

    .testimonial-two__text {
        font-size: 17px;
        line-height: 18px;
        margin-top: 0px;
        padding-right: 40px;
    }

    .home-testimonial .item {
        padding-bottom: 90px;
    }

    .home-testimonial .item {
        background-size: contain;
    }

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

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

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

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

    .form-group input,
    textarea {
        margin-bottom: 10px;
    }

    .process-one__shape-1 {
        bottom: 175px;
    }

    .services-two__hover-img {
        display: none;
    }

}

/* ============================================= */

@media (max-width: 1024px) {
    .main-menu-two__right {
        display: none;
    }
}


@media (min-width: 1024px) and (max-width: 20000px) {
    .col-width .col-xl-3 {
        width: 20%;
    }
}

/* ---------------Custom media query----------------- */