/* Center service grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 210px);
    gap: 35px 45px;
    justify-content: center;
    /* centers horizontally */

    margin-left: auto;
    margin-right: auto;
}

/* Service cards */
.service-card {
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

/* Colors */
.study {
    background: #FFA800;
    color: #000;
}

.migrate {
    background: #002A97;
    color: #fff;
}

.work {
    background: #002A97;
    color: #fff;
}

.invest {
    background: #002A97;
    color: #fff;
}

/* Center counselling block */
.counselling-box {
    margin-top: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.icon {
    font-size: 34px;
}

.counselling-box h4 {
    margin: 0;
    font-size: 22px;
    color: #000;
}

.counselling-box a {
    color: #FFA800;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.counselling-box a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 767px) {

    .section-title_ss {
        font-size: 42px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .counselling-box {
        flex-direction: column;
        text-align: center;
    }
}

.service-info {
    max-width: 700px;
    margin: 40px auto 0;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: none;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

.service-info a {
    color: #002A97;
    font-weight: 600;
    text-decoration: none;
}

/* home page top destinations */
.top-destinations-section {
    background: #fff;
    padding: 45px 0;
}

.destination-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.heading-line {
    width: 28px;
    height: 2px;
    background: #FFA800;
}

.small-title {
    font-size: 18px;
    color: #555;
    font-weight: 500;
}

.main-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #002A97;
}

.main-title span {
    color: #FFA800;
}

.destination-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 35px;
    flex-wrap: wrap;

    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 40px;
    scrollbar-width: none;
}

.destination-item {
    text-align: center;
    text-decoration: none;
    transition: .3s;
}

.destination-item:hover {
    transform: translateY(-6px);
}

.flag-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    /*border: 2px solid #e8e8e8;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: .3s;
    overflow: hidden;
}

.flag-circle img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.destination-item span {
    display: block;
    margin-top: 12px;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.destination-item:hover .flag-circle {
    border-color: #FFA800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {

    .destination-list {
        gap: 30px;
    }

    .flag-circle {
        width: 60px;
        height: 60px;
    }

    .flag-circle img {
        width: 45px;
        height: 45px;
    }

    .main-title {
        font-size: 34px;
    }
}

@media(max-width:767px) {

    .destination-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .main-title {
        font-size: 28px;
    }

    .small-title {
        font-size: 16px;
    }

    .destination-item span {
        font-size: 14px;
    }
}

@media(max-width:480px) {

    .destination-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-title {
        font-size: 24px;
    }
}

.destination-wrapper {
    position: relative;
}

.destination-list::-webkit-scrollbar {
    display: none;
}

/* home page about us */
.about-modern {
    padding: 45px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.about-modern__content {
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.about-modern__tag {
    display: inline-block;
    background: #FFA800;
    color: #fff;
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 25px;
}

.about-modern__title {
    font-size: 46px;
    font-weight: 700;
    color: #002A97;
    line-height: 1.3;
    margin-bottom: 30px;
}

.about-modern__title span {
    color: #FFA800;
}

.about-modern__text {
    font-size: 18px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
}

.about-modern__image {
    margin-top: 70px;
    text-align: center;
}

.about-modern__image img {
    width: 100%;
    max-width: 950px;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

@media(max-width:991px) {

    .about-modern {
        padding: 80px 0;
    }

    .about-modern__title {
        font-size: 36px;
    }

    .about-modern__text {
        font-size: 17px;
    }
}

@media(max-width:767px) {

    .about-modern {
        padding: 60px 0;
    }

    .about-modern__title {
        font-size: 30px;
    }

    .about-modern__text {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-modern__image {
        margin-top: 45px;
    }
}

/* ===============================
   WHY CHOOSE SECTION
================================= */

.why-choose-section {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
}

.why-map-bg {
    position: absolute;
    inset: 0;
    background: url('/uploads/images/world-map.png') no-repeat center top;
    background-size: min(1100px, 90%);
    opacity: .3;
}

.why-skyline-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 140px;
    background: url('/uploads/images/skyline.png') no-repeat center bottom;
    background-size: cover;
    opacity: .06;
}

.why-choose-section .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
}

/* .why-map-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:820px;
    background:url('/uploads/images/world-map.png') center top no-repeat;
    background-size:contain;
    opacity:.5;
    pointer-events:none;
    z-index:1;
} */

/* .why-skyline-bg{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:120px;
    background:url('/uploads/images/skyline.png') center bottom no-repeat;
    background-size:contain;
    opacity:.12;
    pointer-events:none;
    z-index:1;
} */
.why-skyline-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 256px;
    background-image: url('/uploads/images/skyline.png');
    background-repeat: no-repeat;
    background-position: center bottom;
    /* Try this first */
    background-size: 100% auto;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
}

/* Heading */

.why-heading {
    text-align: center;
    margin-bottom: 50px;
}

.why-heading span {
    display: block;
    font-size: 26px;
    font-weight: 700;
    color: #222;
    line-height: 1.2;
}

.why-heading h2 {
    margin: 5px 0 15px;
    font-size: 52px;
    font-weight: 800;
    color: #002A97;
}

.why-heading .line {
    width: 70px;
    height: 3px;
    background: #FFA800;
    margin: 0 auto;
    border-radius: 30px;
}

.why-heading p {
    margin-top: 18px;
    font-size: 20px;
    color: #555;
}

/* Cards */

.why-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px 28px;
    text-align: center;
    min-height: 305px;
    height: 100%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    transition: .35s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .12);
}

.why-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    /*background: #002A97;*/
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA800;
    font-size: 34px;
}

