﻿

.about-premium {
    padding: 30px 0;
    overflow: hidden;
}

.about-image {
    overflow: hidden;
    border-radius: 18px;
}

    .about-image img {
        width: 100%;
        /* height: 461px;*/
        object-fit: cover;
        border-radius: 18px;
        display: block;
    }

.sub-title {
    color: #d39c1a;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-premium h2 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #072c73;
}

.intro-text {
    font-size: 17px;
    line-height: 1.9;
    color: #222;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin: 4px 0;
}

    .about-grid div {
        background: white;
        padding: 22px;
        text-align: center;
        border-radius: 18px;
        box-shadow: 0 10px 25px rgba(0,0,0,.08);
    }

    .about-grid h3 {
        font-size: 30px;
        margin-bottom: 8px;
        color: #072c73;
    }

.theme-btn {
    background: #072c73;
    color: #fff;
    padding: 15px 34px;
    border-radius: 50px;
    display: inline-block;
    text-decoration: none;
}

    .theme-btn:hover {
        background: #d39c1a;
        color: #fff;
    }


/* TABLET */

@media (max-width:991px) {
    .about-image img {
        height: 500px;
    }

    .about-premium h2 {
        font-size: 30px;
    }

    .about-grid {
        grid-template-columns: repeat(2,1fr);
    }
}



/* MOBILE */

@media (max-width:768px) {
    .about-premium {
        padding: 20px 0;
    }

    .about-image {
        margin-bottom: 5px;
    }

        .about-image img {
            height: auto;
            max-height: 420px;
            object-fit: contain;
        }

    .sub-title {
        font-size: 18px !important;
        text-align: center;
    }

    .about-premium h2 {
        font-size: 30px;
        text-align: center;
    }

    .intro-text {
        font-size: 15px;
        line-height: 1.8;
        text-align: justify;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

        .about-grid div {
            padding: 18px;
        }

        .about-grid h3 {
            font-size: 26px;
        }

    .theme-btn {
        width: 100%;
        text-align: center;
        padding: 14px;
    }
}



/* SMALL MOBILE */

@media (max-width:576px) {
    .about-image img {
        max-height: 300px;
    }

    .about-premium h2 {
        font-size: 17px;
    }

    .intro-text {
        font-size: 14px;
    }
}

.vision-mission {
    padding: 1px 0;
}

.section-space {
    margin-bottom: 30px;
}

.vm-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

    .vm-image img {
        width: 100%;
        height: 520px;
        object-fit: cover;
        border-radius: 26px;
        transition: .5s;
    }

    .vm-image:hover img {
        transform: scale(1.05);
    }

.img-title {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #072c73;
    color: white;
    padding: 18px 40px;
    font-size: 28px;
    font-weight: 700;
    border-radius: 0 30px 0 0;
}

.vm-sub {
    color: #d39c1a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 30px;
}

.vision-mission h2 {
    font-size: 30px;
    color: #072c73;
    margin: 20px 0;
    line-height: 1.3;
}

.vision-mission p {
    font-size: 17px;
    line-height: 2;
    color: #555;
}

.feature-box {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
    margin-top: 35px;
}

    .feature-box div {
        padding: 24px;
        background: #fff;
        border-radius: 18px;
        box-shadow: 0 10px 35px rgba(0,0,0,.08);
        text-align: center;
        font-weight: 600;
    }

@media(max - width:768px) {
    .vision-mission {
        padding: 70px 0;
    }

    .section-space {
        margin-bottom: 70px;
    }

    .vm-image img {
        height: 300px;
    }

    .vision-mission h2 {
        font-size: 25px;
    }

    .feature-box {
        grid-template-columns: 1fr;
    }

    .img-title {
        font-size: 20px;
        padding: 14px 26px;
    }
}

@media (max-width:480px) {

    .vision-mission {
        padding: 20px 0;
    }

    .section-space {
        margin-bottom: 20px;
    }

    .vm-image img {
        height: 200px;
    }

    .dtttttt {
        margin-top: 22px;
    }

    .vision-mission h2 {
        font-size: 20px;
        margin: 6px 0;
    }

    .feature-box {
        grid-template-columns: 1fr;
    }

    .img-title {
        font-size: 20px;
        padding: 14px 26px;
    }
}

/* ==========================
     WHY CHOOSE US
    ========================== */

.why-area {
    padding: 30px 0;
    background: #f7f9fc;
}

.why-sub {
    color: #d39c1a;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 2px;
}

.why-area h2 {
    font-size: 30px;
    color: #072c73;
    margin: 18px 0;
    line-height: 1.4;
}

.why-area p {
    color: #666;
    line-height: 2;
}

.why-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 34px;
    background: #072c73;
    color: white;
    border-radius: 10px;
    text-decoration: none;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
}

