@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    scrollbar-width: thin;
    scrollbar-color: #0093ff #f0f0f0;
}

/* Custom Creative Scrollbar */
/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    border-radius: 10px;
    border: 2px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 147, 255, 0.3);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
    box-shadow: 0 4px 8px rgba(89, 10, 120, 0.5);
    transform: scale(1.1);
}

::-webkit-scrollbar-thumb:active {
    background: linear-gradient(135deg, #0078cc 0%, #4a0870 100%);
}

::-webkit-scrollbar-corner {
    background: #f0f0f0;
}

/* Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #0093ff #f0f0f0;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-spinner {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #0093ff;
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-ring:nth-child(1) {
    animation-delay: -0.45s;
    border-top-color: #0093ff;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.3s;
    border-top-color: #590a78;
    width: 90px;
    height: 90px;
    top: 15px;
    left: 15px;
}

.spinner-ring:nth-child(3) {
    animation-delay: -0.15s;
    border-top-color: #0093ff;
    width: 60px;
    height: 60px;
    top: 30px;
    left: 30px;
}

.spinner-ring:nth-child(4) {
    animation-delay: 0s;
    border-top-color: #590a78;
    width: 30px;
    height: 30px;
    top: 45px;
    left: 45px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    color: #173467;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    position: relative;
}

.loader-text::after {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    margin-left: 5px;
    animation: blink 1s infinite;
    vertical-align: middle;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Container Width Increase */
.container {
    max-width: 100%;
}

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

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

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

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

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

/* Container Responsive Padding */
@media only screen and (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

a {
    text-decoration: none;
}

figure {
    margin: 0;
    padding: 0;
}

.btn:focus {
    outline: none;
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

a, button {
    display: inline-block;
}

    button:focus {
        outline: none;
        box-shadow: none;
    }

select {
    cursor: pointer;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/************************** Header css **************************/

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    transition: 0.5s;
    background: white;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
}

    .main-header .upper-list {
        padding: 4px 0;
        position: relative;
        transition: 0.5s;
        background-color: #173467;
    }

.upper-list .align-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.upper-list .box-1 .info-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

    .upper-list .box-1 .info-list li {
        padding: 0 7px;
    }

        .upper-list .box-1 .info-list li span {
            color: #ffffff;
            font-size: 16px;
            padding-right: 7px;
        }

        .upper-list .box-1 .info-list li a {
            color: #ffffff;
            font-size: 15px;
            font-weight: 400;
        }

.upper-list .box-2 .social-list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 0;
}

    .upper-list .box-2 .social-list li span {
        color: #ffffff;
        font-size: 16px;
        padding-right: 7px;
    }

    .upper-list .box-2 .social-list li {
        padding: 0 12px;
    }

        .upper-list .box-2 .social-list li a {
            color: #ffffff;
            font-size: 16px;
            font-weight: 400;
        }

.main-header.scroll .upper-list {
    margin-top: -32px;
}

.main-header.scroll {
    background: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

    .main-header.scroll .logo {
    }


.main-header .logo {
    transition: 0.5s;
}

.main-header .nav-item {
    padding: 0 12px;
}

    .main-header .nav-item .nav-link {
        font-size: 18px;
        font-weight: 500 !important;
        color: #000 !important;
        transition: 0.5s;
    }

        .main-header .nav-item .nav-link:hover,
        .main-header .nav-item .nav-link.active {
            color: #0093ff !important;
        }

.main-header .nav-btn {
    margin-left: 15px;
}

.main-header .nav-btn .book-btn {
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    border: 2px solid transparent;
    border-radius: 50px;
    padding: 12px 30px;
    color: #fff !important;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

    .main-header .nav-btn .book-btn:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
        color: #fff !important;
    }


.main-header.scroll .nav-btn .book-btn {
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    border: 2px solid transparent;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
}

    .main-header.scroll .nav-btn .book-btn:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
        color: #ffffff !important;
    }
/************************** Header css end **************************/
/*banner-slider*/
.banner-slider {
    margin-top: 0;
    position: relative;
}

/* Slider Navigation Arrows */
.banner-slider .slider-1 .slick-prev,
.banner-slider .slider-1 .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: #fff;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.banner-slider .slider-1 .slick-prev {
    left: 30px;
}

.banner-slider .slider-1 .slick-next {
    right: 30px;
}

.banner-slider .slider-1 .slick-prev:hover,
.banner-slider .slider-1 .slick-next:hover {
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 147, 255, 0.5);
}

.banner-slider .slider-1 .slick-prev::before,
.banner-slider .slider-1 .slick-next::before {
    content: '';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-size: 20px;
    color: #fff;
    position: absolute;
}

.banner-slider .slider-1 .slick-prev::before {
    content: '\f053';
    left: 50%;
    transform: translateX(-50%);
}

.banner-slider .slider-1 .slick-next::before {
    content: '\f054';
    right: 50%;
    transform: translateX(50%);
}

/* Slider Pagination Dots */
.banner-slider .slider-1 .slick-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 10;
}

.banner-slider .slider-1 .slick-dots li {
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
}