.why-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #002A97;
    line-height: 1.35;
    margin-bottom: 15px;
}

.why-card .card-line {
    width: 42px;
    height: 3px;
    background: #FFA800;
    margin: 18px auto;
}

.why-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

/* Responsive */

@media(max-width:991px) {

    .why-heading h2 {
        font-size: 40px;
    }

    .why-heading p {
        font-size: 18px;
    }

    .why-card {
        margin-bottom: 25px;
        min-height: auto;
    }

    .why-map-bg {
        height: 170px;
    }

    .why-skyline-bg {
        height: 90px;
    }
}

@media(max-width:767px) {

    .why-choose-section {
        padding: 50px 0;
    }

    .why-heading span {
        font-size: 22px;
    }

    .why-heading h2 {
        font-size: 32px;
    }

    .why-heading p {
        font-size: 16px;
    }

    .why-card {
        padding: 30px 20px;
    }

    .why-card h4 {
        font-size: 22px;
    }

    .why-icon {
        width: 65px;
        height: 65px;
        font-size: 28px;
    }
}

/* home page - processing steps */
.process-modern {
    position: relative;
    padding: 90px 0;
    background: #f7fbff;
    overflow: hidden;
}

/* Background */
.process-modern::before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    background: rgba(0, 42, 151, .05);
    border-radius: 50%;
    top: -250px;
    left: -220px;
}

.process-modern::after {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 152, 0, .06);
    border-radius: 50%;
    bottom: -220px;
    right: -180px;
}

.process-modern .container {
    position: relative;
    z-index: 2;
}

.process-heading {
    max-width: 700px;
    margin: auto;
    margin-bottom: 70px;
}

.process-heading .sub-title {
    display: inline-block;
    background: rgb(252, 175, 23);
    color: #002A97;
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 15px;
}

.process-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: #002A97;
    margin-bottom: 18px;
    line-height: 1.3;
}

.process-heading p {
    color: #002A97;
    font-size: 17px;
    line-height: 30px;
}

/* Timeline */
.process-row {
    position: relative;
}

.process-row::before {
    content: "";
    position: absolute;
    top: 75px;
    left: 17%;
    width: 66%;
    height: 3px;
    background: linear-gradient(90deg, #002A97, #FFA800);
    z-index: 0;
}

.process-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: .4s;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .06);
    height: 100%;
    z-index: 2;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 55px rgba(0, 0, 0, .12);
}