.why-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s;
    overflow: hidden;
}

    .why-card:hover {
        transform: translateY(-5px);
    }

    .why-card .icon {
        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #072c73;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        font-size: 22px;
    }

    .why-card h5 {
        color: #072c73;
        margin-bottom: 12px;
    }

    .why-card p {
        margin: 0;
        line-height: 1.8;
    }


/* TABLET */

@media(max - width:991px) {
    .why-area {
        padding: 60px 0;
    }

        .why-area h2 {
            font-size: 34px;
        }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}


/* MOBILE */

@media(max - width:768px) {
    .why-area {
        padding: 50px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 20px;
    }

    .why-card {
        padding: 22px;
        min-height: auto;
    }

    .why-area h2 {
        font-size: 28px;
    }

    .why-sub {
        font-size: 16px;
    }

    .why-btn {
        width: 100%;
        text-align: center;
    }
}


/* SMALL MOBILE */

@media(max-width:480px) {
    .why-card {
        padding: 18px;
    }

        .why-card .icon {
            width: 52px;
            height: 52px;
            font-size: 18px;
        }

        .why-card h5 {
            font-size: 18px;
        }

        .why-card p {
            font-size: 14px;
        }

    .why-area h2 {
        font-size: 20px;
        margin: 6px 0;
    }

    .dtt {
        margin-top: 22px;
    }
}



.service-area {
    padding: 40px 0;
    background: linear-gradient( 180deg, #ffffff, #f7f9fc);
}

.service-head span {
    color: #d39c1a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 30px;
}

.service-head h2 {
    font-size: 30px;
    color: #072c73;
    margin: 20px 0;
}

.service-head p {
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 17px;
    line-height: 1.9;
}

.service-card {
    background: #fff;
    padding: 20px 15px;
    border-radius: 28px;
    text-align: center;
    height: 100%;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .4s;
}

    .service-card:hover {
        transform: translateY(-12px);
    }

.service-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #072c73, #0f4fb9);
    margin-bottom: 25px;
}

    .service-icon i {
        color: white;
        font-size: 34px;
    }

.service-card h4 {
    color: #072c73;
    margin-bottom: 16px;
}

.service-card p {
    color: #666;
    line-height: 1.8;
}

.service-btn {
    background: #072c73;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
}

    .service-btn:hover {
        background: #d39c1a;
        color: white;
    }



