@import url('https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*, *:before, *:after {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
@keyframes mymove {
   0% {
        position: absolute;
        right: 7px;
    }
    50% {
        position: absolute;
        right: 3px;
    }
    100% {
        position: absolute;
        right: 7px;
    }
}
a, img {
	border: 0px;
	outline: 0px;
}
html {
	width: 100%;
}
body {
	height: 100%;
	width: 100%;
	margin: 0px;
	padding: 0px;
	overflow-x: hidden;
	font-family: "Inter", sans-serif;
  	font-weight: 400;
  	font-style: normal;
}
h1, h2, h3, h4, h5, h6{
    font-family: "Inter", sans-serif;
}
.main_fluid{
	width: 100%;
	display: block;
}
.main-wrapper{
	max-width: 1260px;
	position: relative;
	margin: auto;
    padding: 0px 15px;
}
.mobile-hamburger{
    display: none;
    cursor: pointer;
    font-size: 22px;
    @media (max-width:1024px){
        display: block;
    }
}
.mobilemenu {
    position: fixed;
    background: #212B5C;
    width: 100%;
    height: 100vh;
    z-index: 99999999;
    right: 0;
    top: 0px;
    display: none;
}
.mobilemenu .menuheader {
    color: #fff;
    text-align: right;
    font-size: 24px;
    font-weight: 400;
    padding: 25px 25px;
}
.mobilemenu ul {
    padding: 0;
}
.mobilemenu ul li a {
    color: #fff;
    font-size: 18px;
    text-align: left;
    padding: 20px 20px;
    display: block;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid #434c79;
}
.mobilemenu ul li.active a {
    color: #FFAF2E;
}
.header {
    position: sticky;
    top: 0px;
    z-index: 11;
    background: #fff;
    padding: 15px 0px;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
    .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (max-width:1024px){
           gap: 20px;
           justify-content: flex-start;
        }
        @media (max-width:767px){
           gap: 10px;
        }
        .logo{
            @media (max-width:991px){
                margin-right: auto;
            }
        }
        .logo img{
            @media (max-width:767px){
                width: 128px;
            }
        }
        .menu {
            @media (max-width:1024px){
                display: none;
            }
            ul {
                list-style-type: none;
                display: flex;
                grid-gap: 25px;
                @media (min-width:992px) and (max-width:1120px){
                    grid-gap: 13px;
                }
                @media (min-width:768px) and (max-width:991px){
                    grid-gap: 18px;
                }
                li {
                    a {
                        text-decoration: none;
                        color: #707070;
                        font-size: 16px;
                        font-weight: 400;
                        transition: all 0.3s;
                        @media (min-width:992px) and (max-width:1120px){
                            font-size: 14px;
                        }
                        &:hover {
                            color: #EA4C99;
                            transition: all 0.3s;
                        }
                    }
                }
                li.active a{
                    color: #EA4C99;
                }
            }
        }
        .book-appointment{
            display: flex;
            gap: 20px;
            @media (max-width:1024px){
                margin-left: auto;
                 gap: 10px;
            }
            .language{
                display: flex;
                align-items: center;
                gap: 5px;
                @media (max-width:1024px){
                    margin-left: auto;
                }
                a{
                    color: #707070;
                    text-decoration: none;
                    font-size: 16px;
                    &:hover {
                        color: #EA4C99;
                        transition: all 0.3s;
                    }
                }
            }
        }
        .book-appointment a.appointmentbtn {
            background: #00264B;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            padding: 15px 30px 15px 30px;
            color: #fff;
            transition: all 0.3s;
            position:relative;
            @media (max-width:767px){
                padding: 15px 10px 15px 10px;
                font-size: 14px;
            }
            &:hover {
                background: #EA4C99;
                color: #fff;
                transition: all 0.3s;
            }
        }
    }
}
.header.fixed-header{
    position: fixed;
    top: 0px;
    box-shadow: 0px -1px 14px 2px rgba(0, 0, 0, 0.08);
}
.hero-banner {
    background: url("../images/banner.png") no-repeat center top;
    background-size: cover !important;
    padding-bottom: 15px;
    .banner-content {
        max-width: 900px;
        padding-top: 100px;
        @media (max-width:767px){
            padding-top: 40px;
        }
        h5 {
            color: #fff;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 5px;
            font-weight: 400;
            margin-bottom: 30px;
            @media (max-width:767px){
                font-size: 14px;
                letter-spacing: 0px;
                margin-bottom: 20px;
            }
        }
        h1 {
            color: #fff;
            font-size: 50px;
            font-weight: 700;
            max-width: 720px;
            margin-bottom: 40px;
            @media (max-width:767px){
                font-size: 34px;
            }
        }
        p {
            color: #fff;
            font-size: 16px;
            font-weight: 400;
            line-height: 26px;
        }
        ul {
            margin-top: 30px;
            padding-left: 20px;
            li {
                color: #fff;
                font-size: 16px;
                font-weight: 400;
                margin-bottom: 16px;
                @media (max-width:767px){
                    font-size: 14px;
                    margin-bottom: 12px;
                    line-height: 26px;
                }
            }
        }
    }
    .bannerbottom {
        max-width: 900px;
        background: #fff;
        border-radius: 30px;
        margin: 50px 0;
        display: flex;
        align-items: center;
        background: linear-gradient(to bottom, #ffffff 0%,#dfdfdf 100%);
        @media (max-width:767px){
            flex-direction: column;
            margin: 20px 0;
        }
        .leftsection {
            border-right: 1px solid #8E8E8E;
            padding: 30px;
            @media (max-width:767px){
                border-right: 0px;
                 padding: 15px;
            }
            h2 {
                color: #003CA4;
                font-size: 32px;
                margin-bottom: 15px;
            }
            p {
                color: #545454;
                font-size: 18px;
                max-width: 292px;
                font-weight: 700;
                line-height: 28px;
            }
        }
    }
    .rightsection {
        padding: 30px;
        @media (max-width:767px){
            padding: 15px 20px 30px;
        }
        ul {
            list-style-type: none;
            margin-bottom: 30px;
            li {
                color: #545454;
                font-size: 20px;
                font-weight: 400;
                margin-bottom: 15px;
                background: url("../images/mail.svg") no-repeat;
                padding-left: 35px;
                @media (max-width:375px){
                   font-size: 18px;
                }
            }
        }
        .buttons {
            display: flex;
            gap: 20px;
            @media (max-width:375px){
               gap: 10px;
            }
            a {
                background: #00264B;
                font-size: 14px;
                border: 1px solid #00264B;
                font-weight: 700;
                text-decoration: none;
                padding: 15px;
                color: #fff;
                transition: all 0.3s;
                position: relative;
                &:hover {
                    background: #EA4C99;
                    border: 1px solid #EA4C99;
                    color: #fff;
                    transition: all 0.3s;
                }
                &:first-child {
                    background: transparent;
                    color: #00264B;
                    &:hover {
                        background: #00264B;
                        border: 1px solid #00264B;
                        color: #fff;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}
a.arrowbtn{
    background: #FFAF2E;
    color: #212B5C;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 35px 15px 15px;
    color: #212B5C;
    transition: all 0.3s;
    position: relative;
    margin-top: 20px;
    display: table;
    @media (max-width:767px){
        font-size: 14px;
    }
    &:after{
        transition: all .5s;
        background: url(../images/btn-arrow.svg) no-repeat;
        content: '';
        width: 20px;
        height: 20px;
        position: absolute;
        top: 18px;
        bottom: 0;
        right: 8px;
    }
    &:hover {
        background: #212B5C;
        color: #fff;
        transition: all 0.3s;
        &:after{
            filter: brightness(0) invert(1);
            animation: mymove 600ms ease;
            animation-iteration-count: infinite;
        }
    }
    &:hover {
        background: #212B5C;
        color: #fff;
        transition: all 0.3s;
    }
}
.howwestarted {
    padding: 100px 0;
    @media (max-width:767px){
       padding: 45px 0;
    }
    .inner {
        position: relative;
        img{
            @media (min-width:768px) and (max-width:1024px){
                width: 100%;
            }
            @media (max-width:1024px){
                display: none;
            }
        }
        .content {
            max-width: 733px;
            padding: 30px;
            position: absolute;
            top: 9%;
            right: 0;
            background: #F8F8F8;
            @media (max-width:1024px){
                position: relative;
                top: 0%;
                padding: 20px;
            }
            h5 {
                color: #232536;
                text-transform: uppercase;
                font-size: 18px;
                margin-bottom: 30px;
                letter-spacing: 5px;
            }
            ul {
                list-style-type: none;
                li {
                    border-bottom: 1px solid #8E8E8E;
                    padding-bottom: 40px;
                    margin-bottom: 40px;
                    &:last-child {
                        margin-bottom: 0;
                        padding-bottom: 0;
                        border: 0;
                    }
                    h3 {
                        color: #003CA4;
                        line-height: 1.5;
                    }
                    p {
                        color: #545454;
                        font-size: 16px;
                        line-height: 28px;
                        margin-top: 20px;
                    }
                }
            }
        }
    }
}
.heading-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    @media (max-width:767px){
        gap: 15px;
        flex-direction: column;
        align-items: flex-start;
    }
    .left-heading {
        h3 {
            color: #232536;
            text-transform: uppercase;
            font-size: 18px;
            margin-bottom: 15px;
        }
        h1 {
            color: #003CA4;
            font-size: 47px;
            margin-bottom: 15px;
            @media (max-width:1024px){
                font-size: 38px;
            }
            @media (max-width:767px){
                font-size: 28px;
                margin-bottom: 0px;
            }
        }
    }
    .rightcontent {
        display: flex;
        justify-content: flex-end;
        p {
            max-width: 700px;
            color: #545454;
            font-size: 20px;
            font-weight: 400;
            line-height: 36px;
            a{
                color: #003CA4;
                &:hover{
                    text-decoration: none;
                }
            }
            @media (max-width:767px){
                font-size: 16px;
                line-height: 26px;
            }
        }
    }
}
.whychooseus{
    margin-bottom: 100px;
    @media (max-width:767px){
       margin-bottom:45px;
    }
    .whyitems {
        display: grid;
        margin-top: 40px;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        @media (max-width:991px){
            grid-template-columns: auto;
        }
        .item {
            background: #EBEBEB;
            border-radius: 20px;
            padding: 30px;
            flex: 1;
            &:nth-child(2){
                background: #E8EBF3;
            }
            &:nth-child(3){
                background: #E6ECFF;
            }
            &:nth-child(4){
                background: #E1F1FF;
            }
            &:nth-child(5){
                background: #9dcdf7;
                grid-column: span 2;
                @media (max-width:767px){
                    grid-column: auto;
                }
            }
            .icon {
                margin-bottom: 20px;
            }
            h3 {
                margin-bottom: 20px;
                font-size: 24px;
                font-weight: 500;
                line-height: 36px;
            }
            p{
                color: #545454;
                font-size: 16px;
                font-weight: 400;
                margin-bottom: 20px;
                line-height: 28px;
                position: relative;
                padding-left: 20px;
            }
            ul {
                list-style-type: none;
                li {
                    color: #545454;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 20px;
                    line-height: 28px;
                    position: relative;
                    padding-left: 20px;
                    @media (max-width:767px){
                        margin-bottom:15px;
                    }
                    &:last-child {
                        margin-bottom: 0;
                    }
                    &:after {
                        position: absolute;
                        left: 0;
                        top: -10px;
                        content: ".";
                        font-size: 40px;
                        color: #00264B;
                    }
                    a {
                        text-decoration: underline;
                        color: #545454;
                        &:hover{
                            color: #EA4C99;
                        }
                    }
                    b {
                        color: #003CA4;
                    }
                }
            }
        }
    }
}
.ourgrat-section{
    margin-bottom: 100px;
    @media (max-width:767px){
       margin-bottom:45px;
    }
    .inner{
        background-size: contain;
        margin-top: 40px;
        background: none !important;
    }
    .items {
        display: flex;
        gap: 20px;
        position: relative;
        @media (max-width:767px){
            gap: 15px;
            flex-direction: column;
        }
        .item {
            background: #E8EBF3;
            border-radius: 20px;
            padding: 30px;
            flex: 1;
            @media (max-width:1024px){
                padding: 20px;
            }
            &:nth-child(2){
                background: #E1F1FF;
            }
            .icon {
                margin-bottom: 20px;
            }
            h3 {
                margin-bottom: 20px;
                font-size: 24px;
                font-weight: 500;
                line-height: 36px;
            }
            h5{
                margin-bottom: 10px;
                font-size: 16px;
                font-weight: 600;
                line-height: 36px;
                color: #003CA4;
            }
            ul {
                list-style-type: none;
                li {
                    color: #545454;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 20px;
                    line-height: 28px;
                    position: relative;
                    padding-left: 20px;
                    &:last-child {
                        margin-bottom: 0;
                    }
                    &:after {
                        position: absolute;
                        left: 0;
                        top: -10px;
                        content: ".";
                        font-size: 40px;
                        color: #00264B;
                    }
                    a {
                        text-decoration: underline;
                        color: #545454;
                        &:hover{
                            color: #EA4C99;
                        }
                    }
                    b {
                        color: #003CA4;
                    }
                }
            }
        }
    }
}

.asfeature-section{
    p {
        max-width: 700px;
        color: #545454;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        max-width: unset;
        font-style: italic;
        margin-top: 10px;
        position: relative;
        padding-left: 20px;
        @media (max-width:767px){
            margin-top: 20px;
        }
        &::before{
            position: absolute;
            left: 0;
            top: -10px;
            content: "";
            width: 94px;
            height: 77px;
            background: url("../images/quote.png") no-repeat;
            z-index: -1;
        }
    }
    .logos{
        display: flex;
        gap:20px;
        align-items: center;
        justify-content: space-between;
        margin-top: 40px;
        @media (max-width:767px){
            gap:10px;
        }
        .item{
            padding: 20px;
            @media (max-width:767px){
               padding: 0px;
            }
            img{
                width: 100%;
            }
        }
    }
}
.getstarted-main {
    position: relative;
    margin-top: 80px;
    @media (max-width:767px){
       margin-top:45px;
    }
    &:before {
        width: 100%;
        height: 50%;
        background: #F8F8F8;
        position: absolute;
        bottom: 0;
        content: '';
    }
    .getstarted {
        max-width: 965px;
        border-radius: 28px;
        padding: 40px;
        background: url("../images/getstarted-bg.png") no-repeat center top;
        background-size: cover;
        margin: auto;
        @media (max-width:767px){
            padding: 30px 20px;
        }
        h2 {
            color: #fff;
            font-size: 47px;
            font-weight: 700;
            max-width: 720px;
            margin-bottom: 30px;
            @media (max-width:767px){
                font-size: 28px;
            }
        }
        p {
            color: #fff;
            font-size: 24px;
            font-weight: 400;
            max-width: 603px;
            line-height: 36px;
            @media (max-width:767px){
                font-size: 16px;
                line-height: 26px;
            }
        }
        .buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            a {
                background: #00264B;
                font-size: 16px;
                border: 1px solid #00264B;
                font-weight: 700;
                text-decoration: none;
                padding: 15px 30px;
                color: #fff;
                transition: all 0.3s;
                position: relative;
                @media (max-width:767px){
                   padding: 15px 15px;
                   font-size: 14px;
                }
                &:hover {
                    background: #EA4C99;
                    border: 1px solid #EA4C99;
                    color: #fff;
                    transition: all 0.3s;
                }
                &:first-child {
                    background: transparent;
                    color: #fff;
                    border: 1px solid #fff;
                    &:hover {
                        background: #00264B;
                        border: 1px solid #00264B;
                        color: #fff;
                        transition: all 0.3s;
                    }
                }
            }
        }
    }
}

.business-slider {
    background: #F8F8F8;
    padding: 120px 0px 50px;
    @media (max-width:767px){
        padding: 45px 0px 45px;
    }
    .heading-content {
        margin-bottom: 40px;
    }
    .inner{
        max-width: 1260px;
        position: relative;
        padding-right: 100px;
        @media (max-width:767px){
            padding-right: 0px;
        }
        .owl-carousel {
            .owl-nav {
                position: absolute;
                right: -30px;
                top: 0;
                height: 100%;
                button {
                    border: 3px solid #0124AC;
                    width: 43px;
                    height: 65px;
                    border-radius: 100px;
                    position: absolute;
                    left: 0;
                    span {
                        width: 8px;
                        height: 22px;
                        background: #FA8444;
                        border-radius: 100px;
                        position: absolute;
                        top: 15%;
                        left: 40%;
                        margin: 0;
                        overflow: hidden;
                        text-indent: -10000px;
                    }
                }
                button.owl-next {
                    bottom: 25px !important;
                    bottom: 0;
                    span {
                        top: 27px;
                    }
                }
            }
        }
        .testimonials-item {
            background-color: #E8EAF3 !important;
            border-radius: 20px;
            padding: 75px 50px;
            background-image: url("../images/shape1.png");
            background-repeat: no-repeat;
            background-position-x: right;
            background-position-y: bottom;
            width: 100%;
            @media (max-width:767px){
                padding: 30px;
            }
            p {
                color: #5A5A5A;
                font-size: 20px;
                font-style: italic;
                max-width: 750px;
                min-height: 200px;
                line-height: 32px;
                @media (max-width:767px){
                   color: #000;
                }
            }
            .top {
                display: flex;
                gap: 20px;
                align-items: center;
                .image {
                    width: 75px;
                    height: 75px;
                    border-radius: 100px;
                    overflow: hidden;
                }
                .info {
                    h4 {
                        margin-bottom: 5px;
                        font-size: 18px;
                        color: #333333;
                    }
                    span {
                        margin-bottom: 15px;
                        display: block;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}

.businessprices-section {
    padding: 100px 0;
    @media (max-width:767px){
        padding: 45px 0px 45px;
    }
    .prices-items { scrollbar-width: none;}
    .prices-items::-webkit-scrollbar {
        display: none;
    }
    .prices-items {
        display: flex;
        gap: 20px;
        margin-top: 40px;
        /*grid-template-columns: repeat(auto-fit, minmax(412px, 1fr));*/
        overflow-x: auto;
        cursor: grab;
        .item {
            background: #EBEBEB;
            border-radius: 20px;
            padding: 30px;
            flex: 1;
            min-width: 360px;
            @media (max-width:767px){
                padding: 20px;
                min-width: 300px;
            }
            p{
                margin-bottom: 10px;
                a{
                    color: #545454 !important;
                }
            }
            &:nth-child(even) {
                background: #003CA4;
                h3,
                .price,
                ul li {
                    color: #fff;
                }
                ul li:after {
                    border: solid #fff;
                    border-width: 0 3px 3px 0;
                }
                a.btn {
                    background: transparent;
                    color: #fff;
                    border: 1px solid #fff;
                    &:hover {
                        background: #EA4C99;
                        color: #fff;
                    }
                }
                p{
                    color: #fff;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 10px;
                    line-height: 28px;
                    position: relative;
                    a{
                        color: #fff !important;
                    }
                }
            }
            h3 {
                margin-bottom: 20px;
                font-size: 24px;
                font-weight: 700;
                line-height: 36px;
                text-align: center;
                color: #003CA4;
                @media (max-width:767px){
                    font-size: 18px;
                    line-height: 26px;
                }
            }
            .price {
                color: #414A57;
                margin-bottom: 40px;
                font-size: 34px;
                font-weight: 700;
                line-height: 36px;
                text-align: center;
                @media (max-width:767px){
                    font-size: 28px;
                    margin-bottom: 20px;
                }
            }
            ul {
                list-style-type: none;
                margin-bottom: 35px;
                li {
                    color: #545454;
                    font-size: 16px;
                    font-weight: 400;
                    margin-bottom: 15px;
                    line-height: 28px;
                    position: relative;
                    padding-left: 25px;
                    @media (max-width:767px){
                       font-size: 14px;
                        line-height: 24px;
                    }
                    &:last-child {
                        margin-bottom: 0;
                    }
                    &:after {
                        position: absolute;
                        left: 0;
                        top: 5px;
                        content: '';
                        width: 9px;
                        height: 17px;
                        border: solid #1363DF;
                        border-width: 0 3px 3px 0;
                        -webkit-transform: rotate(45deg);
                        -ms-transform: rotate(45deg);
                        transform: rotate(45deg);
                    }
                    a {
                        text-decoration: underline;
                        color: #545454;
                        &:hover {
                            color: #EA4C99;
                        }
                    }
                    b {
                        color: #003CA4;
                    }
                }
            }
            a.btn {
                background: #00264B;
                font-size: 16px;
                font-weight: 700;
                text-decoration: none;
                padding: 15px 30px;
                color: #fff;
                transition: all 0.3s;
                position: relative;
                margin: auto;
                display: table;
                border: 1px solid #00264B;
                margin-top: 40px;
                &:hover {
                    background: #EA4C99;
                    border: 1px solid #EA4C99;
                    color: #fff;
                    transition: all 0.3s;
                }
            }
        }
    }
}

.vitualodffice-section{
    margin-bottom: 100px;
    @media (max-width:767px){
       margin-bottom: 45px;
    }
    .services-items {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        margin: 50px 0 0px;
        @media (max-width:767px){
            grid-template-columns: auto;
        }
        .item {
            background: #F4F0F8;
            border: 1px solid #e2e2e2;
            margin: -1px;
            padding: 40px;
            transition: all 0.3s;
            position: relative;
            @media (max-width:1024px){
                padding: 20px;
            }
            .icon {
                width: 70px;
                height: 70px;
                border-radius: 100px;
                background: #D4E3ED;
                text-align: center;
                display: flex;
                align-self: center;
                justify-content: center;
                margin-bottom: 30px;
                transition: all 0.3s;
                img {
                    width: 32px;
                    object-fit: contain;
                }
            }
            h2 {
                color: #2C2C2C;
                font-size: 20px;
                margin-bottom: 15px;
                transition: all 0.3s;
                line-height: 32px;
            }
            p {
                color: #6D6E76;
                font-size: 16px;
                line-height: 24px;
                transition: all 0.3s;
            }
        }
    }
}

.faq-main{
    margin-bottom: 100px;
    @media (max-width:767px){
       margin-bottom: 45px;
    }
    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        align-items: start;
        margin-top: 40px;
        @media (max-width:767px){
            grid-template-columns: auto;
        }
    }
    .faq-item {
        border: 1px solid #F1F1F6;
        border-radius: 8px;
        padding: 25px;
        background: #fdfdfd;
        cursor: pointer;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    }
    .faq-question {
        color: #00264B;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 500;
    }
    .arrow {
        font-size: 14px;
        transition: transform 0.3s ease;
    }
    .faq-answer {
        display: none;
        margin-top: 10px;
        color: #333;
        font-size: 16px;
        line-height: 26px;
    }
    .faq-item.active .faq-answer {
        display: block;
    }
    .faq-item.active .arrow {
        transform: rotate(180deg); /* flip arrow */
    }
}
.footer {
    background: #00264B;
    color: #fff;
    padding: 40px 20px 20px;
}
.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1260px;
    margin: auto;
    gap: 40px;
    @media (max-width:767px){
        gap: 30px;
        flex-direction: column;
    }
}
.footer-logo{
    text-align: center;
    @media (max-width:767px){
        display: none;
    }
}
.footer-logo img {
    width: 120px;
    margin-bottom: 20px;
}
.social-icons{
    gap: 20px;
    display: flex;
}
.social-icons a {
    color:#fff;
    font-size: 24px;
}
.social-icons a:hover {
    color: #ffd700;
}
.footer-links .inner {
    display: flex;
    gap: 60px;
    @media (max-width:767px){
        gap: 0px;
        flex-direction: column;
    }
}
.footer-links h4 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 24px;
}
.footer-links ul {
    list-style: none;
    padding: 0;
}
.footer-links li {
    margin: 8px 0;
    min-width: 175px;
}
.footer-links a {
    color:#fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
    line-height: 24px;
}
.footer-links a:hover {
    text-decoration: underline;
}
.footer-contact h4 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}
.footer-contact p {
    margin: 8px 0 20px;
    font-size: 16px;
    line-height: 24px;
    display: flex;
    gap: 14px;
    align-items: center;
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    color: #fff;
    line-height: 24px;
}
.hero-banner.innerbanner{
    padding-bottom: 0px;
    position: relative;
    &:after{
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        content: '';
        background: rgba(0, 0, 0, 0.6);
        z-index: 1;
        height: 100%;
    }
}
.innerbanner-content{
    padding: 80px 0px;
    position: relative;
    z-index: 2;
    h1{
        color: #fff;
        font-size: 48px;
        font-weight: 700;
        text-align: center;
        @media (max-width:767px){
            font-size:28px;
        }
    }
    ul{
        list-style-type: none;
        display: flex;
        gap:30px;
        justify-content: center;
        margin-top: 20px;
        li{
            color: #fff;
            a{
                color: #fff;
                font-size: 14px;
                text-decoration: none;
                &:hover{
                    text-decoration: underline;
                }
            }
        }
    }
}
.mainfeatures-section {
    padding: 100px 0;
    @media (max-width:767px){
        padding: 45px 0;
    }
    .features-section {
        padding-top: 40px;
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            @media (max-width:767px){
                grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
            }
        }
        .feature-card {
            background: #fff;
            border-radius: 12px;
            padding: 25px;
            text-align: left;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }
        .feature-icon {
            font-size: 28px;
            color: #1abc9c;
            margin-bottom: 15px;
            width:50px;
            height:50px;
            display:flex;
            align-items:center;
            justify-content:center;
            padding: 5px;
            background: #00264B;
            border-radius: 100px;
            img{
                width: 100%;
            }
        }
        .feature-title {
            font-size: 18px;
            font-weight: bold;
            color: #2C2C2C;
            margin-bottom: 12px;
        }
        .feature-desc {
            color: #666;
            font-size: 16px;
        }
    }
}

.mainnotice-section {
    .notice-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
    }
    .notice-card {
        background: #fff8c5;
        border-left: 6px solid #f39c12;
        border-radius: 12px;
        padding: 25px 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .notice-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .notice-card::before {
        content: "📌";
        position: absolute;
        top: -15px;
        left: 20px;
        font-size: 22px;
    }
    .notice-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
        color: #2C2C2C;
        margin-bottom: 12px;
    }
    .notice-text {
        font-size: 16px;
        color: #333;
        line-height: 1.6;
    }
    .notice-text strong {
        color: #000;
    }
    .notice-text a {
        color: #2c6ed5;
        font-weight: 500;
        text-decoration: none;
    }
    .notice-text a:hover {
        text-decoration: underline;
    }
}

.mainimg-content {
    padding: 100px 0px 40px;
     @media (max-width:767px){
        padding: 45px 0;
    }
    .inner {
        display: flex;
        margin-top: 80px;
        gap: 30px;
        @media (max-width:767px){
            flex-direction: column;
            margin-top: 40px;
        }
        .content {
            flex: 1;
            p {
                color: #545454;
                font-size: 16px;
                font-weight: 400;
                line-height: 28px;
                margin-bottom: 20px;
            }
             h3{
                margin-bottom: 20px;
            }
            ul{
                padding-left: 20px;
                margin-bottom: 30px;
                li{
                    margin-bottom: 15px;
                    line-height: 24px;
                    a{
                        color: #003CA4;
                        &:hover{
                            text-decoration: none;
                        }
                    }
                }
            }
        }
        .img {
            flex: 1;
            img {
                width: 100%;
            }
        }
    }
}
.faq-innerpagemain{
    .faq-container{
        grid-template-columns: auto;
    }
}
.contactus-main{
    padding-top: 100px;
    @media (max-width:767px){
        padding-top: 45px;
    }
}
.contact-address {
    margin: 70px 0;
    display: grid;
    grid-gap: 30px;
    grid-template-columns: repeat(3, 1fr);
    @media (min-width: 768px) and (max-width: 991px) {
        grid-template-columns: repeat(2, 1fr);
        margin: 30px 0;
    }
    @media (max-width: 767px) {
        grid-template-columns: auto;
    }
    .address {
        width: 100%;
        margin-bottom: 30px;
        box-shadow:0 0 7px 1px rgba(59, 90, 136, 0.1);
        .addressinfo {
            flex: 1;
            padding:25px;
            h4 {
                font-size: 24px;
                color: #232536;
                font-weight: 500;
                margin-bottom: 30px;
            }
            ul {
                list-style-type: none;
                li {
                    margin-bottom: 15px;
                    color: #000000;
                    font-size: 16px;
                    line-height: 26px;
                    max-width: 318px;
                    i {
                        margin-right: 12px;
                        color: #00264B;
                        font-size: 20px;
                    }
                }
            }
        }
        .map {
            flex: 1;
        }
    }
}
.whyus-main {
    padding: 100px 0;
    @media (max-width:767px){
        padding: 45px 0;
    }
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }
    .feature-box {
        background: #fff;
        padding: 35px 25px;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
        text-align: left;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .feature-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    }
    .feature-icon {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        background: #00264B;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 26px;
        margin-bottom: 20px;
        padding: 5px;
        img{
            width: 100%;
        }
    }
    .feature-title {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        color: #2C2C2C;
    }
    .feature-text {
        font-size: 0.95rem;
        line-height: 1.6;
        color: #666;
    }
    .feature-text a {
        color: #000;
        font-weight: 600;
        text-decoration: none;
    }
    .feature-text a:hover {
        text-decoration: underline;
    }
}
.helpfulbits-main{
    padding: 100px 0px;
    @media (max-width:767px){
        padding: 45px 0;
    }
    .article-list {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 40px;
    }
    .article-card {
        background: #fff;
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .article-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .article-info {
        text-align: left;
    }
    .article-info a {
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        color: #000;
        transition: color 0.2s ease;
        margin-bottom: 12px;
    }
    .article-info a:hover {
        color: #1e40af;
    }
    .article-date {
        font-size: 0.9rem;
        color: #9ca3af;
        margin-top: 6px;
        font-style: italic;
    }
    .disclaimer {
        margin-top: 40px;
        font-size: 0.85rem;
        color: #6b7280;
        text-align: center;
        line-height: 1.6;
    }
}

.subscribe-form{
    margin-top: 100px;
    @media (max-width:767px){
        margin-top: 45px;
    }
    .progressbar {
        margin: 50px auto 50px auto;
        counter-reset: step;
        width: auto;
        display: flex;
        justify-content: center;
    }
    .progressbar li {
        list-style-type: none;
        width: 100%;
        float: left;
        font-size: 16px;
        position: relative;
        text-align: center;
        text-transform: uppercase;
        color: #000;
        font-weight: 700;
    }
    .progressbar li:before {
        width: 20px;
        height: 20px;
        content: '';
        line-height: 30px;
        border: 2px solid #7d7d7d;
        background-color: #7d7d7d;
        display: block;
        text-align: center;
        margin: 0 auto 10px auto;
        border-radius: 50%;
        transition: all .8s;
    }
    .progressbar li:after {
        width: 100%;
        height: 2px;
        content: '';
        position: absolute;
        background-color: #7d7d7d;
        top: 7px;
        left: -50%;
        z-index: -1;
        transition: all .8s;
    }
    .progressbar li:first-child:after {
        content: none;
    }
    .progressbar li.active:before {
        border-color: #55b776;
        background-color: #55b776;
        transition: all .8s;
    }
    .progressbar li p {
        color: #707070;
        font-size: 12px;
        margin-top: 10px;
        text-transform: capitalize;
        font-weight: 400;
    }
    .progressbar li.active:after {
        background-color: #55b776;
        transition: all .8s;
    }
    form {
        max-width: 975px;
        margin: 75px auto 0;
    }
}

form {
    .form-heading {
        margin-bottom: 25px;
        h2 {
            font-size: 28px;
            color: #003CA4;
            margin-bottom: 15px;
            @media (max-width:767px){
                font-size: 24px;
            }
        }
        p {
            font-size: 16px;
            a {
                color: #003CA4;
            }
        }
    }
    .form-section {
        padding: 30px;
        background: #F8F8F8;
        margin-bottom: 50px;
         @media (max-width:767px){
            padding: 20px;
        }
        .form-group {
            margin-bottom: 25px;
            display: flex;
            width: 100%;
            gap: 20px;
            @media (max-width:767px){
                flex-direction: column;
            }
            &:last-child {
                margin-bottom: 0;
            }
            .form-field {
                width: 100%;
                label {
                    font-size: 16px;
                    display: block;
                    margin-bottom: 10px;
                    span {
                        color: #ff0000;
                    }
                }
                input,
                select {
                    width: 100%;
                    border: 1px solid #ccc;
                    height: 50px;
                    padding: 15px;
                    border-radius: 5px;
                    font-size: 16px;
                    color: #000;
                }
                p {
                    font-size: 14px;
                    margin-top: 5px;
                    color: #707070;
                    line-height: 24px;
                }
            }
        }
    }
    .notice-section {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
    }
    .notice-card {
        background: #fff8c5;
        border-left: 6px solid #f39c12;
        border-radius: 12px;
        padding: 25px 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .notice-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .notice-card::before {
        content: "📌";
        position: absolute;
        top: -15px;
        left: 20px;
        font-size: 22px;
    }
    .notice-title {
        font-size: 24px;
        font-weight: 700;
        line-height: 34px;
        color: #2C2C2C;
        margin-bottom: 12px;
    }
    .notice-text {
        font-size: 14px;
        color: #333;
        line-height: 1.6;
    }
    .notice-text strong {
        color: #000;
    }
    .notice-text a {
        color: #2c6ed5;
        font-weight: 500;
        text-decoration: none;
    }
    .notice-text a:hover {
        text-decoration: underline;
    }
    .form-contentsection {
        p {
            font-size: 14px;
            line-height: 24px;
            margin-bottom: 15px;
            a{
                color: #003CA4;
            }
        }
    }
    .button-section {
        display: flex;
        margin-top: 40px;
        gap: 20px;
        button {
            background: #00264B;
            color: #fff;
            font-size: 16px;
            width: 100%;
            border: 1px solid #00264B;
            height: 50px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s;
            &:hover {
                background: #EA4C99;
                border: 1px solid #EA4C99;
            }
        }
        button.cancel {
            color: #00264B;
            background: transparent;
            transition: all 0.3s;
            &:hover {
                background: #00264B;
                color: #fff;
                border: 1px solid #00264B;
                transition: all 0.3s;
            }
        }
    }
}
.login-page {
    padding: 75px 0;
    .login-form {
        max-width: 550px;
        margin: auto;
        img {
            margin: auto;
            width: 240px;
            display: table;
            margin-bottom: 20px;
        }
        .form-section {
            border-radius: 5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.09);
            border: 1px solid #F1F1F6;
            .form-contentsection {
                margin-top: 5px;
            }
        }
    }
}

.adderss-form {
    margin: 100px 0;
    @media (max-width:767px){
        margin: 45px 0;
    }
}
.adderss-form .inner-container {
    display: grid;
    grid-template-columns: 0.90fr 1fr;
    grid-gap: 70px;
    @media (max-width:767px){
        grid-template-columns: auto;
        grid-gap: 30px;
    }
}
.adderss-form .getintouch h2 {
    margin-top: 0;
    color: #000;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}
.adderss-form .getintouch p {
    font-size: 16px;
    line-height: 28px;
    color: #545454;
}
.adderss-form .getintouch .address {
    border-top: 1px solid #c4c4c4;
    padding-top: 40px;
    margin-top: 30px;
}
.adderss-form .getintouch .address .item {
    margin-bottom: 30px;
    padding-left: 70px;
    position: relative;
}
.adderss-form .getintouch .address .item .icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #fff;
    justify-content: center;
    background: #00264B;
    font-size: 20px;
    position: absolute;
    border-radius: 100px;
    padding: 15px;
    left: 0;
}
.adderss-form .getintouch .address .item h4 {
    margin-top: 0;
    color: #000;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}
.adderss-form .getintouch .address .item p {
    margin-bottom: 0;
}
.adderss-form{
    .form {
        width: 100%;
        border-radius: 5px;
        padding: 30px;
        box-sizing: border-box;
        box-shadow: 0 0 7px 1px rgba(59, 90, 136, 0.1);
    }
    .form h2 {
        margin-top: 0;
        color: #000;
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
    }
    .form p {
        font-size: 16px;
        line-height: 28px;
        color: #000;
    }
    .form form {
        margin-top: 20px;
    }
    .form form .section {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        margin-bottom: 20px;
    }
    .form form .field {
        width: 100%;
        display: inline-block;
    }
    .form form .field input,
    .form form .field select,
    .form form .field textarea {
        width: 100%;
        border: 1px solid #ccc;
        height: 50px;
        padding: 15px;
        border-radius: 5px;
        font-size: 16px;
        color: #000;
        font-family: "Inter", sans-serif;
    }
    .form form .field select {
        margin-bottom: 20px;
    }
    .form form .field textarea {
        height: 75px;
        margin-bottom: 30px;
    }
    .form form .get_btn {
        background: #00264B;
        color: #fff;
        font-size: 16px;
        width: 100%;
        border: 1px solid #00264B;
        height: 50px;
        border-radius: 5px;
        font-weight: 600;
        font-size: 16px;
        text-transform: uppercase;
        cursor: pointer;
        transition: all 0.3s;
        &:hover {
            background: #EA4C99;
            border: 1px solid #EA4C99;
        }
    }
}

.content-pages {
    margin-top: 75px;
    h4 {
        color: #232536;
        text-transform: uppercase;
        font-size: 18px;
        margin-bottom: 10px;
    }
    p {
        color: #545454;
        font-size: 16px;
        font-weight: 400;
        line-height: 28px;
        margin-bottom: 20px;
    }
    ul {
        list-style-type: none;
        margin-bottom: 30px;
        li {
            color: #545454;
            font-size: 16px;
            font-weight: 400;
            margin-bottom: 20px;
            line-height: 28px;
            position: relative;
            padding-left: 20px;
            &:last-child {
                margin-bottom: 0;
            }
            &:after {
                position: absolute;
                left: 0;
                top: -10px;
                content: ".";
                font-size: 40px;
                color: #003CA4;
            }
            a {
                text-decoration: underline;
                color: #545454;
                &:hover {
                    color: #EA4C99;
                }
            }
            b {
                color: #003CA4;
            }
        }
    }
}






.main_fluid.dashboards {
    padding: 15px;
    display: flex;
    width: 100%;
    grid-gap: 3vw;
    @media (max-width:767px){
        display: block;
    }
    .left-section.show{
        left: 0;
    }
    .left-section {
        max-width: 255px;
        width: 100%;
        .logo{
            text-align: center;
            margin-bottom: 10px;
        }
        .left-menu {
            margin-top: 30px;
            ul {
                list-style-type: none;
                li {
                    margin-bottom:7px;
                    a {
                        display: flex;
                        grid-gap: 10px;
                        color: #171717;
                        text-decoration: none;
                        align-items: center;
                        padding: 12px;
                        border-radius: 10px;
                        font-size: 16px;
                        transition: all 0.3s;
                        &:hover {
                            background: #fff;
                            transition: all 0.3s;
                            box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
                            font-weight:700;
                            color:#000;
                            .icon {
                                background: #00264B;
                                transition: all 0.3s;
                                img {
                                    filter:brightness(0) invert(1);
                                }
                                i{
                                    color: #ffffff;
                                }
                            }
                        }
                        .icon {
                            width: 35px;
                            height: 35px;
                            border-radius: 12px;
                            background: #fff;
                            display: flex;
                            align-items:center;
                            justify-content: center;
                            border: 1px solid #ededed;
                            img {
                                width: auto;
                            }
                            i{
                                color: #00264B;
                            }
                        }
                    }
                }
                li.active {
                    a {
                        font-weight:700;
                        color:#000;
                        background: #fff;
                        box-shadow: 0 4px 32px rgba(0, 0, 0, .06);
                        .icon {
                            background: #00264B;
                            border: 1px solid #00264B;
                            img {
                                filter:brightness(0) invert(1);
                            }
                            i{
                                color: #ffffff;
                            }
                        }
                    }
                }
            }
        }
        h2 {
            color: #000;
            font-size: 18px;
            margin-bottom: 20px;
            margin-top: 30px;
        }
        .needhelp-section {
            background: #00264B url(../images/needhelp-bg.png) no-repeat bottom right;
            border-radius: 20px;
            padding: 20px 20px;
            margin-top: 30px;
            .icon {
                width: 40px;
                height: 40px;
                background: #fff;
                border-radius: 100px;
                display: flex;
                margin-bottom: 10px;
                align-items:center;
                justify-content: center;
                img {
                    width: 100%;
                    height: auto;
                }
                i{
                    color: #00264B;
                    font-size: 26px;
                }
            }
            h3 {
                color: #fff;
                margin-bottom: 0px;
                font-size: 20px;
            }
            a {
                background: #fff;
                padding: 10px 20px;
                border-radius: 100px;
                display: table;
                font-size: 16px;
                margin-top: 20px;
            }
        }
    }
    .right-section {
        width: 100%;
        .header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            grid-gap: 2vw;
            box-shadow:none;
            padding: 10px 0px;
            .accountname {
                display: flex;
                grid-gap: 10px;
                align-items: center;
                cursor:pointer;
                position: relative;
                white-space: nowrap;
                i{
                    color: #00264B;
                    font-size: 20px;
                }
                ul.user-dropdown-list{
                    position: absolute;
                    top: 40px;
                    right: 0px;
                    background: #fff;
                    list-style-type: none;
                    min-width: 180px;
                    z-index: 1;
                    display: none;
                    box-shadow: 0px 6px 10px 2px rgba(0, 0, 0, .08);
                    li{
                        text-align: left;
                        a{
                            border-bottom: 1px solid #EEEEEE;
                            padding: 12px;
                            color: #000;
                            font-size: 14px;
                            text-align: left;
                            width: 100%;
                            display: block;
                            text-decoration: none;
                            &:hover{
                                background: #F8F9FA;
                            }
                        }
                    }
                }
            }
            .alert {
                display: flex;
                grid-gap: 10px;
                align-items: center;
                cursor:pointer;
                margin: 0px;
                padding: 0px;
                i{
                    color: #00264B;
                    font-size: 19px;
                }
            }
        }
        .main-section {
            .breadcrum {
                margin: 0 0 15px;
                ul {
                    list-style-type: none;
                    display: flex;
                    li {
                        color: #2D3748;
                        font-size: 14px;
                        padding: 0 20px;
                        position: relative;
                        &:after {
                            content: '/';
                            position: absolute;
                            top: 0;
                            right: 0;
                        }
                        &:first-child {
                            padding-left: 0;
                        }
                        &:last-child {
                            &:after {
                                display: none !important;
                            }
                            a {
                                color: #2D3748 !important;
                                font-weight: 600;
                                pointer-events: none;
                            }
                        }
                        a {
                            color: #A0AEC0 !important;
                            font-size: 14px;
                            text-decoration: none;
                        }
                    }
                }
            }
            .page-heading{
                margin-bottom: 20px;
                h1{
                    color: #00264B;
                }
            }
            div.search-select{
                display: flex;
                grid-gap: 20px;
                margin-bottom: 0px;
                padding-bottom: 30px;
                border-bottom: 1px solid #e2e2e2;
                select{
                    background: #fff;
                    height: 45px;
                    border: 1px solid #E2E2E3;
                    width: 100%;
                    border-radius: 5px;
                    padding: 10px 15px;
                    font-size: 16px;
                    max-width: 250px;
                    -webkit-appearance: none;
                    -moz-appearance: none;
                    background: url(../images/selectbox-arrow.png) no-repeat right;
                    background-position-x: 95%;
                    @media (max-width:767px){
                        border-radius: 10px;
                        background-position-x: 97%;
                    }
                }
            }
            .search {
                width: 100%;
                position:relative;
                @media (max-width:767px){
                    max-width: none;
                }
                input {
                    background: #fff;
                    height: 45px;
                    border: 1px solid #E2E2E3;
                    width: 100%;
                    border-radius: 5px;
                    padding: 10px 15px;
                    font-size: 16px;
                    @media (max-width:767px){
                        border-radius: 10px;
                    }
                }
                .action.search{
                    position: absolute;
                    top: 0px;
                    width: 30px;
                    right: 0px;
                    background: #fff;
                    border: 0px;
                    top: 12px;
                    cursor: pointer;
                    right: 10px;
                    i{
                        font-size: 20px;
                    }
                    @media (max-width:767px){
                        right: 7px;
                    }
                }
            }
            .main-content{
                background: #fff;
                border-radius: 10px;
                padding: 30px 30px;
                box-shadow: 0px 0px 10px rgba(0, 0, 0, .09);
                margin-bottom: 50px;
                .page-heading {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin: 0px 0px 30px;
                    flex-wrap: wrap;
                    @media (max-width:1024px){
                        flex-direction: column;
                        align-content: flex-start;
                        align-items: flex-start;
                        grid-gap: 15px;
                    }
                    h1{
                        color: #1A1A1A;
                        font-size: 26px;
                        font-weight: 600;
                        font-family: "Poppins", sans-serif;
                        margin: 0px;
                        text-align: left;
                        @media (max-width: 767px){
                            font-size: 24px;
                        }
                    }
                    a{
                        font-family: "Poppins", sans-serif;
                        text-decoration: none;
                        background: #00264B;
                        border: 0px;
                        border-radius: 5px;
                        color: #fff;
                        font-size: 14px;
                        font-weight: 500;
                        cursor: pointer;
                        transition: all 0.5s;
                        padding: 10px 15px;
                        &:hover{
                            background: #003CA4;
                            transition: all 0.5s;
                        }
                    }
                }
                .status{
                    display: flex;
                    gap: 10px;
                    align-items: center;
                    p{
                        font-size: 16px;
                        font-weight: 600;
                    }
                }
                .active-btn{
                    background: #afffec;
                    color: #025a46;
                    border-radius:5px;
                    border: 1px solid #025a46;
                    padding: 10px 10px;
                    text-decoration: none;
                    font-size: 14px;
                    max-width: 85px;
                    width: 100%;
                    display: block;
                    text-align: center;
                    &:hover{
                        background: #025a46;
                        color: #fff;
                    }
                }
                .inactive-btn{
                    background: #FFC5C5;
                    color: #DF0404;
                    border-radius:5px;
                    border: 1px solid #DF0404;
                    padding: 10px 10px;
                    text-decoration: none;
                    font-size: 14px;
                    max-width: 85px;
                    width: 100%;
                    display: block;
                    text-align: center;
                    &:hover{
                        background: #DF0404;
                        color: #fff;
                    }
                }
                .expiring-btn{
                    background: #fad288;
                    color: #3d2507;
                    border-radius:5px;
                    border: 1px solid #d87b01;
                    padding: 10px 10px;
                    text-decoration: none;
                    font-size: 14px;
                    max-width: 85px;
                    width: 100%;
                    display: block;
                    text-align: center;
                     &:hover{
                        background: #864a00;
                        color: #fff;
                    }
                }
                .view-btn{
                    background: #00264B;
                    color: #fff;
                    border-radius:5px;
                    border: 1px solid #00264B;
                    padding: 5px 10px;
                    text-decoration: none;
                    font-size: 14px;
                    max-width: 85px;
                    width: 100%;
                    display: block;
                    text-align: center;
                }
                #tablesection>div.active {
                    display: block;
                }
                .dashboard-allusers{
                    display: none;
                    table{
                        tr{
                            td{
                                border-top: 0px;
                                .expiring-label{
                                    background: #fad288;
                                    color: #3d2507;
                                    border-radius: 5px;
                                    border: 1px solid #d87b01;
                                    padding: 2px 5px;
                                    text-decoration: none;
                                    font-size: 12px;
                                    width: auto;
                                    text-align: center;
                                    display: inline-block;
                                    margin-bottom: 7px;
                                }
                                p{
                                    font-size: 14px;
                                    color: #000;
                                    margin-bottom: 7px;
                                }
                                h5{
                                    font-size: 16px;
                                    font-weight: 500;
                                    margin-bottom:7px;
                                }
                                .edit, .upgrade, a.renew, .aggrement{
                                    background: #0554F2;
                                    color: #fff;
                                    border-radius: 5px;
                                    border: 1px solid #0554F2;
                                    padding: 6px 4px;
                                    text-decoration: none;
                                    font-size: 12px;
                                    max-width: 95px;
                                    width: 100%;
                                    display: block;
                                    margin-bottom:5px; 
                                    text-align: center;
                                    cursor: pointer;
                                    display: flex;
                                    gap: 5px;
                                    justify-content: center;
                                }
                                a.renew{
                                    background: #26978C;
                                    border: 1px solid #26978C;
                                }
                                .upgrade{
                                    background: #8253DB;
                                    border: 1px solid #8253DB;
                                }
                                a.aggrement{
                                    background: #be9f01;
                                    border: 1px solid #be9f01;
                                }
                            }
                        }
                    }
                }
                .event-list {
                    overflow: auto;
                    p{
                        color: #545454;
                        font-size: 16px;
                        font-weight: 400;
                        margin-bottom: 20px;
                        line-height: 28px;
                    }
                    table {
                        width: 100%;
                        thead {
                            tr th {
                                font-size: 14px;
                                text-align: left;
                                padding: 20px 10px;
                                background: #f7f7f7;
                            }
                        }
                        tbody {
                            tr {
                                td {
                                    border-bottom: 1px solid #e2e2e2;
                                    font-size: 14px;
                                    text-align: left;
                                    padding: 18px 10px;
                                    position: relative;
                                    span.mail{
                                        color: #fff;
                                        border-radius: 5px;
                                        padding: 6px 4px;
                                        text-decoration: none;
                                        font-size: 12px;
                                        max-width: 85px;
                                        width: 100%;
                                        display: block;
                                        margin-bottom:5px; 
                                        text-align: center;
                                        background: #00264B;
                                        border: 1px solid #00264B;
                                    }
                                    input {
                                        background: #fff;
                                        border: 0px;
                                        border: 1px solid #E2E2E3;
                                        width: 100%;
                                        padding: 10px 10px;
                                        font-size: 14px;
                                        @media (max-width:767px){
                                            border-radius: 10px;
                                        }
                                    }
                                    a{
                                        color: #0554F2;
                                        &:hover{
                                            text-decoration: none;
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0px;
  margin-top: 30px;
}
.pagination li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  border: 1px solid gray;
  color: #000;  
  margin: 0 4px;
  border-radius: 5px;
}
.pagination li a.active {
  background-color: #00264B;
  color: white;
}
.pagination li a:hover {
  background-color: #ececec;
  color: #000;
}
.pagination li a.disabled {
  color: #dddddd;
  cursor: not-allowed;
  pointer-events: none;
}
.room-gallerysection{
    margin: 50px 0px 100px;
    .inner{
        margin-top: 80px;
        .gallery{
            display:grid;
            grid-gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            a{
                img{
                    width: 100%;
                    cursor: pointer;
                    height: 200px;
                }
            }
        }
    }
}
.signup-section {
    margin-bottom: 100px;
    .inner {
        opacity: 0.8;
        background-image: radial-gradient(circle at center center, #0a1725, #010109), repeating-radial-gradient(circle at center center, #444cf7, #444cf7, 10px, transparent 20px, transparent 10px);
        background-blend-mode: multiply;
        color: #fff;
        padding: 60px 20px;
        h3 {
            text-align: center;
            font-size: 32px;
            text-transform: uppercase;
            margin-bottom: 20px;
        }
        p {
            text-align: center;
            font-size: 24px;
            margin-bottom: 40px;
        }
        a {
            background: #fff;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            padding: 15px 30px;
            color: #00264B;
            transition: all 0.3s;
            position: relative;
            display: table;
            text-transform: uppercase;
            margin: auto;
            &:hover {
                background: #EA4C99;
                color: #fff;
                transition: all 0.3s;
            }
        }
    }
}
.befnitssection {
    margin-bottom: 100px;
    .heading-content {
        justify-content: normal;
        align-items: baseline;
        flex-direction: column;
        .rightcontent p {
            width: 100%;
            max-width: fit-content;
        }
    }
    .befnits-grid {
        margin-top: 80px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
        gap: 30px;
        .befnits-card {
            background: #fff;
            padding: 35px 25px;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            .feature-icon {
                width: 48px;
                height: 48px;
                margin-bottom: 20px;
                img {
                    width: 100%;
                }
            }
            .befnits-title {
                font-size: 24px;
                font-weight: bold;
                margin-bottom: 10px;
                color: #003CA4;
            }
            .befnits-desc {
                font-size: 0.95rem;
                line-height: 1.6;
                color: #666;
                a {
                    color: #003CA4;
                    &:hover {
                        text-decoration: none;
                    }
                }
            }
        }
    }
}
.mainimg-content.offline-subscribe{
    .inner{
        background: #fff;
        border-radius: 12px;
        padding:50px;
        text-align: left;
        box-shadow: 0 0 7px 1px rgba(59, 90, 136, 0.1);
        transition: all 0.3s ease;
        max-width: 900px;
        margin: 80px auto;
        ul{
            &:last-child{
                margin-bottom: 0px;
            }
        }
        h3{
            color: #003CA4;
        }
    }
}