.step-number {
    position: absolute;
    top: -18px;
    right: 20px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    background: linear-gradient(135deg, #002A97, #002A97);
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 10px 25px rgba(0, 42, 151, .35);
}

.icon-box {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFA800, #FFA800);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 30px rgba(255, 152, 0, .3);
}

.process-card h4 {
    font-size: 24px;
    color: #002A97;
    font-weight: 700;
    margin-bottom: 18px;
}

.process-card p {
    color: #002A97;
    line-height: 28px;
    font-size: 16px;
}

/* Button */
.process-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 38px;
    border-radius: 50px;
    background: linear-gradient(135deg, #002A97, #002A97);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 42, 151, .25);
}

.process-btn:hover {
    background: linear-gradient(135deg, #FFA800, #FFA800);
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Responsive */
@media(max-width:991px) {

    .process-row::before {
        display: none;
    }

    .process-card {
        margin-bottom: 30px;
    }

    .process-heading h2 {
        font-size: 34px;
    }

}

@media(max-width:767px) {

    .process-modern {
        padding: 70px 0;
    }

    .process-heading h2 {
        font-size: 28px;
    }

    .process-heading p {
        font-size: 15px;
    }

}

/*==================================================
 OPEN PATH MODERN FOOTER
==================================================*/

.opi-footer {
    position: relative;
    margin: 35px auto;
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, .08);
    font-family: 'Poppins', sans-serif;
}

/*=========================
TOP BAR
==========================*/

.opi-topbar {
    background: linear-gradient(90deg, #002A97, #002A97);
    padding: 12px 30px;
}

.opi-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/*=========================
BOOK BUTTON
==========================*/

.opi-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFA800;
    color: #fff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: .35s;
}

.opi-book-btn i {
    font-size: 18px;
}

.opi-book-btn:hover {
    background: #FFA800;
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/*=========================
PHONE
==========================*/

.opi-topbar-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.opi-phone-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, .65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA800;
    font-size: 18px;
}

.opi-phone-text {
    display: flex;
    flex-direction: column;
}

.opi-phone-text small {
    color: #fff;
    font-size: 12px;
    margin-bottom: 3px;
}

.opi-phone-text a {
    color: #FFA800;
    text-decoration: none;
    font-weight: 700;
    font-size: 19px;
}

.opi-phone-text a:hover {
    color: #FFA800;
}

/*=========================
MAIN FOOTER
==========================*/

.opi-main-footer {
    padding: 40px 35px 30px;
    background: #fff;
}

.opi-column {
    position: relative;
    min-height: 100%;
    padding-right: 22px;
}

/* Vertical Divider */

.opi-column::after {
    content: "";
    position: absolute;
    top: 5px;
    right: 0;
    width: 1px;
    height: 235px;
    background: #ececec;
}

.row>div:last-child .opi-column::after {
    display: none;
}

/*=========================
LOGO
==========================*/

.opi-logo {
    margin-bottom: 16px;
}

.opi-logo img {
    max-width: 220px;
    width: 100%;
    height: auto;
}

/*=========================
ABOUT
==========================*/

.opi-about {
    color: #002A97;
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 22px;
}

/*=========================
NEWSLETTER
==========================*/

.opi-newsletter {
    display: flex;
    align-items: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    max-width: 360px;
}

.opi-newsletter input {
    flex: 1;
    border: none;
    padding: 10px 14px;
    outline: none;
    font-size: 13px;
}

.opi-newsletter button {
    border: none;
    background: #FFA800;
    color: #fff;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.opi-newsletter button:hover {
    background: #FFA800;
}

/*=========================
HEADING
==========================*/

.opi-heading {
    position: relative;
    color: #002A97;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.opi-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 34px;
    height: 3px;
    border-radius: 30px;
    background: #FFA800;
}

/*=========================
LINKS
==========================*/

.opi-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.opi-links li {
    margin-bottom: 11px;
}

.opi-links a {
    color: #002A97;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: .3s;
}

.opi-links a i {
    color: #FFA800;
    font-size: 13px;
}

.opi-links a:hover {
    color: #FFA800;
    padding-left: 6px;
}

/*=========================
CONTACT
==========================*/

.opi-contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.opi-contact-box {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.opi-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: #002A97;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA800;
    font-size: 14px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.opi-contact-box div:last-child {
    color: #002A97;
    font-size: 13px;
    line-height: 21px;
}

.opi-contact-box a {
    color: #002A97;
    text-decoration: none;
}

.opi-contact-box a:hover {
    color: #FFA800;
}

/*=========================
BOTTOM
==========================*/

.opi-bottom-footer {
    border-top: 1px solid #ececec;
    padding: 16px 35px;
}

.opi-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.opi-bottom-inner p {
    margin: 0;
    color: #002A97;
    font-size: 13px;
}

.opi-social {
    display: flex;
    gap: 10px;
}

.opi-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #002A97;
    color: #002A97;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
    text-decoration: none;
    font-size: 14px;
}

.opi-social a:hover {
    background: #002A97;
    color: #fff;
    border-color: #002A97;
}

/*==================================================
 OPEN PATH MODERN FOOTER
 PART - 3
 Responsive + Final Polish
==================================================*/


/* Smooth Animation */

.opi-book-btn,
.opi-links a,
.opi-social a,
.opi-newsletter button,
.opi-contact-box,
.opi-phone-circle {
    transition: all .35s ease;
}

.opi-column {
    transition: .35s;
}

.opi-column:hover {
    transform: translateY(-3px);
}


/* ==========================
Large Laptop
========================== */

@media (max-width:1400px) {

    .opi-main-footer {
        padding: 40px 25px 30px;
    }

    .opi-bottom-footer {
        padding: 16px 25px;
    }

}


/* ==========================
Laptop
========================== */

@media (max-width:1199px) {

    .opi-topbar {
        padding: 12px 20px;
    }

    .opi-main-footer {
        padding: 35px 20px 25px;
    }

    .opi-bottom-footer {
        padding: 16px 20px;
    }

    .opi-phone-text a {
        font-size: 20px;
    }

    .opi-heading {
        font-size: 20px;
    }

    .opi-logo img {
        max-width: 220px;
    }

    .opi-newsletter {
        max-width: 100%;
    }

}


/* ==========================
Tablet
========================== */

@media (max-width:991px) {

    /* CTA */
    .opi-topbar-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    .opi-topbar-right {
        justify-content: center;
    }

    /* Footer */

    .opi-main-footer {
        padding: 35px 20px;
    }

    .opi-column {
        padding-right: 0;
        margin-bottom: 30px;
    }

    /* Remove Divider */

    .opi-column::after {
        display: none;
    }

    .opi-heading {
        margin-bottom: 28px;
    }

    .opi-bottom-inner {
        flex-direction: column;
        gap: 20px;
    }

}


/* ==========================
Mobile
========================== */

@media (max-width:767px) {

    .opi-footer {
        border-radius: 15px;
        margin: 40px 15px;
    }

    .opi-topbar {
        padding: 18px 18px;
    }

    .opi-book-btn {
        width: 100%;
        justify-content: center;
        font-size: 15px;
    }

    .opi-phone-circle {
        width: 50px;
        height: 50px;
    }

    .opi-phone-text a {
        font-size: 18px;
    }

    .opi-main-footer {
        padding: 30px 18px;
    }

    .opi-logo {
        text-align: center;
    }

    .opi-logo img {
        max-width: 220px;
    }

    .opi-about {
        text-align: center;
        margin-bottom: 30px;
    }

    .opi-heading {
        font-size: 20px;
    }

    .opi-newsletter {
        flex-direction: column;
        border: none;
        gap: 12px;
    }

    .opi-newsletter input {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 8px;
    }

    .opi-newsletter button {
        width: 100%;
        border-radius: 8px;
    }

    .opi-bottom-footer {
        padding: 18px 18px;
    }

    .opi-bottom-inner {
        text-align: center;
    }

    .opi-social {
        justify-content: center;
    }
}


/* ==========================
Small Mobile
========================== */

@media (max-width:575px) {

    .opi-main-footer {
        padding: 28px 16px;
    }

    .opi-contact-box {
        gap: 12px;
    }

    .opi-icon {
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 15px;
    }

    .opi-contact-box div:last-child {
        font-size: 14px;
        line-height: 24px;
    }

    .opi-heading {
        font-size: 19px;
    }

    .opi-about {
        font-size: 15px;
        line-height: 28px;
    }

    .opi-links li {
        margin-bottom: 14px;
    }
}


/* ==========================
Extra Small Mobile
========================== */

@media (max-width:400px) {

    .opi-footer {
        margin: 30px 10px;
    }

    .opi-book-btn {
        padding: 14px 18px;
        font-size: 14px;
    }

    .opi-phone-text small {
        font-size: 13px;
    }

    .opi-phone-text a {
        font-size: 16px;
    }

    .opi-social {
        gap: 10px;
    }

    .opi-social a {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }

    .opi-bottom-inner p {
        font-size: 13px;
    }
}


/* ==========================
Hover Effects
========================== */

.opi-contact-box:hover .opi-icon {
    background: #FFA800;
    color: #fff;
}

.opi-newsletter input:focus {
    border-color: #FFA800;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, .12);
}

.opi-newsletter button:hover {
    transform: translateY(-2px);
}

.opi-social a:hover {
    transform: translateY(-4px);
}

.opi-book-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 140, 0, .30);
}