@media(max - width:768px) {
    .service-area {
        padding: 70px 0;
    }

    .service-head h2 {
        font-size: 23px;
    }

    .service-card {
        padding: 30px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

        .service-icon i {
            font-size: 28px;
        }

    .service-btn {
        width: 100%;
    }
}



@media(max-width:480px) {

    .service-head h2 {
        font-size: 20px;
        margin: 6px 0;
    }

    .dtt {
        margin-top: -31px;
    }
}

.counter-area {
    padding: 20px 0;
    background: linear-gradient( 135deg, #072c7333, #0a4bb3);
    position: relative;
    overflow: hidden;
}

.counter-title {
    text-align: center;
    margin-bottom: 30px;
    color: white;
}

    .counter-title span {
        color: #d39c1a;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 30px;
    }

    .counter-title h2 {
        font-size: 30px;
        margin: 20px 0;
    }

    .counter-title p {
        max-width: 700px;
        margin: auto;
        line-height: 1.9;
        opacity: .9;
    }

.counter-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    padding: 25px 15px;
    border-radius: 26px;
    text-align: center;
    color: white;
    transition: .4s;
    height: 100%;
    border: 1px solid rgba(255,255,255,.15);
}

    .counter-card:hover {
        transform: translateY(-10px);
    }

.counter-icon {
    width: 60px;
    height: 60px;
    margin: auto;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

    .counter-icon i {
        font-size: 34px;
        color: #072c73;
    }

.counter-card h2 {
    font-size: 30px;
    color: #d39c1a;
    margin-bottom: 10px;
}

.counter-card h5 {
    margin: 0;
    font-size: 22px;
}



@media(max-width:768px) {
    .counter-area {
        padding: 9px 0;
    }

    .counter-title h2 {
        font-size: 26px;
        margin: 5px 0;
    }

    .counter-title {
        margin-bottom: 14px;
    }

    .counter-card {
        padding: 35px 25px;
    }

        .counter-card h2 {
            font-size: 40px;
        }

        .counter-card h5 {
            font-size: 18px;
        }
}

.gallery-area {
    padding: 40px 0;
    background: linear-gradient( 180deg, #ffffff, #f8fbff);
}

.gallery-head {
    max-width: 800px;
    margin: auto;
    margin-bottom: 20px;
}

    .gallery-head span {
        color: #d39c1a;
        font-weight: 700;
        letter-spacing: 2px;
        font-size: 30px;
    }

    .gallery-head h2 {
        font-size: 30px;
        color: #072c73;
        margin: 5px 0;
    }

    .gallery-head p {
        color: #666;
        line-height: 1.9;
    }

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    height: 320px;
    cursor: pointer;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;
        display: block;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
    }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to top, rgba(7,44,115,.9), transparent);
    display: flex;
    align-items: end;
    justify-content: center;
    opacity: 0;
    transition: .4s;
    padding-bottom: 35px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-btn {
    background: white;
    color: #072c73;
    padding: 14px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

.view-all-btn {
    display: inline-block;
    padding: 16px 42px;
    background: #072c73;
    color: white;
    border-radius: 50px;
    text-decoration: none;
}

    .view-all-btn:hover {
        background: #d39c1a;
        color: white;
    }

@media(max-width:768px) {
    .gallery-item {
        height: 200px;
    }

    .gallery-area {
        padding: 20px 0;
    }

    .gallery-head h2 {
        font-size: 26px;
        margin: 5px 0;
    }


    .gallery-btn,
    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}

@media(max-width:480px) {
    .gallery-item {
        height: 200px;
    }

    .gallery-area {
        padding: 14px 0;
    }

    .gallery-head h2 {
        font-size: 26px;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-btn,
    .view-all-btn {
        width: 100%;
        text-align: center;
    }
}

.cta-area {
    padding: 40px 0;
    background: linear-gradient( 135deg, #d39c1a42, #0c4eb7);
    color: white;
}

.cta-sub {
    color: #d39c1a;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 30px;
}

.cta-area h2 {
    font-size: 30px;
    margin: 20px 0;
    line-height: 1.3;
}

.cta-area p {
    line-height: 1.9;
    opacity: .95;
}

.contact-list {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .contact-list div {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 18px;
    }

    .contact-list i {
        width: 55px;
        height: 55px;
        background: white;
        color: #072c73;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

.cta-card {
    background: rgba(255,255,255,.12);
    padding: 45px;
    border-radius: 28px;
    backdrop-filter: blur(15px);
    text-align: center;
}

    .cta-card h3 {
        font-size: 34px;
        margin-bottom: 20px;
    }

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    justify-content: center;
}

.contact-btn,
.call-btn {
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
}

.contact-btn {
    background: #d39c1a;
    color: white;
}

.call-btn {
    background: white;
    color: #072c73;
}

/* ======================
       MOBILE VIEW FIX
    ====================== */

/* =========================
     CTA MOBILE OVERLAP FIX
    ========================= */

.cta-area {
    overflow: hidden;
}

    .cta-area .container {
        overflow: hidden;
    }

.contact-list,
.cta-card,
.cta-buttons {
    width: 100%;
    max-width: 100%;
}


/* TABLET */

@media (max-width:768px) {
    .cta-area {
        padding: 45px 0;
    }

    .cta-sub {
        font-size: 18px;
    }

    .cta-area h2 {
        font-size: 26px;
        line-height: 1.4;
        word-break: break-word;
    }

    .cta-area p {
        font-size: 15px;
        line-height: 1.8;
    }

    .contact-list {
        margin-top: 24px;
        gap: 16px;
    }

        .contact-list div {
            width: 100%;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            flex-wrap: nowrap;
            overflow: hidden;
        }

        .contact-list span {
            flex: 1;
            width: 100%;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .contact-list i {
            width: 40px;
            height: 40px;
            min-width: 40px;
            font-size: 14px;
        }

    .cta-card {
        width: 100%;
        margin-top: -34px;
        padding: 24px 18px;
        border-radius: 18px;
        overflow: hidden;
    }

        .cta-card h3 {
            font-size: 24px;
        }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .contact-btn,
    .call-btn {
        width: 100%;
        display: block;
        text-align: center;
        padding: 14px;
        box-sizing: border-box;
    }
}


/* SMALL MOBILE */

@media (max-width:480px) {
    .cta-area {
        padding: 10px 0;
    }

        .cta-area h2 {
            font-size: 22px;
        }

    .contact-list div {
        font-size: 14px;
    }

    .cta-card {
        padding: 12px 13px;
    }

        .cta-card h3 {
            font-size: 22px;
        }
}


/* DESKTOP */
.owl-carousel-item {
    height: 528px !important;
}

    .owl-carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* TABLET */

/* Tablet */
@media (max-width:768px) {
    .header-carousel .owl-carousel-item {
        height: 320px !important;
        min-height: 320px !important;
    }

        .header-carousel .owl-carousel-item img {
            height: 320px !important;
            width: 100%;
            object-fit: cover;
        }

    .header-carousel .carousel-inner {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        transform: translateY(-50%);
        padding: 0 20px;
    }

    .header-carousel .container {
        padding: 0 !important;
    }

    .header-carousel .col-lg-8 {
        max-width: 90% !important;
        flex: 0 0 90% !important;
    }

    .header-carousel h1 {
        font-size: 30px !important;
        line-height: 36px !important;
        margin-bottom: 10px !important;
    }

    .header-carousel p {
        font-size: 15px !important;
        line-height: 22px !important;
        margin-bottom: 15px !important;
    }

    .header-carousel .btn {
        padding: 8px 22px !important;
        font-size: 14px !important;
    }
}


/* Mobile */
@media (max-width:480px) {
    .header-carousel, .header-carousel .owl-stage-outer, .header-carousel .owl-stage, .header-carousel .owl-item, .header-carousel .owl-carousel-item {
        height: 300px !important;
        min-height: 300px !important;
    }

        .header-carousel .owl-carousel-item img {
            height: 300px !important;
            width: 100%;
            object-fit: cover;
        }
        /* Content ko center ki jagah thoda upar lao */
        .header-carousel .carousel-inner {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            transform: translateY(-50%);
            padding: 0 15px;
        }

        .header-carousel h1 {
            font-size: 22px !important;
            line-height: 28px !important;
            margin-bottom: 8px !important;
        }

        .header-carousel p {
            font-size: 13px !important;
            line-height: 18px !important;
            margin-bottom: 10px !important;
        }

        .header-carousel .btn {
            padding: 6px 16px !important;
            font-size: 12px !important;
        }
}


.client-review-card {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 20px;
    transition: .4s;
    height: 100%;
}

    .client-review-card:hover {
        transform: translateY(-8px);
        background: rgba(255,255,255,.18);
    }

.client-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #d39c1a;
    background: #fff;
    flex-shrink: 0;
}

.client-header h5 {
    margin: 0;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.client-header span {
    display: block;
    color: #07072a;
    font-size: 19px;
    font-weight: 500;
    margin-top: 3px;
}

.client-header small {
    display: block;
    color: #cb2525;
    opacity: .8;
    font-size: 18px;
    font-weight: 700;
    margin-top: 2px;
}


.enquiry-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(3px);
    display: flex;
    justify-content: center;
    align-items: center; /* center me rahe */
    padding: 15px;
    z-index: 99999;
    overflow-y: auto; /* popup bahar na nikle */
}

.enquiry-box {
    width: 100%;
    max-width: 524px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    position: relative;
    max-height: calc(100vh - 30px);
    overflow-y: auto;
    box-shadow: 0 25px 80px rgba(0,0,0,.20);
}

.close-popup {
    position: absolute;
    right: 18px;
    top: 18px;
    width: 42px;
    height: 42px;
    border: none;
    color: white;
    background: #072c73;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
}


.popup-head {
    text-align: center;
    margin-bottom: 12px;
}

    .popup-head span {
        color: #d39c1a;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .popup-head h2 {
        font-size: 27px;
        margin: 2px 0;
        color: #072c73;
    }

    .popup-head p {
        color: #777;
        margin: 0;
    }



.form-group {
    margin-bottom: 9px;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
        font-weight: 700;
        color: #072c73;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 7px 12px;
        border: 1px solid #ddd;
        border-radius: 14px;
        outline: none;
        font-size: 15px;
    }

    .form-group textarea {
        height: 60px;
        resize: none;
    }


        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #072c73;
            box-shadow: 0 0 0 3px rgba(7,44,115,.08);
        }


.enquiry-box button[type=button] {
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 50px;
    background: #072c73;
    color: white;
    font-size: 14px;
    font-weight: 700;
}


@media (max-width:768px) {
    .enquiry-popup {
        padding: 10px;
        align-items: center;
    }

    .enquiry-box {
        max-width: 100%;
        max-height: calc(100vh - 20px);
        padding: 18px;
        border-radius: 10px;
    }

    .popup-head h2 {
        font-size: 22px;
    }

    .form-group textarea {
        height: 80px;
    }
}


.listing-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

    .listing-card:hover {
        transform: translateY(-6px);
    }

/* Image container */
.listing-img-box {
    width: 100%;
    height: 220px;
    background: #f5f5f5; /* image na ho to bhi space rahe */
    display: flex;
    align-items: center;
    justify-content: center;
}

.listing-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.listing-content {
    padding: 20px;
}

    .listing-content h5 {
        color: #072c73;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .listing-content p {
        color: #666;
        font-size: 14px;
        min-height: 20px;
    }

.premium-services {
    position: relative;
    overflow: hidden;
    padding: 9px 0;
    background: linear-gradient(135deg,#02214d,#0b3d91);
}

    .premium-services::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        background: rgba(255,255,255,.05);
        border-radius: 50%;
        left: -150px;
        top: -150px;
    }

    .premium-services::after {
        content: '';
        position: absolute;
        width: 350px;
        height: 350px;
        background: #f4b40020;
        border-radius: 50%;
        right: -120px;
        bottom: -120px;
    }

.premium-heading {
    text-align: center;
    margin-bottom: 9px;
    position: relative;
    z-index: 2;
}

    .premium-heading span {
        display: inline-block;
        padding: 10px 25px;
        background: #f4b400;
        color: #fff;
        border-radius: 30px;
        font-size: 13px;
        letter-spacing: 2px;
        font-weight: 600;
    }

    .premium-heading h2 {
        margin: 20px 0;
        font-size: 30px;
        font-weight: 700;
        color: #fff;
    }

    .premium-heading p {
        max-width: 700px;
        margin: auto;
        color: #d5d5d5;
        font-size: 16px;
    }

.service-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap;*/
    position: relative;
    z-index: 2;
}

.connector {
    width: 70px;
    height: 3px;
    background: #f4b400;
    margin: 0 10px;
}

.service-item {
    width: 180px;
    text-align: center;
}

.circle {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 35px rgba(0,0,0,.25);
    transition: .4s;
    border: 5px solid rgba(255,255,255,.15);
}

    .circle i {
        font-size: 48px;
        color: #0b3d91;
    }

.service-item h5 {
    margin-top: 25px;
    color: #fff;
    font-weight: 600;
    line-height: 30px;
}

.circle:hover {
    transform: translateY(-12px) rotate(8deg);
    background: #f4b400;
}

    .circle:hover i {
        color: #fff;
    }

.trust-line {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

    .trust-line span {
        width: 120px;
        height: 2px;
        background: #f4b400;
    }

    .trust-line h4 {
        margin: 0;
        color: #fff;
        font-size: 28px;
        font-weight: 700;
        letter-spacing: 2px;
    }

    .trust-line i {
        color: #f4b400;
        margin-right: 10px;
    }

@media(max - width:991px) {
    .connector {
        display: none;
    }

    .service-wrapper {
        gap: 30px;
    }

    .service-item {
        width: 45%;
    }

    .premium-heading h2 {
        margin: 3px 0;
        font-size: 23px;
    }
}

@media(max-width:480px) {
    .service-item {
        width: 100%;
    }

    .trust-line {
        flex-direction: column;
    }

        .trust-line span {
            display: none;
        }

        .trust-line h4 {
            font-size: 15px;
            text-align: center;
        }

    .premium-heading h2 {
        margin: 3px 0;
        font-size: 23px;
    }

    .premium-heading p {
        font-size: 14px;
    }

    .circle {
        width: 75px;
        height: 75px;
    }

    .service-item h5 {
        margin-top: 7px;
    }
}