.banner-slider .slider-1 .slick-dots li button {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.banner-slider .slider-1 .slick-dots li button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.banner-slider .slider-1 .slick-dots li.slick-active button {
    border-color: #0093ff;
    background: transparent;
    width: 40px;
    border-radius: 20px;
}

.banner-slider .slider-1 .slick-dots li.slick-active button::before {
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    width: 32px;
    height: 6px;
    border-radius: 20px;
}

.slider-1 .item {
    position: relative;
}

    .slider-1 .item .img-box {
        position: relative;
    }

        .slider-1 .item .img-box::before {
            content: '';
            background: #000;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            opacity: 0.5;
        }

    .slider-1 .item .content-box {
        left: 50%;
        position: absolute;
        top: 40%;
        transform: translate(-50%);
        text-align: center;
    }

        .slider-1 .item .content-box h2 {
            color: #fff;
            font-weight: 500;
            margin-bottom: 10px;
            letter-spacing: 1px;
            font-size: 18px;
        }

        .slider-1 .item .content-box h3 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }


        .slider-1 .item .content-box h1 {
            color: #fff;
            /* font-size: 75px; */
            font-weight: 700;
            text-transform: uppercase;
            padding-bottom: 10px;
            font-family: 'Barlow', sans-serif;
            /* line-height: 74px; */
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .slider-1 .item .content-box .slider-badge {
            display: inline-block;
            background-color: rgba(0, 147, 255, 0.9);
            color: #fff;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease;
        }

        .slider-1 .item .content-box .slider-description {
            color: #fff;
            font-size: 18px;
            font-weight: 400;
            line-height: 28px;
            max-width: 700px;
            margin: 20px auto 30px;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease;
        }

        .slider-1 .item .content-box .slider-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 30px;
            animation: fadeInUp 1.2s ease;
        }

        .slider-1 .item .content-box .slider-btn {
            padding: 14px 35px;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .slider-1 .item .content-box .btn-primary {
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border: 2px solid transparent;
            color: #fff;
            box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
        }

        .slider-1 .item .content-box .btn-primary:hover {
            background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
            border: 2px solid transparent;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
        }

        .slider-1 .item .content-box .btn-outline {
            background-color: transparent;
            border: 2px solid rgba(255, 255, 255, 0.8);
            color: #fff;
            backdrop-filter: blur(10px);
        }

        .slider-1 .item .content-box .btn-outline:hover {
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border: 2px solid transparent;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slider-1 img {
    height: 100vh;
    object-fit: cover;
}

/* sec-tour */
.sec-tour {
    padding-bottom: 30px;
    padding-top: 30px;
}

    .sec-tour .inner-box {
        margin-top: -130px;
    }

    .sec-tour .tour-box {
        position: relative;
        overflow: hidden;
        transition: 0.5s;
        margin-bottom: 20px;
        /* border: 1px solid #fff; */
        box-shadow: rgba(149, 157, 165, 0.5) 0px 8px 24px;
    }

        .sec-tour .tour-box .img-box {
            position: relative;
        }

            .sec-tour .tour-box .img-box::before {
                content: '';
                background-color: #000;
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                opacity: 0.3;
                transition: 0.5s all ease;
            }

        .sec-tour .tour-box h5 {
            position: absolute;
            bottom: 26px;
            color: #fff;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            text-align: center;
            font-weight: 700;
            font-size: 24px;
            text-transform: uppercase;
        }

        .sec-tour .tour-box .img-box img {
            transition: 0.5s all ease;
        }

        .sec-tour .tour-box .img-box:hover img {
            transform: scale(1.1);
        }

    .sec-tour .order-link {
        padding: 50px 0;
        text-align: center;
    }

        .sec-tour .order-link a {
            font-weight: 500;
            font-size: 16px;
            color: #151515;
            transition: 0.5s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: fit-content;
            margin: 0 auto;
        }

            .sec-tour .order-link a i {
                padding-left: 5px;
                transition: 0.5s;
            }

            .sec-tour .order-link a:hover i {
                font-size: 24px;
            }

.sec-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #163a6a 0%, #590a78 50%, #0093ff 100%);
    position: relative;
    overflow: hidden;
}

.sec-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

    .sec-services .sec-title {
        text-align: center;
        padding-bottom: 50px;
        position: relative;
        z-index: 1;
    }

        .sec-services .sec-title h2 {
            font-size: 42px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

    .sec-services .white-box {
        background: rgba(255, 255, 255, 0.95);
        border: none;
        padding: 40px 30px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        min-height: 320px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .sec-services .white-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #0093ff, #590a78, #163a6a);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .sec-services .white-box:hover::before {
        transform: scaleX(1);
    }

        .sec-services .white-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            background: #fff;
        }

        .sec-services .service-card {
            position: relative;
        }

        .sec-services .service-icon-wrapper {
            position: relative;
            width: 100px;
            height: 100px;
            margin: 0 auto 25px;
        }

        .sec-services .service-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
            box-shadow: 0 10px 25px rgba(0, 147, 255, 0.3);
        }

        .sec-services .white-box:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 35px rgba(0, 147, 255, 0.5);
        }

        .sec-services .service-icon i {
            font-size: 42px;
            color: #fff;
            transition: all 0.4s ease;
        }

        .sec-services .white-box:hover .service-icon i {
            transform: scale(1.1);
        }

        .sec-services .icon-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: rgba(0, 147, 255, 0.1);
            border-radius: 50%;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .sec-services .white-box:hover .icon-bg {
            width: 140px;
            height: 140px;
            background: rgba(0, 147, 255, 0.2);
        }

        .sec-services .white-box h6 {
            font-weight: 700;
            color: #163a6a;
            font-size: 22px;
            margin: 0 0 15px 0;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .sec-services .white-box:hover h6 {
            color: #0093ff;
        }

        .sec-services .white-box .para {
            font-size: 15px;
            font-weight: 400;
            color: #555;
            line-height: 24px;
            margin: 0;
            text-align: center;
            flex-grow: 1;
            position: relative;
            z-index: 1;
        }

        .sec-services .service-number {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 60px;
            font-weight: 900;
            color: rgba(0, 147, 255, 0.1);
            line-height: 1;
            font-family: 'Barlow', sans-serif;
            transition: all 0.4s ease;
        }

        .sec-services .white-box:hover .service-number {
            color: rgba(0, 147, 255, 0.2);
            transform: scale(1.1);
        }

/* Services Main Section (Services Page) */
.services-main-section {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

    .services-main-section .section-header {
        margin-bottom: 60px;
    }

    .services-main-section .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .services-main-section .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .services-main-section .section-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 28px;
    }

    .services-main-section .service-item {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .services-main-section .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .services-main-section .service-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .services-main-section .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .services-main-section .service-item:hover .service-image img {
        transform: scale(1.15);
    }

    .services-main-section .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 147, 255, 0.8) 0%, rgba(89, 10, 120, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .services-main-section .service-item:hover .service-overlay {
        opacity: 1;
    }

    .services-main-section .service-icon-large {
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.2);
        border: 3px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.8);
        transition: transform 0.4s ease;
    }

    .services-main-section .service-item:hover .service-icon-large {
        transform: scale(1);
    }

    .services-main-section .service-icon-large i {
        font-size: 50px;
        color: #fff;
    }

    .services-main-section .service-content {
        padding: 35px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .services-main-section .service-icon-small {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.4s ease;
    }

    .services-main-section .service-item:hover .service-icon-small {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 25px rgba(0, 147, 255, 0.4);
    }

    .services-main-section .service-icon-small i {
        font-size: 32px;
        color: #fff;
    }

    .services-main-section .service-content h4 {
        font-size: 26px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .services-main-section .service-content p {
        font-size: 15px;
        line-height: 26px;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .services-main-section .service-features {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .services-main-section .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #555;
    }

    .services-main-section .service-features li i {
        color: #0093ff;
        font-size: 14px;
        flex-shrink: 0;
    }

    .services-main-section .service-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
        margin-top: auto;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
        border: none;
    }

    .services-main-section .service-link:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        color: #fff;
        gap: 15px;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .services-main-section .service-link i {
        transition: transform 0.3s ease;
    }

    .services-main-section .service-link:hover i {
        transform: translateX(5px);
    }

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

    .contact-main-section .section-header {
        margin-bottom: 60px;
    }

    .contact-main-section .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .contact-main-section .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .contact-main-section .section-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 28px;
    }

    .contact-main-section .contact-info-card {
        background: #fff;
        padding: 40px 30px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        height: 100%;
    }

    .contact-main-section .contact-info-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .contact-main-section .contact-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .contact-main-section .contact-info-card:hover .contact-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .contact-main-section .contact-icon i {
        font-size: 32px;
        color: #fff;
    }

    .contact-main-section .contact-info-card h5 {
        font-size: 22px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 10px;
    }

    .contact-main-section .contact-info-card p {
        font-size: 15px;
        color: #666;
        margin-bottom: 15px;
    }

    .contact-main-section .contact-info-card a {
        font-size: 16px;
        font-weight: 600;
        color: #0093ff;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .contact-main-section .contact-info-card a:hover {
        color: #590a78;
    }

    .contact-main-section .contact-form-wrapper {
        background: #fff;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .contact-main-section .form-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .contact-main-section .form-header h3 {
        font-size: 32px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 10px;
    }

    .contact-main-section .form-header p {
        font-size: 16px;
        color: #666;
    }

    .contact-main-section .contact-form .form-group {
        position: relative;
        margin-bottom: 25px;
    }

    .contact-main-section .contact-form label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #163a6a;
        margin-bottom: 8px;
    }

    .contact-main-section .contact-form .required {
        color: #e74c3c;
    }

    .contact-main-section .contact-form .form-control {
        width: 100%;
        padding: 15px 45px 15px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .contact-main-section .contact-form .form-control:focus {
        outline: none;
        border-color: #0093ff;
        box-shadow: 0 0 0 3px rgba(0, 147, 255, 0.1);
    }

    .contact-main-section .contact-form textarea.form-control {
        padding: 15px;
        resize: vertical;
        min-height: 120px;
    }

    .contact-main-section .contact-form .form-group {
        position: relative;
    }

    .contact-main-section .contact-form .form-icon {
        position: absolute;
        right: 15px;
        top: 50px;
        color: #0093ff;
        font-size: 18px;
        pointer-events: none;
        line-height: 1;
    }

    .contact-main-section .contact-form .textarea-icon {
        top: 50px;
    }

    .contact-main-section .contact-form label + .form-control {
        margin-top: 0;
    }

    .contact-main-section .form-submit {
        text-align: center;
        margin-top: 10px;
    }

    .contact-main-section .btn-submit {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        border: none;
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .contact-main-section .btn-submit:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .contact-main-section .btn-submit i {
        transition: transform 0.3s ease;
    }

/* Tracking Main Section */
.tracking-main-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

    .tracking-main-section .section-header {
        margin-bottom: 60px;
    }

    .tracking-main-section .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .tracking-main-section .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .tracking-main-section .section-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 28px;
    }

    .tracking-main-section .tracking-form-wrapper {
        background: #fff;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    }

    .tracking-main-section .tracking-form .form-group {
        position: relative;
        margin-bottom: 30px;
    }

    .tracking-main-section .tracking-form label {
        display: block;
        font-size: 16px;
        font-weight: 600;
        color: #163a6a;
        margin-bottom: 12px;
    }

    .tracking-main-section .tracking-form .input-wrapper {
        position: relative;
    }

    .tracking-main-section .tracking-form .form-control {
        width: 100%;
        padding: 18px 50px 18px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .tracking-main-section .tracking-form .form-control:focus {
        outline: none;
        border-color: #0093ff;
        box-shadow: 0 0 0 3px rgba(0, 147, 255, 0.1);
    }

    .tracking-main-section .tracking-form .form-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #0093ff;
        font-size: 20px;
        pointer-events: none;
    }

    .tracking-main-section .tracking-form .select-item {
        position: relative;
    }

    .tracking-main-section .tracking-form .form-select {
        width: 100%;
        padding: 18px 50px 18px 20px;
        border: 2px solid #e0e0e0;
        border-radius: 12px;
        font-size: 16px;
        transition: all 0.3s ease;
        background-color: #fff;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        cursor: pointer;
    }

    .tracking-main-section .tracking-form .form-select:focus {
        outline: none;
        border-color: #0093ff;
        box-shadow: 0 0 0 3px rgba(0, 147, 255, 0.1);
    }

    .tracking-main-section .tracking-form .select-icon {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        color: #0093ff;
        font-size: 14px;
        pointer-events: none;
    }

    .tracking-main-section .form-submit {
        text-align: center;
        margin-top: 20px;
    }

    .tracking-main-section .btn-submit {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        border: none;
        padding: 18px 50px;
        font-size: 18px;
        font-weight: 600;
        border-radius: 50px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
        text-transform: uppercase;
        letter-spacing: 0.5px;
        width: 100%;
    }

    .tracking-main-section .btn-submit:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .tracking-main-section .btn-submit i {
        transition: transform 0.3s ease;
    }

    .tracking-main-section .btn-submit:hover i {
        transform: translateX(5px);
    }

    .tracking-main-section .tracking-help {
        padding-top: 30px;
        border-top: 1px solid #e0e0e0;
    }

    .tracking-main-section .tracking-help p {
        font-size: 15px;
        color: #666;
        line-height: 24px;
        margin: 0;
    }

    .tracking-main-section .tracking-help a {
        color: #0093ff;
        font-weight: 600;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .tracking-main-section .tracking-help a:hover {
        color: #590a78;
        text-decoration: underline;
    }

    .contact-main-section .btn-submit:hover i {
        transform: translateX(5px);
    }

/* Our Services Section */
.our-services {
    padding: 100px 0;
    background-color: #ffffff;
    position: relative;
}

    .our-services .section-header {
        margin-bottom: 60px;
    }

    .our-services .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .our-services .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .our-services .section-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 28px;
    }

    .our-services .service-item {
        background: #fff;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .our-services .service-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    }

    .our-services .service-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .our-services .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .our-services .service-item:hover .service-image img {
        transform: scale(1.15);
    }

    .our-services .service-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 147, 255, 0.8) 0%, rgba(89, 10, 120, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .our-services .service-item:hover .service-overlay {
        opacity: 1;
    }

    .our-services .service-icon-large {
        width: 120px;
        height: 120px;
        background: rgba(255, 255, 255, 0.2);
        border: 3px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(0.8);
        transition: transform 0.4s ease;
    }

    .our-services .service-item:hover .service-icon-large {
        transform: scale(1);
    }

    .our-services .service-icon-large i {
        font-size: 50px;
        color: #fff;
    }

    .our-services .service-content {
        padding: 35px 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .our-services .service-icon-small {
        width: 70px;
        height: 70px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: all 0.4s ease;
    }

    .our-services .service-item:hover .service-icon-small {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 25px rgba(0, 147, 255, 0.4);
    }

    .our-services .service-icon-small i {
        font-size: 32px;
        color: #fff;
    }

    .our-services .service-content h4 {
        font-size: 26px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .our-services .service-content p {
        font-size: 15px;
        line-height: 26px;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .our-services .service-features {
        list-style: none;
        padding: 0;
        margin: 0 0 25px 0;
    }

    .our-services .service-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        font-size: 15px;
        color: #555;
    }

    .our-services .service-features li i {
        color: #0093ff;
        font-size: 14px;
        flex-shrink: 0;
    }

    .our-services .service-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        padding: 12px 30px;
        border-radius: 50px;
        transition: all 0.3s ease;
        margin-top: auto;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
        border: none;
    }

    .our-services .service-link:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        color: #fff;
        gap: 15px;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .our-services .service-link i {
        transition: transform 0.3s ease;
    }

    .our-services .service-link:hover i {
        transform: translateX(5px);
    }

/* Quote Section */
.quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

    .quote-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="2" fill="rgba(0,147,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
        opacity: 0.5;
    }

    .quote-section .quote-header {
        position: relative;
        z-index: 1;
    }

    .quote-section .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .quote-section .quote-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .quote-section .quote-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .quote-section .quote-form-wrapper {
        background: #fff;
        padding: 50px 40px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        position: relative;
        z-index: 1;
    }

    .quote-section .quote-form .form-group {
        position: relative;
        margin-bottom: 25px;
    }

    .quote-section .quote-form label {
        display: block;
        font-size: 15px;
        font-weight: 600;
        color: #163a6a;
        margin-bottom: 8px;
    }

    .quote-section .quote-form .required {
        color: #e74c3c;
    }

    .quote-section .quote-form .form-control {
        width: 100%;
        padding: 15px 45px 15px 15px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-size: 15px;
        transition: all 0.3s ease;
        background-color: #fff;
    }

    .quote-section .quote-form .form-control:focus {
        outline: none;
        border-color: #0093ff;
        box-shadow: 0 0 0 3px rgba(0, 147, 255, 0.1);
    }

    .quote-section .quote-form .form-control::placeholder {
        color: #999;
    }

    .quote-section .quote-form textarea.form-control {
        resize: vertical;
        min-height: 120px;
    }

    .quote-section .quote-form .form-group {
        position: relative;
    }

    .quote-section .quote-form .form-icon {
        position: absolute;
        right: 15px;
        top: 50px;
        color: #0093ff;
        font-size: 18px;
        pointer-events: none;
        line-height: 1;
    }

    .quote-section .quote-form .textarea-icon {
        top: 50px;
    }

    .quote-section .quote-form .form-group:focus-within .form-icon {
        color: #590a78;
    }

    .quote-section .form-submit {
        text-align: center;
        margin-top: 10px;
    }

    .quote-section .btn-submit {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        border: none;
        padding: 16px 50px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
    }

    .quote-section .btn-submit:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .quote-section .btn-submit:active {
        transform: translateY(0);
    }

    .quote-section .btn-submit i {
        transition: transform 0.3s ease;
    }

    .quote-section .btn-submit:hover i {
        transform: translateX(5px);
    }

/* Home About Section */
.home-about {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

    .home-about .about-content {
        padding-right: 30px;
    }

    .home-about .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .home-about .about-content h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        line-height: 1.2;
        font-family: 'Barlow', sans-serif;
    }

    .home-about .about-content h3 {
        font-size: 24px;
        font-weight: 600;
        color: #0093ff;
        margin-bottom: 25px;
    }

    .home-about .about-description {
        font-size: 16px;
        line-height: 28px;
        color: #555;
        margin-bottom: 20px;
    }

    .home-about .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin: 30px 0;
    }

    .home-about .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .home-about .feature-item i {
        color: #0093ff;
        font-size: 20px;
        flex-shrink: 0;
    }

    .home-about .feature-item span {
        font-size: 16px;
        font-weight: 500;
        color: #333;
    }

    .home-about .about-buttons {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .home-about .about-buttons .btn {
        padding: 14px 35px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        text-decoration: none;
        display: inline-block;
    }

    .home-about .about-buttons .btn-primary {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        border: 2px solid transparent;
        color: #fff;
        box-shadow: 0 4px 15px rgba(0, 147, 255, 0.3);
    }

    .home-about .about-buttons .btn-primary:hover {
        background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
        border: 2px solid transparent;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .home-about .about-buttons .btn-outline-secondary {
        background-color: transparent;
        border: 2px solid #0093ff;
        color: #0093ff;
    }

    .home-about .about-buttons .btn-outline-secondary:hover {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        border: 2px solid transparent;
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 147, 255, 0.4);
    }

    .home-about .about-image {
        position: relative;
        padding-left: 30px;
    }

    .home-about .image-wrapper {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .home-about .image-wrapper img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

    .home-about .image-wrapper:hover img {
        transform: scale(1.05);
    }

    .home-about .image-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
        padding: 30px;
    }

    .home-about .stats-box {
        display: flex;
        gap: 30px;
        justify-content: center;
    }

    .home-about .stat-item {
        text-align: center;
    }

    .home-about .stat-item h3 {
        font-size: 48px;
        font-weight: 700;
        color: #fff;
        margin: 0;
        line-height: 1;
        font-family: 'Barlow', sans-serif;
    }

    .home-about .stat-item p {
        font-size: 16px;
        color: rgba(255, 255, 255, 0.9);
        margin: 5px 0 0 0;
        font-weight: 500;
    }

/* About Page Main Section */
.about-main-section {
    padding: 100px 0;
    background-color: #fff;
}

    .about-main-section .about-content-main {
        padding: 20px 0;
    }

    .about-main-section .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .about-main-section .about-content-main h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        line-height: 1.2;
        font-family: 'Barlow', sans-serif;
    }

    .about-main-section .about-content-main h3 {
        font-size: 24px;
        font-weight: 600;
        color: #0093ff;
        margin-bottom: 25px;
    }

    .about-main-section .about-text {
        font-size: 16px;
        line-height: 28px;
        color: #555;
        margin-bottom: 20px;
    }

    .about-main-section .about-stats {
        display: flex;
        gap: 30px;
        margin: 40px 0;
        flex-wrap: wrap;
    }

    .about-main-section .stat-box {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 25px 20px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .about-main-section .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0, 147, 255, 0.2);
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    }

    .about-main-section .stat-box:hover .stat-number,
    .about-main-section .stat-box:hover .stat-label {
        color: #fff;
    }

    .about-main-section .stat-number {
        font-size: 48px;
        font-weight: 700;
        color: #0093ff;
        margin-bottom: 10px;
        line-height: 1;
        transition: color 0.3s ease;
    }

    .about-main-section .stat-label {
        font-size: 16px;
        color: #666;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .about-main-section .about-features-list {
        margin-top: 30px;
    }

    .about-main-section .feature-box {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        padding: 20px;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: all 0.3s ease;
    }

    .about-main-section .feature-box:hover {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        transform: translateX(10px);
        box-shadow: 0 5px 20px rgba(0, 147, 255, 0.3);
    }

    .about-main-section .feature-box:hover .feature-icon i,
    .about-main-section .feature-box:hover .feature-text h5,
    .about-main-section .feature-box:hover .feature-text p {
        color: #fff;
    }

    .about-main-section .feature-icon {
        flex-shrink: 0;
    }

    .about-main-section .feature-icon i {
        font-size: 28px;
        color: #0093ff;
        transition: color 0.3s ease;
    }

    .about-main-section .feature-text h5 {
        font-size: 18px;
        font-weight: 600;
        color: #163a6a;
        margin-bottom: 8px;
        transition: color 0.3s ease;
    }

    .about-main-section .feature-text p {
        font-size: 15px;
        color: #666;
        margin: 0;
        line-height: 24px;
        transition: color 0.3s ease;
    }

    .about-main-section .about-image-main {
        position: relative;
        padding: 20px;
    }

    .about-main-section .image-wrapper-main {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .about-main-section .image-wrapper-main img {
        width: 100%;
        height: auto;
        transition: transform 0.5s ease;
    }

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

    .about-main-section .image-badge {
        position: absolute;
        top: 30px;
        right: 30px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 12px 20px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        font-weight: 600;
        box-shadow: 0 5px 20px rgba(0, 147, 255, 0.4);
        z-index: 2;
    }

    .about-main-section .image-badge i {
        font-size: 18px;
    }


.sec-about {
    padding: 80px 0;
}

    .sec-about .img-box img {
        height: 100%;
        object-fit: cover;
    }

    .sec-about .content-box {
        background: #173467;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 40px 50px;
    }

        .sec-about .content-box h3 {
            font-size: 15px;
            color: #8aa7da;
            font-weight: 500;
        }

        .sec-about .content-box h2 {
            font-size: 38px;
            color: #fff;
            font-weight: 600;
            margin: 10px 0 0;
            text-transform: capitalize;
        }

        .sec-about .content-box .para {
            color: #fff;
            font-size: 16px;
            padding: 8px 0;
            margin: 0;
        }

    .sec-about .more-btn {
        background: #e5716b;
        border: 1px solid #e5716b;
        padding: 10px 20px;
        color: #fff;
        margin-top: 15px;
    }

    .sec-about .content-box-2 {
        background: #e5716b;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 30px 50px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

        .sec-about .content-box-2 h3 {
            font-size: 15px;
            color: #ffffff;
            font-weight: 500;
        }

        .sec-about .content-box-2 h2 {
            font-size: 38px;
            color: #fff;
            font-weight: 600;
            margin: 6px 0;
            text-transform: capitalize;
        }

        .sec-about .content-box-2 .para {
            color: #fff;
            font-size: 16px;
            padding: 10px 0;
            margin: 0;
        }

        .sec-about .content-box-2 .more-btn {
            background-color: #173467;
            border: 1px solid #173467;
        }

.news-sec {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
}

    .news-sec .section-header {
        margin-bottom: 60px;
    }

    .news-sec .section-badge {
        display: inline-block;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }

    .news-sec .section-header h2 {
        font-size: 42px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        font-family: 'Barlow', sans-serif;
    }

    .news-sec .section-subtitle {
        font-size: 18px;
        color: #666;
        max-width: 700px;
        margin: 0 auto;
        line-height: 28px;
    }

    .news-sec .blog-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .news-sec .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .news-sec .blog-image {
        position: relative;
        height: 280px;
        overflow: hidden;
    }

    .news-sec .blog-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .news-sec .blog-card:hover .blog-image img {
        transform: scale(1.15);
    }

    .news-sec .blog-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(0, 147, 255, 0.8) 0%, rgba(89, 10, 120, 0.8) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .news-sec .blog-card:hover .blog-overlay {
        opacity: 1;
    }

    .news-sec .read-more-btn {
        width: 60px;
        height: 60px;
        background: rgba(255, 255, 255, 0.2);
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .news-sec .read-more-btn:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(1.1) rotate(90deg);
    }

    .news-sec .blog-tag {
        position: absolute;
        top: 20px;
        left: 20px;
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        padding: 6px 15px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        z-index: 2;
    }

    .news-sec .blog-content {
        padding: 30px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .news-sec .blog-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        flex-wrap: wrap;
    }

    .news-sec .blog-date,
    .news-sec .blog-author {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 14px;
        color: #666;
    }

    .news-sec .blog-date i,
    .news-sec .blog-author i {
        color: #0093ff;
        font-size: 14px;
    }

    .news-sec .blog-content h3 {
        font-size: 22px;
        font-weight: 700;
        color: #163a6a;
        margin-bottom: 15px;
        line-height: 1.4;
        font-family: 'Barlow', sans-serif;
    }

    .news-sec .blog-content h3 a {
        color: #163a6a;
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .news-sec .blog-content h3 a:hover {
        color: #0093ff;
    }

    .news-sec .blog-excerpt {
        font-size: 15px;
        line-height: 26px;
        color: #666;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .news-sec .blog-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: #0093ff;
        font-size: 16px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: auto;
    }

    .news-sec .blog-link:hover {
        color: #590a78;
        gap: 15px;
    }

    .news-sec .blog-link i {
        transition: transform 0.3s ease;
    }

    .news-sec .blog-link:hover i {
        transform: translateX(5px);
    }

    .news-sec .btn-view-all {
        background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
        color: #fff;
        border: none;
        padding: 16px 40px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 8px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 147, 255, 0.3);
    }

    .news-sec .btn-view-all:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(0, 147, 255, 0.4);
        color: #fff;
        gap: 15px;
    }

    .news-sec .btn-view-all i {
        transition: transform 0.3s ease;
    }

    .news-sec .btn-view-all:hover i {
        transform: translateX(5px);
    }

.sec-contact {
    background-image: url('../images/contact-banner.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 110px 0;
}

    .sec-contact .contact-box {
        padding: 40px 30px;
        border: 1px solid #e1e1e1;
        border-radius: 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        background: #fff;
    }

        .sec-contact .contact-box h4 {
            font-size: 30px;
            color: #000;
            font-weight: 700;
        }

        .sec-contact .contact-box .para {
            padding: 14px 0;
            font-size: 18px;
            font-weight: 300;
        }

        .sec-contact .contact-box h6 {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

            .sec-contact .contact-box h6 a {
                color: #7e3da9;
                font-weight: 500;
            }

        .sec-contact .contact-box .input-box {
            padding: 8px 0;
        }

            .sec-contact .contact-box .input-box .c-input {
                background: #e7e7e7;
                border: 1px solid #e7e7e7;
                padding: 13px 15px;
                font-size: 16px;
                color: #000;
                border-radius: 0;
            }

        .sec-contact .contact-box .submit-btn {
            margin-top: 10px;
        }

            .sec-contact .contact-box .submit-btn a {
                background: #ff584f;
                width: 100%;
                text-align: center;
                padding: 15px;
                font-size: 18px;
                color: #fff;
            }

.footer-bg {
    background: linear-gradient(135deg, #173467 0%, #0d1f3d 50%, #173467 100%);
    background-size: 200% 200%;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 147, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(89, 10, 120, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 147, 255, 0.5) 50%, transparent 100%);
    z-index: 1;
}

.footer-bg > .container {
    position: relative;
    z-index: 1;
}

    .footer-bg .upper-text h5 {
        font-size: 17px;
        font-weight: 500;
        color: #fff;
        line-height: 28px;
    }

    .footer-bg .search-fleid .search-input {
        background-color: #fff;
        border: none;
        border-radius: 8px;
        padding: 15px;
    }

    .footer-bg .search-fleid .input-group-text {
        background-color: #1967d3;
        color: #fff;
        padding: 15px;
        border: none;
        border-radius: 8px;
        font-size: 14px;
        font-weight: bold;
    }

    .footer-bg .search-fleid .search-input::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input::-moz-placeholder {
        /* Firefox 19+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-ms-input-placeholder {
        /* IE 10+ */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .search-fleid .search-input:-moz-placeholder {
        /* Firefox 18- */

        font-weight: 500;
        font-size: 12px;
        color: #828282;
        padding: 0 0 0 10px;
    }

    .footer-bg .footer-upper {
        border-bottom: 2px solid #c4cdde;
        padding: 0 0 30px 0;
    }

    .footer-bg .footer-middle {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding: 40px 0 60px;
        position: relative;
    }

        .footer-bg .footer-middle .para {
            font-weight: 500;
            font-size: 14px;
            color: #ffffff;
            margin-top: 20px;
            padding: 0 7px 7px 0;
            line-height: 24px;
        }

        .footer-bg .footer-middle .para-2 {
            font-weight: 500;
            font-size: 14px;
            color: #fff;
        }

        .footer-bg .footer-middle h4 {
            font-weight: 700;
            font-size: 18px;
            color: #fff;
            /* margin-top: 60px; */
            text-transform: uppercase;
        }

        .footer-bg .footer-middle .footer-list {
            margin-top: 15px;
            margin-bottom: 20px;
        }

            .footer-bg .footer-middle .footer-list li {
                margin-bottom: 10px;
            }

                .footer-bg .footer-middle .footer-list li a {
                    font-weight: 500;
                    font-size: 15px;
                    color: #fff;
                    transition: 0.5s;
                }

                    .footer-bg .footer-middle .footer-list li a i {
                        font-weight: 700;
                        margin-right: 6px;
                        font-size: 15px;
                    }

                    .footer-bg .footer-middle .footer-list li a:hover {
                        color: #0093ff;
                    }

    .footer-bg .footer-lower {
        text-align: center;
        padding: 20px 0;
        position: relative;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-bg .footer-lower::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 147, 255, 0.3) 50%, transparent 100%);
    }
  
        .footer-bg .footer-lower .para {
            font-weight: 500;
            font-size: 13px;
            color: #fff;
        }

    .footer-bg .footer-middle .email-field .email-input {
        background-color: transparent;
        border: 2px solid #fff;
        border-radius: 0;
        padding: 12px 15px;
        margin-top: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #fff;
    }

    .footer-bg .footer-middle .email-field .email-btn {
        background-color: #ffffff;
        border-radius: 0;
        padding: 10px 32px;
        border: 2px solid #ffffff;
        color: #322081;
        font-size: 14px;
        font-weight: 600;
        transition: 0.5s;
        width: 100%;
        margin-top: 8px;
    }

        .footer-bg .footer-middle .email-field .email-btn:hover {
            background-color: transparent;
            border: 2px solid #ffffff;
        }

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 147, 255, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

.scroll-to-top:hover {
    background: linear-gradient(135deg, #590a78 0%, #0093ff 100%);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 147, 255, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-3px) scale(1.05);
}

.scroll-to-top i {
    transition: transform 0.3s ease;
}

.scroll-to-top:hover i {
    transform: translateY(-2px);
}

/* Scroll to Top Button - Responsive */
@media only screen and (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 480px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
        font-size: 14px;
    }
}

.footer-logo {
    width: 178px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(1%) hue-rotate(153deg) brightness(103%) contrast(101%);
}

/* Footer Social Media Icons */
.footer-social .social-list-footer a:hover {
    background-color: #0093ff !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 147, 255, 0.3);
}

.footer-social .social-list-footer a {
    text-decoration: none;
}

.footer-social .social-list-footer a i {
    font-size: 16px;
}

/* Footer List Improvements */
.footer-bg .footer-middle .footer-list li {
    margin-bottom: 10px;
}

.footer-bg .footer-middle .footer-list li a {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-bg .footer-middle .footer-list li a span {
    flex: 1;
    word-wrap: break-word;
}

.footer-bg .footer-middle .footer-list li a i {
    flex-shrink: 0;
}


/**************************footer end **************************/

.inner-banner {
    background: url(../images/inner-banner.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 250px 0 100px;
    z-index: 1;
    display: flex;
    align-items: center;
}

    .inner-banner::before {
        content: '';
        background: linear-gradient(135deg, rgba(0, 147, 255, 0.8) 0%, rgba(89, 10, 120, 0.8) 100%);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.9;
    }

    .inner-banner .content-box {
        position: relative;
        z-index: 2;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 40px 20px;
    }

        .inner-banner .content-box h2 {
            color: #ffffff;
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            font-family: 'Barlow', sans-serif;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .inner-banner .content-box ul {
            display: flex;
            align-items: center;
            justify-content: center;
            list-style: none;
            flex-wrap: wrap;
            gap: 5px;
        }

            .inner-banner .content-box ul li {
                padding: 0 8px;
                display: flex;
                align-items: center;
            }

                .inner-banner .content-box ul li:not(:last-child)::after {
                    content: '/';
                    color: #ffffff;
                    margin-left: 8px;
                    font-weight: 500;
                }

                .inner-banner .content-box ul li a {
                    color: #ffffff;
                    font-weight: 500;
                    font-size: 16px;
                    transition: color 0.3s ease;
                    text-decoration: none;
                }

                .inner-banner .content-box ul li a:hover {
                    color: #0093ff;
                }

                .inner-banner .content-box ul li:last-child a {
                    color: #0093ff;
                    font-weight: 600;
                }

.sec-inner-services {
    padding: 60px 0;
}

    .sec-inner-services .inner-box {
        padding: 22px 0;
    }

        .sec-inner-services .inner-box .content-box h3 {
            font-family: 'Barlow', sans-serif;
            color: #000;
            font-size: 36px;
            font-weight: 700;
            padding-bottom: 0px;
            margin: 0;
        }

        .sec-inner-services .inner-box .content-box .para {
            font-size: 16px;
            margin: 0;
            padding: 5px 0;
        }

        .sec-inner-services .inner-box .content-box ul {
        }

            .sec-inner-services .inner-box .content-box ul li {
                font-size: 16px;
                margin: 0;
                padding: 3px 0;
            }

                .sec-inner-services .inner-box .content-box ul li span {
                    color: #000;
                    font-size: 17px;
                    font-weight: 700;
                }

        .sec-inner-services .inner-box .img-box img {
            border-radius: 10px;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        }

.sec-professional {
    padding: 60px 0;
    background-image: url('../images/prof-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
}

.sec-express {
    padding: 70px 0 70px;
}

    .sec-express .sec-title {
        padding-bottom: 10px;
    }

        .sec-express .sec-title h2 {
            color: #590a78;
            font-size: 40px;
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Barlow', sans-serif;
            line-height: 45px;
            margin: 0;
        }

        .sec-express .sec-title .para {
            color: #000;
            font-size: 16px;
            padding: 10px 0;
            margin: 0;
        }

    .sec-express .card-box {
        background-color: #fff;
        padding: 20px 30px 80px;
        border-radius: 15px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        border: 2px solid #590a78;
    }

    .sec-express .express-box {
    }

        .sec-express .express-box .icon-box {
            background-color: #590a78;
            width: fit-content;
            text-align: center;
            padding: 20px;
            border-radius: 15px;
        }

            .sec-express .express-box .icon-box .express-icon {
                width: 100px;
                height: 100px;
                object-fit: contain;
            }

        .sec-express .express-box .content-box {
            margin-top: 20px;
        }

            .sec-express .express-box .content-box h4 {
                color: #590a78;
                font-size: 22px;
                font-weight: 700;
                text-transform: uppercase;
                line-height: 30px;
                margin: 0;
                padding-bottom: 10px;
            }

            .sec-express .express-box .content-box .para {
                margin: 0;
                font-size: 16px;
            }

    .sec-express .express-slider .slick-prev {
        position: absolute;
        bottom: -60px;
        left: 0;
        background-color: #590a78;
        border: 1px solid #590a78;
        color: #fff;
        font-size: 0;
        width: 40px;
        height: 40px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sec-express .express-slider .slick-prev::before {
            content: '\f104';
            font-family: "Font Awesome 6 Pro";
            position: absolute;
            font-size: 20px;
        }

    .sec-express .express-slider .slick-next {
        position: absolute;
        bottom: -60px;
        left: 8%;
        background-color: #590a78;
        border: 1px solid #590a78;
        color: #fff;
        font-size: 0;
        width: 40px;
        height: 40px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .sec-express .express-slider .slick-next::before {
            content: '\f105';
            font-family: "Font Awesome 6 Pro";
            position: absolute;
            font-size: 20px;
        }

.our-fleet {
    background-image: url('../images/fleet-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    width: 100%;
    padding: 50px 0;
}

    .our-fleet::before {
        content: '';
        background-color: #173467;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        opacity: 0.7;
    }

    .our-fleet .sec-title {
        position: relative;
        text-align: center;
        padding-bottom: 30px;
    }

        .our-fleet .sec-title h2 {
            color: #ffffff;
            font-size: 45px;
            font-weight: 700;
            text-transform: uppercase;
            font-family: 'Barlow', sans-serif;
            line-height: 45px;
            margin: 0;
        }

        .our-fleet .sec-title .para {
            color: #fff;
            font-size: 16px;
            padding: 10px 0;
            margin: 0;
        }

    .our-fleet .fleet-box {
        position: relative;
        background-color: #f3f3f3;
        padding: 20px 30px;
        margin-bottom: 15px;
        border-radius: 15px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    }

        .our-fleet .fleet-box .upper-box {
            display: flex;
            position: relative;
            align-items: center;
            justify-content: flex-start;
        }

            .our-fleet .fleet-box .upper-box .icon-box {
                background-color: #590a78;
                width: 100px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                padding: 10px;
            }

                .our-fleet .fleet-box .upper-box .icon-box .fleet-icon {
                    width: 80px;
                    height: 80px;
                    object-fit: contain;
                }

            .our-fleet .fleet-box .upper-box .heading-box {
                padding-left: 10px;
            }

                .our-fleet .fleet-box .upper-box .heading-box h6 {
                    color: #590a78;
                    font-size: 17px;
                    font-weight: 700;
                    text-transform: uppercase;
                    font-family: 'Barlow', sans-serif;
                    line-height: 20px;
                    margin: 0;
                }

        .our-fleet .fleet-box .lower-list {
            margin: 0;
            padding-top: 15px;
        }

            .our-fleet .fleet-box .lower-list li {
                padding: 6px 0;
                color: #000;
                font-size: 16px;
                border-top: 1px solid #590a78;
            }

                .our-fleet .fleet-box .lower-list li i {
                    padding-right: 5px;
                    color: #590a78;
                }
/* 
 font-family: 'Barlow', sans-serif;
    font-family: 'Roboto', sans-serif;
*/
/************************** media-query **************************/
@media only screen and (min-width: 1921px) and (max-width: 7368px) {
}

@media only screen and (min-width: 1600px) and (max-width: 1920px) {
}

@media only screen and (min-width: 1445px) and (max-width: 1599px) {
}

@media only screen and (min-width: 1366px) and (max-width: 1444px) {
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .sec-services .white-box {
        padding: 31px 19px;
        margin-bottom: 15px;
        min-height: 200px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .slider-1 .item .content-box h1 {
        font-size: 55px;
    }

    .sec-about .content-box-2 .para {
        color: #000;
        font-size: 16px;
        padding: 5px 0;
    }

    .sec-about .content-box .para {
        color: #fff;
        font-size: 16px;
        padding: 8px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    body {
        overflow-x: hidden;
    }

    /* Page Loader - Tablet */
    .loader-spinner {
        width: 100px;
        height: 100px;
    }

    .spinner-ring:nth-child(2) {
        width: 75px;
        height: 75px;
        top: 12.5px;
        left: 12.5px;
    }

    .spinner-ring:nth-child(3) {
        width: 50px;
        height: 50px;
        top: 25px;
        left: 25px;
    }

    .spinner-ring:nth-child(4) {
        width: 25px;
        height: 25px;
        top: 37.5px;
        left: 37.5px;
    }

    .loader-text {
        font-size: 16px;
    }

    .main-header {
        background: #fff;
    }

        .main-header .nav-item .nav-link {
            color: #000 !important;
        }

        .main-header .nav-btn .book-btn {
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border: 2px solid transparent;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 14px;
            display: inline-block;
        }

    .main-header .upper-list {
        padding: 6px 0;
    }

    .upper-list .align-box {
        flex-wrap: wrap;
        gap: 8px;
        padding: 8px 15px;
    }

    .upper-list .box-1 .info-list {
        flex-wrap: wrap;
        gap: 10px;
    }

    .upper-list .box-1 .info-list li {
        padding: 0 5px;
    }

    .upper-list .box-1 .info-list li a {
        font-size: 13px;
        color: #ffffff;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 13px;
        padding-right: 6px;
        color: #ffffff;
    }

    .upper-list .box-2 .social-list li {
        padding: 0 8px;
    }

    .upper-list .box-2 .social-list li a {
        color: #ffffff;
        font-size: 15px;
    }

    .main-header.scroll .upper-list {
        margin-top: -37px;
    }

    .main-header .logo {
        width: 160px;
        filter: unset;
    }

    .upper-list .align-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .banner-slider {
        margin-top: 150px;
    }

    .banner-slider .slider-1 .slick-prev {
        left: 15px;
        width: 50px;
        height: 50px;
    }

    .banner-slider .slider-1 .slick-next {
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .banner-slider .slider-1 .slick-prev::before,
    .banner-slider .slider-1 .slick-next::before {
        font-size: 18px;
    }

    .banner-slider .slider-1 .slick-dots {
        bottom: 30px;
        gap: 10px;
    }

    .banner-slider .slider-1 .slick-dots li button {
        width: 10px;
        height: 10px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button {
        width: 35px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button::before {
        width: 28px;
    }

    .slider-1 .item .img-box::before {
        opacity: 0.4;
    }

    .footer-bg {
        overflow-x: hidden;
    }

    .slider-1 .item .content-box {
        top: 35%;
        width: 100%;
        padding: 0 20px;
    }

    .slider-1 .item .content-box h1 {
        font-size: 48px;
        padding-bottom: 8px;
        line-height: 52px;
        margin-bottom: 12px;
    }

    .slider-1 .item .content-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .slider-1 .item .content-box .slider-badge {
        font-size: 12px;
        padding: 6px 18px;
        margin-bottom: 15px;
    }

    .slider-1 .item .content-box .slider-description {
        font-size: 15px;
        line-height: 24px;
        margin: 15px auto 20px;
        padding: 0 20px;
    }

    .slider-1 .item .content-box .slider-buttons {
        gap: 12px;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .slider-1 .item .content-box .slider-btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .slider-1 img {
        height: 80vh;
        object-fit: cover;
    }

    /* Home About Section - Tablet */
    .home-about {
        padding: 60px 0;
    }

    .home-about .about-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .home-about .about-content h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .home-about .about-content h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .home-about .about-description {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 18px;
    }

    .home-about .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin: 25px 0;
    }

    .home-about .about-image {
        padding-left: 0;
        margin-top: 30px;
    }

    .home-about .stats-box {
        gap: 20px;
        padding: 20px;
    }

    .home-about .stat-item h3 {
        font-size: 36px;
    }

    .home-about .stat-item p {
        font-size: 14px;
    }

    /* Our Services Section - Tablet */
    .our-services {
        padding: 60px 0;
    }

    .our-services .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .our-services .section-subtitle {
        font-size: 16px;
    }

    .our-services .service-content {
        padding: 25px 20px;
    }

    .our-services .service-content h4 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .our-services .service-content p {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    /* Quote Section - Tablet */
    .quote-section {
        padding: 60px 0;
    }

    .quote-section .quote-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .quote-section .quote-subtitle {
        font-size: 16px;
    }

    .quote-section .quote-form-wrapper {
        padding: 35px 25px;
    }

    /* News Section - Tablet */
    .news-sec {
        padding: 60px 0;
    }

    .news-sec .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .news-sec .section-subtitle {
        font-size: 16px;
    }

    /* About Main Section - Tablet */
    .about-main-section {
        padding: 60px 0;
    }

    .about-main-section .about-content-main h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .about-main-section .about-content-main h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-main-section .about-text {
        font-size: 15px;
        line-height: 26px;
    }

    .about-main-section .about-stats {
        gap: 20px;
        margin: 30px 0;
    }

    .about-main-section .stat-number {
        font-size: 36px;
    }

    /* Contact Section - Tablet */
    .contact-main-section {
        padding: 60px 0;
    }

    .contact-main-section .section-header h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .contact-main-section .section-subtitle {
        font-size: 16px;
    }

    .contact-main-section .contact-form-wrapper {
        padding: 35px 25px;
    }

    .sec-tour .inner-box {
        margin-top: -90px;
    }

    .sec-tour .tour-box {
        margin-bottom: 10px;
    }

    .sec-tour {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .sec-services {
        padding: 50px 0;
    }

    .sec-services .sec-title h2 {
        font-size: 32px;
    }

    .sec-services .white-box {
        margin-bottom: 20px;
        min-height: 280px;
        padding: 30px 20px;
    }

    .sec-services .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .sec-services .service-icon {
        width: 80px;
        height: 80px;
    }

    .sec-services .service-icon i {
        font-size: 36px;
    }

    .sec-services .white-box h6 {
        font-size: 20px;
    }

    .sec-services .service-number {
        font-size: 50px;
        top: 15px;
        right: 15px;
    }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box img {
            height: unset;
        }

        .sec-about .content-box {
            padding: 20px;
        }

        .sec-about .content-box-2 {
            padding: 20px;
        }

    .news-sec {
        padding: 30px 0;
    }

        .news-sec .title {
            padding: 0 0 20px;
        }

    .sec-contact {
        padding: 30px 0;
    }

        .sec-contact .contact-box {
            padding: 30px 20px;
        }

    .sec-about .content-box .para {
        font-size: 17px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 .para {
        font-size: 17px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 h2 {
        font-size: 34px;
    }

    .sec-about .content-box h2 {
        font-size: 34px;
        margin: 5px 0;
    }

    .footer-bg .footer-middle {
        padding: 0;
    }

    .footer-bg {
        padding: 40px 20px 0;
    }

    .inner-banner {
        height: 300px;
    }

        .inner-banner .content-box {
            padding: 30px 20px;
        }

            .inner-banner .content-box h2 {
                font-size: 36px;
                margin-bottom: 15px;
            }

            .inner-banner .content-box ul li a {
                font-size: 15px;
            }

    .home-about {
        padding: 50px 0;
    }

    .home-about .about-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .home-about .about-content h2 {
        font-size: 28px;
    }

    .home-about .about-content h3 {
        font-size: 18px;
    }

    .home-about .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
        max-width: 400px;
        margin: 30px auto;
    }

    .home-about .about-image {
        padding-left: 0;
        margin-top: 20px;
    }

    .home-about .stats-box {
        gap: 20px;
    }

    .home-about .stat-item h3 {
        font-size: 36px;
    }

    .home-about .about-buttons {
        flex-direction: column;
        max-width: 400px;
        margin: 30px auto 0;
    }

    .home-about .about-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .our-services {
        padding: 50px 0;
    }

    .our-services .section-header h2 {
        font-size: 32px;
    }

    .our-services .section-subtitle {
        font-size: 16px;
    }

    .services-main-section {
        padding: 60px 0;
    }

    .services-main-section .section-header h2 {
        font-size: 32px;
    }

    .services-main-section .service-image {
        height: 220px;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-main-section .section-header h2 {
        font-size: 32px;
    }

    .contact-main-section .contact-form-wrapper {
        padding: 40px 30px;
    }

    .contact-main-section .form-header h3 {
        font-size: 26px;
    }

    .our-services .service-image {
        height: 220px;
    }

    .our-services .service-content {
        padding: 25px 20px;
    }

    .our-services .service-content h4 {
        font-size: 22px;
    }

    .our-services .service-icon-small {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .our-services .service-icon-small i {
        font-size: 28px;
    }

    .our-services .service-icon-large {
        width: 100px;
        height: 100px;
    }

    .our-services .service-icon-large i {
        font-size: 40px;
    }

    .news-sec {
        padding: 50px 0;
    }

    .news-sec .section-header h2 {
        font-size: 32px;
    }

    .news-sec .section-subtitle {
        font-size: 16px;
    }

    .news-sec .blog-image {
        height: 220px;
    }

    .news-sec .blog-content {
        padding: 25px 20px;
    }

    .news-sec .blog-content h3 {
        font-size: 20px;
    }

    .news-sec .blog-meta {
        gap: 15px;
        font-size: 13px;
    }

    .quote-section {
        padding: 50px 0;
    }

    .quote-section .quote-header h2 {
        font-size: 32px;
    }

    .quote-section .quote-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }

    .quote-section .quote-form-wrapper {
        padding: 35px 25px;
    }

    .quote-section .quote-form .form-group {
        margin-bottom: 20px;
    }

    .quote-section .btn-submit {
        width: 100%;
        justify-content: center;
    }
}

@media only screen and (max-width: 767px) {
    .main-header .upper-list {
        display: none;
    }

    .main-header.scroll .upper-list {
        display: none;
    }
}

@media only screen and (min-width: 481px) and (max-width: 767px) {
    body {
        overflow-x: hidden;
    }

    .main-header {
        background: #fff;
    }

    .main-header .upper-list {
        display: none;
    }

    .main-header.scroll .upper-list {
        display: none;
    }

        .main-header .nav-item .nav-link {
            color: #000 !important;
        }

        .main-header .nav-btn .book-btn {
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border: 2px solid transparent;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 14px;
            display: inline-block;
        }

    .main-header .upper-list {
        padding: 8px 0;
    }

    .upper-list .align-box {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .upper-list .box-1 {
        width: 100%;
    }

    .upper-list .box-1 .info-list {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .upper-list .box-1 .info-list li {
        padding: 0;
        width: 100%;
    }

    .upper-list .box-1 .info-list li a {
        font-size: 13px;
        color: #ffffff;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 13px;
        padding-right: 8px;
        color: #ffffff;
    }

    .upper-list .box-2 {
        width: 100%;
    }

    .upper-list .box-2 .social-list {
        justify-content: flex-start;
        gap: 10px;
    }

    .upper-list .box-2 .social-list li {
        padding: 0;
    }

    .upper-list .box-2 .social-list li a {
        color: #ffffff;
        font-size: 16px;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .main-header .logo {
        width: 160px;
        filter: unset;
    }

    .upper-list .align-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .banner-slider {
        margin-top: 0;
    }

    .banner-slider .slider-1 .slick-prev {
        left: 10px;
        width: 45px;
        height: 45px;
    }

    .banner-slider .slider-1 .slick-next {
        right: 10px;
        width: 45px;
        height: 45px;
    }

    .banner-slider .slider-1 .slick-prev::before,
    .banner-slider .slider-1 .slick-next::before {
        font-size: 16px;
    }

    .banner-slider .slider-1 .slick-dots {
        bottom: 20px;
        gap: 8px;
    }

    .banner-slider .slider-1 .slick-dots li button {
        width: 8px;
        height: 8px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button {
        width: 30px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button::before {
        width: 24px;
    }

    .slider-1 .item .img-box::before {
        opacity: 0.4;
    }

    .footer-bg {
        overflow-x: hidden;
    }

    .slider-1 .item .content-box {
        top: 35%;
        width: 100%;
        padding: 0 20px;
    }

    .slider-1 .item .content-box {
        top: 35%;
        width: 100%;
        padding: 0 20px;
    }

    .slider-1 .item .content-box h1 {
        font-size: 42px;
        padding-bottom: 8px;
        line-height: 48px;
        margin-bottom: 10px;
    }

    .slider-1 .item .content-box h3 {
        font-size: 18px;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }

    .slider-1 .item .content-box h2 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .slider-1 .item .content-box .slider-badge {
        font-size: 11px;
        padding: 5px 15px;
        margin-bottom: 12px;
    }

    .slider-1 .item .content-box .slider-description {
        font-size: 14px;
        line-height: 22px;
        margin: 12px auto 18px;
        padding: 0 15px;
    }

    .slider-1 .item .content-box .slider-buttons {
        flex-direction: column;
        gap: 10px;
        margin-top: 18px;
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }

    .slider-1 .item .content-box .slider-btn {
        width: 100%;
        padding: 12px 20px;
        font-size: 13px;
    }

    .slider-1 img {
        height: 85vh;
        object-fit: cover;
    }

    .sec-tour .inner-box {
        margin-top: 0;
    }

    .sec-tour .tour-box {
        margin-bottom: 10px;
    }

    .sec-tour {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .sec-services {
        padding: 50px 0;
    }

    .sec-services .sec-title h2 {
        font-size: 32px;
    }

    .sec-services .white-box {
        margin-bottom: 20px;
        min-height: 280px;
        padding: 30px 20px;
    }

    .sec-services .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .sec-services .service-icon {
        width: 80px;
        height: 80px;
    }

    .sec-services .service-icon i {
        font-size: 36px;
    }

    .sec-services .white-box h6 {
        font-size: 20px;
    }

    .sec-services .service-number {
        font-size: 50px;
        top: 15px;
        right: 15px;
    }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box img {
            height: unset;
        }

        .sec-about .content-box {
            padding: 20px;
        }

        .sec-about .content-box-2 {
            padding: 20px;
        }

    .news-sec {
        padding: 30px 0;
    }

        .news-sec .title {
            padding: 0 0 20px;
        }

    .sec-contact {
        padding: 30px 0;
    }

        .sec-contact .contact-box {
            padding: 30px 20px;
        }

    .sec-about .content-box .para {
        font-size: 16px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 .para {
        font-size: 16px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 h2 {
        font-size: 30px;
    }

    .sec-about .content-box h2 {
        font-size: 30px;
        margin: 5px 0;
    }

    .footer-bg .footer-middle {
        padding: 0;
    }

    .footer-bg {
        padding: 40px 20px 0;
    }

    .inner-banner {
        height: 250px;
    }

        .inner-banner .content-box {
            padding: 25px 15px;
        }

            .inner-banner .content-box h2 {
                font-size: 32px;
                margin-bottom: 15px;
            }

            .inner-banner .content-box ul {
                gap: 3px;
            }

            .inner-banner .content-box ul li {
                padding: 0 5px;
            }

            .inner-banner .content-box ul li a {
                font-size: 14px;
            }

    .our-services {
        padding: 40px 0;
    }

    .our-services .section-header {
        margin-bottom: 40px;
    }

    .our-services .section-header h2 {
        font-size: 28px;
    }

    .our-services .section-subtitle {
        font-size: 15px;
        padding: 0 15px;
    }

    .services-main-section {
        padding: 50px 0;
    }

    .services-main-section .section-header h2 {
        font-size: 28px;
    }

    .services-main-section .section-subtitle {
        font-size: 16px;
    }

    .services-main-section .service-image {
        height: 200px;
    }

    .services-main-section .service-content {
        padding: 25px 20px;
    }

    .services-main-section .service-content h4 {
        font-size: 22px;
    }

    .our-services .service-image {
        height: 200px;
    }

    .our-services .service-content {
        padding: 20px 15px;
    }

    .our-services .service-content h4 {
        font-size: 20px;
    }

    .our-services .service-icon-small {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }

    .our-services .service-icon-small i {
        font-size: 24px;
    }

    .our-services .service-features li {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    body {
        overflow-x: hidden;
    }

    /* Page Loader - Mobile */
    .loader-spinner {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }

    .spinner-ring:nth-child(2) {
        width: 60px;
        height: 60px;
        top: 10px;
        left: 10px;
    }

    .spinner-ring:nth-child(3) {
        width: 40px;
        height: 40px;
        top: 20px;
        left: 20px;
    }

    .spinner-ring:nth-child(4) {
        width: 20px;
        height: 20px;
        top: 30px;
        left: 30px;
    }

    .loader-text {
        font-size: 14px;
        margin-top: 15px;
        letter-spacing: 1px;
    }

    .main-header {
        background: #fff;
    }

    .main-header .upper-list {
        display: none;
    }

    .main-header.scroll .upper-list {
        display: none;
    }

        .main-header .nav-item .nav-link {
            color: #000 !important;
        }

        .main-header .nav-btn .book-btn {
            background: linear-gradient(135deg, #0093ff 0%, #590a78 100%);
            border: 2px solid transparent;
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 14px;
            display: inline-block;
        }

    .main-header .upper-list {
        padding: 8px 0;
    }

    .upper-list .align-box {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
        padding: 10px 15px;
    }

    .upper-list .box-1 {
        width: 100%;
    }

    .upper-list .box-1 .info-list {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .upper-list .box-1 .info-list li {
        padding: 0;
        width: 100%;
    }

    .upper-list .box-1 .info-list li a {
        font-size: 12px;
        color: #ffffff;
    }

    .upper-list .box-1 .info-list li span {
        font-size: 12px;
        padding-right: 8px;
        color: #ffffff;
    }

    .upper-list .box-2 {
        width: 100%;
    }

    .upper-list .box-2 .social-list {
        justify-content: flex-start;
        gap: 10px;
    }

    .upper-list .box-2 .social-list li {
        padding: 0;
    }

    .upper-list .box-2 .social-list li a {
        color: #ffffff;
        font-size: 16px;
    }

    .main-header.scroll .upper-list {
        margin-top: -60px;
    }

    .main-header .logo {
        width: 140px;
        filter: unset;
    }

    .upper-list .align-box {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .banner-slider {
        margin-top: 0;
    }

    .banner-slider .slider-1 .slick-prev,
    .banner-slider .slider-1 .slick-next {
        display: none !important;
    }

    .banner-slider .slider-1 .slick-dots {
        bottom: 15px;
        gap: 6px;
    }

    .banner-slider .slider-1 .slick-dots li button {
        width: 8px;
        height: 8px;
        border-width: 1px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button {
        width: 25px;
    }

    .banner-slider .slider-1 .slick-dots li.slick-active button::before {
        width: 20px;
        height: 4px;
    }

    .slider-1 .item .img-box::before {
        opacity: 0.4;
    }

    .footer-bg {
        overflow-x: hidden;
    }

    .slider-1 .item .content-box {
        top: 35%;
        width: 100%;
        padding: 0 15px;
    }

        .slider-1 .item .content-box h1 {
            font-size: 32px;
            padding-bottom: 5px;
            line-height: 38px;
            margin-bottom: 8px;
        }

        .slider-1 .item .content-box h3 {
            font-size: 16px;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }

        .slider-1 .item .content-box .slider-badge {
            font-size: 10px;
            padding: 4px 12px;
            margin-bottom: 10px;
        }

        .slider-1 .item .content-box .slider-description {
            font-size: 12px;
            line-height: 18px;
            margin: 10px auto 15px;
            padding: 0 10px;
        }

        .slider-1 .item .content-box .slider-buttons {
            flex-direction: column;
            gap: 8px;
            margin-top: 15px;
            width: 100%;
            max-width: 280px;
            margin-left: auto;
            margin-right: auto;
        }

        .slider-1 .item .content-box .slider-btn {
            width: 100%;
            padding: 10px 18px;
            font-size: 12px;
        }

    .slider-1 img {
        height: 85vh;
        object-fit: cover;
    }

        /* Home About Section - Small Mobile */
        .home-about {
            padding: 40px 0;
        }

        .home-about .about-content {
            padding-right: 0;
            margin-bottom: 25px;
            text-align: center;
        }

        .home-about .about-content h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .home-about .about-content h3 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .home-about .about-description {
            font-size: 13px;
            line-height: 22px;
            margin-bottom: 12px;
        }

        .home-about .about-features {
            grid-template-columns: 1fr;
            gap: 10px;
            margin: 20px 0;
        }

        .home-about .about-image {
            padding-left: 0;
            margin-top: 20px;
        }

        .home-about .stats-box {
            gap: 12px;
            padding: 15px 10px;
            flex-wrap: wrap;
        }

        .home-about .stat-item {
            flex: 1;
            min-width: 100px;
        }

        .home-about .stat-item h3 {
            font-size: 28px;
        }

        .home-about .stat-item p {
            font-size: 12px;
        }

        .home-about .about-buttons {
            flex-direction: column;
            width: 100%;
            margin: 20px auto 0;
            gap: 10px;
        }

        .home-about .about-buttons .btn {
            width: 100%;
            text-align: center;
            padding: 10px 20px;
            font-size: 13px;
        }

        /* Our Services Section - Small Mobile */
        .our-services {
            padding: 40px 0;
        }

        .our-services .section-header {
            margin-bottom: 30px;
        }

        .our-services .section-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .our-services .section-subtitle {
            font-size: 14px;
            padding: 0 10px;
        }

        .our-services .service-content {
            padding: 18px 12px;
        }

        .our-services .service-content h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .our-services .service-content p {
            font-size: 13px;
            line-height: 20px;
            margin-bottom: 10px;
        }

        .our-services .service-features {
            margin-bottom: 12px;
        }

        .our-services .service-features li {
            font-size: 12px;
            margin-bottom: 6px;
        }

        /* Quote Section - Small Mobile */
        .quote-section {
            padding: 40px 0;
        }

        .quote-section .quote-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .quote-section .quote-subtitle {
            font-size: 14px;
            padding: 0 10px;
        }

        .quote-section .quote-form-wrapper {
            padding: 25px 15px;
        }

        .quote-section .quote-form .form-group {
            margin-bottom: 15px;
        }

        .quote-section .quote-form label {
            font-size: 13px;
            margin-bottom: 6px;
        }

        .quote-section .quote-form .form-control {
            font-size: 14px;
            padding: 10px 15px;
        }

        .quote-section .btn-submit {
            width: 100%;
            padding: 12px 25px;
            font-size: 13px;
        }

        /* News Section - Small Mobile */
        .news-sec {
            padding: 40px 0;
        }

        .news-sec .section-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .news-sec .section-subtitle {
            font-size: 14px;
            padding: 0 10px;
        }

        .news-sec .blog-content {
            padding: 18px 12px;
        }

        .news-sec .blog-content h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .news-sec .blog-excerpt {
            font-size: 13px;
            line-height: 20px;
        }

        /* About Main Section - Small Mobile */
        .about-main-section {
            padding: 40px 0;
        }

        .about-main-section .about-content-main {
            margin-bottom: 25px;
            text-align: center;
        }

        .about-main-section .about-content-main h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .about-main-section .about-content-main h3 {
            font-size: 16px;
            margin-bottom: 15px;
        }

        .about-main-section .about-text {
            font-size: 13px;
            line-height: 22px;
            margin-bottom: 12px;
        }

        .about-main-section .about-stats {
            justify-content: center;
            gap: 12px;
            margin: 20px 0;
        }

        .about-main-section .stat-box {
            min-width: 90px;
            padding: 15px 10px;
        }

        .about-main-section .stat-number {
            font-size: 28px;
        }

        .about-main-section .stat-label {
            font-size: 12px;
        }

        /* Contact Section - Small Mobile */
        .contact-main-section {
            padding: 40px 0;
        }

        .contact-main-section .section-header h2 {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .contact-main-section .section-subtitle {
            font-size: 14px;
            padding: 0 10px;
        }

        .contact-main-section .contact-form-wrapper {
            padding: 25px 15px;
        }

        .contact-main-section .contact-form .form-group {
            margin-bottom: 15px;
        }

        .contact-main-section .contact-form label {
            font-size: 13px;
            margin-bottom: 6px;
        }

        .contact-main-section .contact-form .form-control {
            font-size: 14px;
            padding: 10px 15px;
        }

        .contact-main-section .btn-submit {
            width: 100%;
            padding: 12px 25px;
            font-size: 13px;
        }

    .sec-tour .inner-box {
        margin-top: 0;
    }

    .sec-tour .tour-box {
        margin-bottom: 10px;
    }

    .sec-tour {
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .sec-services {
        padding: 50px 0;
    }

    .sec-services .sec-title h2 {
        font-size: 32px;
    }

    .sec-services .white-box {
        margin-bottom: 20px;
        min-height: 280px;
        padding: 30px 20px;
    }

    .sec-services .service-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .sec-services .service-icon {
        width: 80px;
        height: 80px;
    }

    .sec-services .service-icon i {
        font-size: 36px;
    }

    .sec-services .white-box h6 {
        font-size: 20px;
    }

    .sec-services .service-number {
        font-size: 50px;
        top: 15px;
        right: 15px;
    }

    .about-main-section {
        padding: 50px 0;
    }

    .about-main-section .about-content-main {
        margin-bottom: 40px;
        text-align: center;
    }

    .about-main-section .about-content-main h2 {
        font-size: 28px;
    }

    .about-main-section .about-content-main h3 {
        font-size: 18px;
    }

    .about-main-section .about-stats {
        justify-content: center;
        gap: 15px;
    }

    .about-main-section .stat-box {
        min-width: 90px;
        padding: 15px 10px;
    }

    .about-main-section .stat-number {
        font-size: 32px;
    }

    .about-main-section .stat-label {
        font-size: 14px;
    }

    .about-main-section .about-image-main {
        padding: 0;
        margin-top: 30px;
    }

    .about-main-section .image-badge {
        top: 15px;
        right: 15px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .about-main-section .feature-box {
        padding: 15px;
    }

    .about-main-section .feature-icon i {
        font-size: 24px;
    }

    .about-main-section .feature-text h5 {
        font-size: 16px;
    }

    .about-main-section .feature-text p {
        font-size: 14px;
    }

    .sec-about {
        padding: 30px 0;
    }

        .sec-about .img-box img {
            height: unset;
        }

        .sec-about .content-box {
            padding: 20px;
        }

        .sec-about .content-box-2 {
            padding: 20px;
        }

    .news-sec {
        padding: 30px 0;
    }

        .news-sec .title {
            padding: 0 0 20px;
        }

    .sec-contact {
        padding: 30px 0;
    }

        .sec-contact .contact-box {
            padding: 30px 20px;
        }

    .sec-about .content-box .para {
        font-size: 16px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 .para {
        font-size: 16px;
        padding: 5px 0;
    }

    .sec-about .content-box-2 h2 {
        font-size: 30px;
    }

    .sec-about .content-box h2 {
        font-size: 30px;
        margin: 5px 0;
    }

    .footer-bg .footer-middle {
        padding: 0;
    }

    .footer-bg {
        padding: 40px 20px 0;
    }

    .inner-banner {
        height: 200px;
    }

        .inner-banner .content-box {
            padding: 20px 15px;
        }

            .inner-banner .content-box h2 {
                font-size: 28px;
                margin-bottom: 12px;
            }

            .inner-banner .content-box ul {
                gap: 2px;
            }

            .inner-banner .content-box ul li {
                padding: 0 4px;
            }

            .inner-banner .content-box ul li a {
                font-size: 13px;
            }

    .sec-inner-services {
        padding: 30px 10px;
        overflow-x: hidden;
    }

        .sec-inner-services .inner-box .content-box .para {
            font-size: 16px;
            margin: 10px 0;
        }

        .sec-inner-services .inner-box .content-box h3 {
            padding-bottom: 0;
        }

        .sec-inner-services .inner-box .img-box {
            margin-bottom: 5px;
        }

    .upper-list .box-1 .info-list li {
        padding: 0 6px;
    }

    .navbar {
        padding: 8px 8px !important;
    }

    .quote-section {
        padding: 40px 0;
    }

    .quote-section .quote-header h2 {
        font-size: 26px;
    }

    .quote-section .quote-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .quote-section .quote-form-wrapper {
        padding: 30px 20px;
    }

    .quote-section .quote-form .form-control {
        padding: 12px 40px 12px 12px;
        font-size: 14px;
    }

    .quote-section .quote-form .form-icon {
        font-size: 16px;
        right: 12px;
    }

    .quote-section .btn-submit {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
    }

    .news-sec {
        padding: 40px 0;
    }

    .news-sec .section-header h2 {
        font-size: 28px;
    }

    .news-sec .section-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .news-sec .blog-image {
        height: 200px;
    }

    .news-sec .blog-content {
        padding: 20px 15px;
    }

    .news-sec .blog-content h3 {
        font-size: 18px;
    }

    .news-sec .blog-excerpt {
        font-size: 14px;
        line-height: 24px;
    }

    .news-sec .blog-meta {
        gap: 12px;
        font-size: 12px;
    }

    .news-sec .btn-view-all {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
}