.opi-phone-circle:hover {
    background: #FFA800;
    color: #fff;
}

/* ==========================
Selection Color
========================== */
::selection {
    background: #FFA800;
    color: #fff;
}

/* ------------------------
contact form - home page
------------------------- */
.assessment-section {
    position: relative;
    overflow: hidden;
    padding: 90px 0;
    background: url('/images/contact-bg.png') center center;
    background-size: cover;
}

.assessment-section .overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: none;
}

.assessment-section .container {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.assessment-left {
    width: 48%;
    color: #002A97;
}

.assessment-left h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;
}

.assessment-left h1 span {
    color: #FFA800;
}

.line {
    width: 70px;
    height: 3px;
    background: #FFA800;
    margin-bottom: 25px;
}

.assessment-left p {
    font-size: 28px;
    line-height: 1.6;
    color: #002A97;
    margin-bottom: 35px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;
}

.contact-item .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #FFA800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-item strong {
    font-size: 26px;
}

.contact-item div {
    font-size: 24px;
    line-height: 1.5;
}

.assessment-form {
    width: 48%;
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);
}

.assessment-form h2 {
    font-size: 48px;
    text-align: center;
    color: #002A97;
    font-weight: 800;
}

.assessment-form h2 span {
    color: #FFA800;
}

.assessment-form p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
    width: 100%;
    margin-bottom: 18px;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 16px;
    background: #fafafa;
}

.assessment-form textarea {
    resize: none;
}

.submit-btn {
    width: 100%;
    border: none;
    border-radius: 12px;
    padding: 18px;
    background: linear-gradient(90deg, #FFA800, #FFA800);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    transition: .3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
}

.privacy {
    text-align: center;
    margin-top: 18px;
    color: #555;
}

.assessment-consent {
    margin: 4px 0 16px;
    color: #555;
    font-size: 13px;
    line-height: 1.5;
}

.assessment-consent label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.assessment-consent input[type="checkbox"] {
    width: auto;
    min-width: 16px;
    margin: 3px 0 0;
    accent-color: #FFA800;
}

.assessment-consent a {
    color: #112a80;
    font-weight: bold;
    text-decoration: underline;
}

.feature-box {
    margin-top: 50px;
    background: rgba(0, 42, 151, .9);
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding: 25px;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 33%;
}

.feature i {
    color: #FFA800;
    font-size: 38px;
}

.feature h5 {
    margin-bottom: 6px;
    font-size: 18px;
}

.feature span {
    font-size: 14px;
}

@media(max-width:991px) {

    .assessment-section .container {
        flex-direction: column;
    }

    .assessment-left,
    .assessment-form {
        width: 100%;
    }

    .assessment-left h1 {
        font-size: 52px;
    }

    .assessment-left p {
        font-size: 20px;
    }

    .feature-box {
        flex-direction: column;
        gap: 25px;
    }

    .feature {
        width: 100%;
    }

}

/* Final homepage overrides: this block intentionally remains last. */
.main-slider-two__bg {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.main-slider-two .container,
.top-destinations-section .container,
.about-modern .container,
.why-choose-section .container,
.process-modern .container,
.assessment-section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.top-destinations-section,
.about-modern,
.why-choose-section,
.process-modern,
.assessment-section {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.destination-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    gap: 28px 20px;
    overflow: visible;
    padding: 10px 0 0;
}

.about-modern .container {
    display: flex;
    align-items: center;
    gap: clamp(35px, 6vw, 80px);
}

.about-modern__content,
.about-modern__image {
    flex: 1 1 0;
    max-width: none;
    margin: 0;
}

.main-slider-two img,
.top-destinations-section img,
.about-modern img,
.why-choose-section img,
.process-modern img,
.assessment-section img {
    display: block;
    max-width: 100%;
    height: auto;
}

.about-modern p,
.why-choose-section p,
.process-modern p,
.assessment-section p {
    text-align: justify;
    line-height: 1.8;
}

.why-choose-section .row,
.process-modern .process-row {
    align-items: stretch;
}

.why-choose-section .row > [class*="col-"],
.process-modern .process-row > [class*="col-"] {
    display: flex;
}

.why-card,
.process-card {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.why-card p,
.process-card p {
    flex: 1 1 auto;
}

.assessment-section .container {
    align-items: stretch !important;
    gap: 40px;
}

.assessment-left,
.assessment-form {
    min-width: 0;
    box-sizing: border-box;
}

.assessment-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea,
.assessment-form button {
    max-width: 100%;
    box-sizing: border-box;
}

.page-wrapper:has(.main-slider-two) > .opi-footer {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-modern .container,
    .assessment-section .container {
        flex-direction: column;
    }

    .assessment-left,
    .assessment-form {
        width: 100% !important;
        flex: 0 1 auto;
    }
}

@media (max-width: 767px) {
    .top-destinations-section,
    .about-modern,
    .why-choose-section,
    .process-modern,
    .assessment-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .destination-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .main-slider-two .about-btn-box {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
    }

    .main-slider-two .about-btn-box a {
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }
}

/* Final compact sizing for the assessment section */
.assessment-section { padding: 55px 0 !important; }
.assessment-section .container { max-width: 1180px !important; gap: 35px !important; }
.assessment-left h1 { font-size: 48px !important; line-height: 1.1; margin-bottom: 14px; }
.assessment-left p { font-size: 18px !important; line-height: 1.45; margin-bottom: 22px !important; }
.contact-item { gap: 12px !important; margin-bottom: 14px !important; }
.contact-item .icon { width: 42px !important; height: 42px !important; min-width: 42px !important; font-size: 16px !important; }
.contact-item strong { font-size: 17px !important; }
.contact-item div { font-size: 15px !important; line-height: 1.35; }
.assessment-form { padding: 28px !important; border-radius: 18px; }
.assessment-form h2 { font-size: 32px !important; line-height: 1.2; }
.assessment-form p { margin-bottom: 18px !important; }
.assessment-form input,
.assessment-form select,
.assessment-form textarea { margin-bottom: 12px !important; padding: 11px 13px !important; font-size: 14px !important; }
.assessment-form textarea { height: 105px !important; }
.submit-btn { padding: 12px; font-size: 18px !important; }
.privacy { margin-top: 12px; font-size: 13px; }
.feature-box { margin-top: 28px !important; padding: 16px !important; border-radius: 12px; }
.feature { gap: 10px !important; }
.feature i { font-size: 26px !important; }
.feature h5 { margin-bottom: 3px; font-size: 15px !important; }
.feature span { font-size: 12px !important; }

@media (max-width: 991px) {
    .assessment-section { padding: 38px 0 !important; }
    .assessment-section .container { gap: 24px !important; }
    .assessment-left h1 { font-size: 40px !important; }
    .assessment-form { padding: 22px !important; }
}

@media (max-width: 575px) {
    .assessment-section { padding: 28px 0 !important; }
    .assessment-left h1 { font-size: 32px !important; }
    .assessment-form h2 { font-size: 26px !important; }
}

/* Compact assessment section */
.assessment-section {
    padding: 55px 0;
}

.assessment-section .container {
    max-width: 1180px;
    gap: 35px;
}

.assessment-left h1 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 14px;
}

.assessment-left p {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 22px;
}

.contact-item {
    gap: 12px;
    margin-bottom: 14px;
}

.contact-item .icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 16px;
}

.contact-item strong {
    font-size: 17px;
}

.contact-item div {
    font-size: 15px;
    line-height: 1.35;
}

.assessment-form {
    padding: 28px;
    border-radius: 18px;
}

.assessment-form h2 {
    font-size: 32px;
    line-height: 1.2;
}

.assessment-form p {
    margin-bottom: 18px;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {
    margin-bottom: 12px;
    padding: 11px 13px;
    font-size: 14px;
}

.assessment-form textarea {
    height: 105px;
}

.submit-btn {
    padding: 12px;
    font-size: 18px;
}

.privacy {
    margin-top: 12px;
    font-size: 13px;
}

.feature-box {
    margin-top: 28px;
    padding: 16px;
    border-radius: 12px;
}

.feature {
    gap: 10px;
}

.feature i {
    font-size: 26px;
}

.feature h5 {
    margin-bottom: 3px;
    font-size: 15px;
}

.feature span {
    font-size: 12px;
}

@media (max-width: 991px) {
    .assessment-section {
        padding: 38px 0;
    }

    .assessment-section .container {
        gap: 24px;
    }

    .assessment-left h1 {
        font-size: 40px;
    }

    .assessment-form {
        padding: 22px;
    }
}

@media (max-width: 575px) {
    .assessment-section {
        padding: 28px 0;
    }

    .assessment-left h1 {
        font-size: 32px;
    }

    .assessment-form h2 {
        font-size: 26px;
    }
}

/* =====================================================================
   HOME PAGE LAYOUT NORMALIZATION
   Kept at the end of this file so the homepage has one predictable
   responsive layer after the legacy/compact rules above.
   ===================================================================== */

body:has(.main-slider-two) {
    margin: 0;
    max-width: 100%;
    overflow-x: hidden;
}

.page-wrapper:has(.main-slider-two) {
    min-width: 0;
    overflow-x: hidden;
}

.main-slider-two,
.top-destinations-section,
.about-modern,
.why-choose-section,
.process-modern,
.assessment-section {
    width: 100%;
    box-sizing: border-box;
}

.main-slider-two .container,
.top-destinations-section .container,
.about-modern .container,
.why-choose-section .container,
.process-modern .container,
.assessment-section .container {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.top-destinations-section,
.about-modern,
.why-choose-section,
.process-modern,
.assessment-section {
    padding-top: 90px;
    padding-bottom: 90px;
}

.main-slider-two__bg {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.main-slider-two .container {
    width: 100%;
}

.main-slider-two .about-btn-box,
.process-btn,
.submit-btn {
    white-space: nowrap;
}

.main-slider-two .about-btn-box {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.top-destinations-section .container {
    overflow: hidden;
}

.destination-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(105px, 1fr));
    justify-content: center;
    align-items: start;
    gap: 28px 20px;
    overflow: visible;
    padding: 10px 0 0;
}

.destination-item {
    min-width: 0;
}

.destination-item span {
    overflow-wrap: anywhere;
}

.about-modern .container {
    display: flex;
    align-items: center;
    gap: clamp(35px, 6vw, 80px);
}

.about-modern__content,
.about-modern__image {
    flex: 1 1 0;
    max-width: none;
    margin: 0;
}

.about-modern__image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.about-modern p,
.why-choose-section p,
.process-modern p,
.assessment-section p {
    text-align: justify;
    line-height: 1.8;
}

.why-choose-section {
    overflow: hidden;
}

.why-map-bg {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: min(1100px, 100%);
}

.why-choose-section .row,
.process-modern .process-row {
    align-items: stretch;
}

.why-choose-section .row > [class*="col-"],
.process-modern .process-row > [class*="col-"] {
    display: flex;
}

.why-card,
.process-card {
    width: 100%;
    min-height: 0;
}

.why-card {
    display: flex;
    flex-direction: column;
}

.why-card p,
.process-card p {
    flex: 1 1 auto;
}

.process-modern .container {
    position: relative;
}

.process-card {
    display: flex;
    flex-direction: column;
}

.process-card .icon-box {
    flex: 0 0 auto;
}

.assessment-section .container {
    align-items: stretch;
    gap: 40px;
}

.assessment-left,
.assessment-form {
    width: auto;
    flex: 1 1 0;
    min-width: 0;
    box-sizing: border-box;
}

.assessment-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assessment-form {
    display: flex;
    flex-direction: column;
}

.assessment-form form,
.assessment-form .row {
    width: 100%;
}

.assessment-form input,
.assessment-form select,
.assessment-form textarea,
.assessment-form button {
    max-width: 100%;
    box-sizing: border-box;
}

.assessment-form textarea {
    height: auto;
    min-height: 105px;
}

.assessment-form .submit-btn {
    overflow: hidden;
    text-overflow: ellipsis;
}

/* The footer is shared markup; only its outer page margin is normalized so
   the homepage cannot leave a trailing white strip below the footer. */
.page-wrapper:has(.main-slider-two) > .opi-footer {
    margin-bottom: 0;
}

.main-slider-two img,
.top-destinations-section img,
.about-modern img,
.why-choose-section img,
.process-modern img,
.assessment-section img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .about-modern .container {
        align-items: stretch;
    }

    .assessment-section .container {
        flex-direction: column;
    }

    .assessment-left,
    .assessment-form {
        width: 100%;
        flex: 0 1 auto;
    }
}

@media (max-width: 767px) {
    .top-destinations-section,
    .about-modern,
    .why-choose-section,
    .process-modern,
    .assessment-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .about-modern .container {
        flex-direction: column;
        gap: 35px;
    }

    .about-modern__content,
    .about-modern__image {
        width: 100%;
    }

    .destination-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .main-slider-two .about-btn-box {
        align-items: stretch;
        flex-direction: column;
    }

    .main-slider-two .about-btn-box a {
        width: 100%;
        text-align: center;
    }

    .process-modern .text-center.mt-5 {
        margin-top: 35px !important;
    }
}

@media (max-width: 360px) {
    .main-slider-two .about-btn-box a {
        font-size: 13px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* ------------------
contact form section
-------------------- */
.assessment-section {

    position: relative;
    overflow: hidden;
    padding: 90px 0;

    background: url('/images/contact-bg.png') center center;
    background-size: cover;

}

.assessment-section .overlay {

    position: absolute;
    inset: 0;

    background: rgba(255, 255, 255, .18);
    backdrop-filter: none;

}

.assessment-section .container {

    position: relative;
    z-index: 5;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;

}

.assessment-left {

    width: 48%;
    color: #002A97;

}

.assessment-left h1 {

    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 20px;

}

.assessment-left h1 span {

    color: #FFA800;

}

.line {

    width: 70px;
    height: 3px;
    background: #FFA800;
    margin-bottom: 25px;

}

.assessment-left p {

    font-size: 28px;
    line-height: 1.6;
    color: #002A97;
    margin-bottom: 35px;

}

.contact-item {

    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 22px;

}

.contact-item .icon {

    width: 55px;
    height: 55px;

    border-radius: 50%;
    background: #FFA800;
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;

}

.contact-item strong {

    font-size: 26px;

}

.contact-item div {

    font-size: 24px;
    line-height: 1.5;

}

.assessment-form {

    width: 48%;
    background: #fff;
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, .15);

}

.assessment-form h2 {

    font-size: 48px;
    text-align: center;
    color: #002A97;
    font-weight: 800;

}

.assessment-form h2 span {

    color: #FFA800;

}

.assessment-form p {

    text-align: center;
    margin-bottom: 30px;
    color: #555;

}

.assessment-form input,
.assessment-form select,
.assessment-form textarea {

    width: 100%;
    margin-bottom: 18px;

    border: 1px solid #eee;
    border-radius: 10px;

    padding: 16px 18px;
    font-size: 16px;

    background: #fafafa;

}

.assessment-form textarea {

    resize: none;

}

.submit-btn {

    width: 100%;
    border: none;
    border-radius: 12px;

    padding: 18px;

    background: linear-gradient(90deg, #FFA800, #FFA800);

    color: #fff;
    font-size: 28px;
    font-weight: 700;

    cursor: pointer;

    transition: .3s;

}

.submit-btn:hover {

    transform: translateY(-2px);

}

.privacy {

    text-align: center;
    margin-top: 18px;
    color: #555;

}

.feature-box {

    margin-top: 50px;

    background: rgba(0, 42, 151, .9);

    border-radius: 18px;

    display: flex;
    justify-content: space-between;

    color: #fff;

    padding: 25px;

}

.feature {

    display: flex;
    gap: 15px;
    align-items: center;
    width: 95%;

}

.feature i {

    color: #FFA800;
    font-size: 38px;

}

.feature h5 {
    font-weight: 900;
    color: #ffff;
    margin-bottom: 6px;
    font-size: 18px;
}

.feature span {

    font-size: 14px;

}

@media(max-width:991px) {

    .assessment-section .container {

        flex-direction: column;

    }

    .assessment-left,
    .assessment-form {

        width: 100%;

    }

    .assessment-left h1 {

        font-size: 52px;

    }

    .assessment-left p {

        font-size: 20px;

    }

    .feature-box {

        flex-direction: column;
        gap: 25px;

    }

    .feature {

        width: 100%;

    }

}

/* Absolute final homepage cascade layer. */
.main-slider-two__bg {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

.main-slider-two .container,
.top-destinations-section .container,
.about-modern .container,
.why-choose-section .container,
.process-modern .container,
.assessment-section .container {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box;
}

.top-destinations-section,
.about-modern,
.why-choose-section,
.process-modern,
.assessment-section {
    padding: 90px 0 !important;
}

.about-modern .container,
.assessment-section .container {
    align-items: stretch !important;
}

/* About content and image use separate full-width rows. */
.about-modern .container {
    flex-direction: column !important;
}

.about-modern__content,
.about-modern__image {
    width: 100%;
    flex: 0 0 auto;
}

.about-modern__image {
    margin-top: 35px;
}

.about-modern__content,
.about-modern__image,
.assessment-left,
.assessment-form {
    min-width: 0;
    box-sizing: border-box;
}

.about-modern__image img,
.main-slider-two img,
.top-destinations-section img,
.why-choose-section img,
.process-modern img,
.assessment-section img {
    /*display: block;*/
    /*max-width: 100%;*/
    /*height: auto;*/
    
    display: block;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-modern p,
.assessment-section p {
    font-size: 16px;
    text-align: justify;
    line-height: 1.8;
}

.process-modern p {
    font-size: 14px;
    text-align: center;
    line-height: 1.8;
}

.why-choose-section p {
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
}

.why-choose-section .row,
.process-modern .process-row {
    align-items: stretch;
}

.why-choose-section .row > [class*="col-"],
.process-modern .process-row > [class*="col-"] {
    display: flex;
}

.why-card,
.process-card {
    width: 100%;
    min-height: 0;
    display: flex;
    flex-direction: column;
}

.assessment-left,
.assessment-form {
    flex: 1 1 0;
}

.page-wrapper:has(.main-slider-two) > .opi-footer {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-modern .container,
    .assessment-section .container {
        flex-direction: column;
    }

    .about-modern__content,
    .about-modern__image,
    .assessment-left,
    .assessment-form {
        width: 100% !important;
        flex: 0 1 auto;
    }
}

@media (max-width: 767px) {
    .top-destinations-section,
    .about-modern,
    .why-choose-section,
    .process-modern,
    .assessment-section {
        padding: 60px 0 !important;
    }

    .destination-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 14px;
    }

    .main-slider-two .about-btn-box {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .main-slider-two .about-btn-box a {
        width: 100%;
        text-align: center;
        white-space: nowrap;
    }
}
/* home page - banner image */
.hero-banner{

    position:relative;

    width:100%;

    background-image:url("/uploads/banners/home_banner_img.png");

    min-height:720px;

    display:flex;

    align-items:center;

    background-repeat:no-repeat;

    background-size:cover;

    background-position:center center;

}

.hero-banner .container{

    position:relative;

    z-index:2;

}

.hero-content{

    width:50%;

}

.hero-content h1{

    font-size:40px;
    line-height: 1.27;
    color:#002A97;
    font-weight:700;
    margin-bottom:10px;

}

.hero-content h1 span{

    color:#FFA800;

}

.separator{

    width:80px;

    height:3px;

    background:#FFA800;

    margin:25px 0;

}

.hero-content p{

    font-size:20px;

    line-height:1.6;

    color:#002A97;

    margin-bottom:10px;

}

.about-btn-box{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.home-banner-bg {
    background-image: url("/uploads/banners/home_banner_img.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
/* home banner image footer feature */
/* ==============================
   HOME BANNER BOTTOM FEATURES
   ============================== */

.home-banner-features{
    position:relative;
    margin-top:-175px;
    z-index:9;
    padding-bottom:60px;
}

.home-banner-feature-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.home-banner-feature-card{
    background:#ffffffdb;
    border:1px solid #edf1f7;
    border-radius:18px;
    padding:10px;
    display:flex;
    align-items:flex-start;
    gap:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s ease;
}

.home-banner-feature-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.home-banner-feature-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:50%;
    background:#f4f7fc;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 25px;
}

.home-banner-feature-icon i{
    font-size:28px;
    color:#002A97;
}

.home-banner-feature-content h4{
    margin:0 0 12px;
    font-size:16px;
    font-weight:700;
    color:#002A97;
}

.home-banner-feature-content p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#666;
}

/* Tablet */
@media (max-width:991px){

    .home-banner-features{
        margin-top:30px;
    }

    .home-banner-feature-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width:576px){

    .home-banner-feature-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .home-banner-feature-card{
        padding:18px;
    }

    .home-banner-feature-icon{
        width:55px;
        height:55px;
        min-width:55px;
    }

    .home-banner-feature-icon i{
        font-size:22px;
    }

    .home-banner-feature-content h4{
        font-size:17px;
    }

    .home-banner-feature-content p{
        font-size:13px;
    }

}
