/********** GPPSL Premium CSS **********/
:root {
    --primary: #0591E4;
    --primary-dark: #0470b5;
    --secondary: #666666;
    --light: #F2F8FE;
    --dark: #111111;
    --gradient: linear-gradient(135deg, #0591E4 0%, #03a9f4 100%);
}

/* ===== Global Resets ===== */
body {
    font-family: 'Open Sans', sans-serif;
    color: var(--secondary);
    background-color: #FFFFFF;
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--dark);
    font-weight: 700;
}

h4, h5, h6, .h4, .h5, .h6 {
    font-weight: 500 !important;
}

p {
    color: #555555;
    line-height: 1.8;
}

.text-white, .text-light {
    color: #FFFFFF !important;
}

.text-dark {
    color: var(--dark) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.bg-white {
    background-color: #FFFFFF !important;
}

.bg-light {
    background-color: var(--light) !important;
}


/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 60px;
    z-index: 99;
    border: none;
    background: var(--gradient);
    transition: .4s;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(5, 145, 228, 0.4);
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Buttons ***/
.btn {
    font-weight: 500;
    transition: all .4s ease;
    border-radius: 4px;
}

.btn.btn-primary {
    color: #FFFFFF;
    background: var(--gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(5, 145, 228, 0.3);
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 145, 228, 0.45);
}

.btn.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn.btn-outline-primary:hover {
    background: var(--gradient);
    border-color: transparent;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(5, 145, 228, 0.3);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 18px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
    position: relative;
    transition: color .3s ease;
}

.navbar .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    border-radius: 2px;
    transition: width .3s ease;
}

.navbar .navbar-nav .nav-link:hover::after,
.navbar .navbar-nav .nav-link.active::after {
    width: 70%;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
    width: auto;
    height: auto;
    background: none;
    position: static;
    transform: none;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar .dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    transition: .3s;
}

.navbar .dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
    padding-left: 25px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav .nav-link::after {
        display: none;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background: var(--primary) !important;
}


/*** Hero Header ***/
.hero-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}


/*** Service Cards ***/
.service-item {
    position: relative;
    overflow: hidden;
    border: none !important;
    border-radius: 12px !important;
    transition: all .4s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

.service-item::after {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -80px;
    right: -80px;
    border: 80px solid;
    transform: rotate(45deg);
    opacity: 1;
    transition: .5s;
}

.service-item.bg-white::after {
    border-color: transparent transparent var(--light) transparent;
}

.service-item.bg-light::after {
    border-color: transparent transparent #FFFFFF transparent;
}

.service-item:hover::after {
    opacity: 0;
}

.service-item i {
    transition: transform .4s ease;
}

.service-item:hover i {
    transform: scale(1.15);
}


/*** Facts / Stats Section ***/
.container-xxl.bg-light {
    position: relative;
}


/*** Roadmap ***/
.roadmap-carousel {
    position: relative;
}

.roadmap-carousel::before {
    position: absolute;
    content: "";
    height: 0;
    width: 100%;
    top: 20px;
    left: 0;
    border-top: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item .roadmap-point {
    position: absolute;
    width: 30px;
    height: 30px;
    top: 6px;
    left: 50%;
    margin-left: -15px;
    background: #FFFFFF;
    border: 2px solid var(--primary);
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.roadmap-carousel .roadmap-item .roadmap-point span {
    display: block;
    width: 18px;
    height: 18px;
    background: var(--primary);
}

.roadmap-carousel .roadmap-item {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.roadmap-carousel .roadmap-item::before {
    position: absolute;
    content: "";
    width: 0;
    height: 115px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 2px dashed var(--secondary);
}

.roadmap-carousel .roadmap-item::after {
    position: absolute;
    content: "";
    width: 14px;
    height: 14px;
    top: 111px;
    left: 50%;
    margin-left: -7px;
    transform: rotate(45deg);
    background: var(--primary);
}

.roadmap-carousel .owl-nav {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.roadmap-carousel .owl-nav .owl-prev,
.roadmap-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.roadmap-carousel .owl-nav .owl-prev:hover,
.roadmap-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** FAQs ***/
.accordion .accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 8px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion .accordion-button {
    background: #FFFFFF;
    border-radius: 8px;
    font-weight: 500;
    color: var(--dark);
    padding: 18px 24px;
}

.accordion .accordion-button:not(.collapsed) {
    color: #FFFFFF;
    background: var(--gradient);
    box-shadow: none;
}

.accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion .accordion-body {
    padding: 20px 24px;
    line-height: 1.8;
}


/*** Footer ***/
.footer {
    background: #0a1628 !important;
    color: #b0bec5;
}

.footer h1, .footer h5 {
    color: #FFFFFF !important;
}

.footer p, .footer span {
    color: #b0bec5 !important;
}

.footer p i {
    color: var(--primary) !important;
    width: 20px;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #b0bec5;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .btn.btn-square {
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer .btn.btn-square:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.15);
}

.footer .copyright span,
.footer .copyright div {
    color: #8899a6 !important;
    font-size: 14px;
}

.footer .copyright a {
    color: var(--primary);
    text-decoration: none;
}

.footer .copyright a:hover {
    color: #03a9f4;
}


/* ===== Responsive Helpers ===== */
.mobile {
    display: block;
}

.desktop {
    display: none;
}

@media only screen and (min-width: 768px) {
    .mobile {
        display: none;
    }

    .desktop {
        display: block;
    }
}

@media (min-width: 768px) {
    .width80 {
        width: 80%;
    }
}


/* ===== Section Title Accent ===== */
.section-title {
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 3px;
}


/*****carousel Section******/
.owl-carousel .owl-dots button:focus {
    box-shadow: none !important;
    outline: 0;
}

.section-margin {
    margin: 70px 0;
}

@media (min-width: 1000px) {
    .section-margin {
        margin: 130px 0;
    }
}

.section-margin--small {
    margin: 35px 0;
}

@media (min-width: 1000px) {
    .section-margin--small {
        margin: 65px 0;
    }
}

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

@media (min-width: 1000px) {
    .section-padding {
        padding: 130px 0;
    }
}

.pb-20px {
    padding-bottom: 20px;
}


/*=================== testimonial carousel ====================*/
.section-intro__style {
    margin-bottom: 14px;
}

.testi-carousel .owl-stage-outer {
    padding: 50px 0;
}

.testi-carousel .owl-item {
    overflow: hidden;
}

.testi-carousel__item {
    background: #FFFFFF;
    padding: 30px 50px;
    transition: all .3s ease;
}

.testi-carousel__item .media-body p {
    margin-bottom: 12px;
}

.testi-carousel__item::after {
    content: '';
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    bottom: 0;
    border-bottom: 15px solid #ffffff;
    border-left: 500px solid rgba(255, 255, 255, 0.13);
    -moz-transform: scale(0.9999);
    transform: scale(0.9999);
}

.testi-carousel__item:hover {
    box-shadow: 0px 10px 20px 0px rgba(153, 153, 153, 0.2);
    background: #dbdbdb;
}

.testi-carousel__img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    margin-right: 20px;
}

.testi-carousel__intro h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 5px;
}

.testi-carousel__intro p {
    font-size: 14px;
    color: #999999;
}

.testi-carousel .owl-dots .owl-dot span {
    background: #cacccf;
}

.testi-carousel .owl-dots .owl-dot.active span {
    width: 12px;
    height: 12px;
    background: #cca772;
}


/*=================== Contact page ====================*/
.submit-button-area span {
    font-size: 17px;
    margin-top: 15px;
    display: none;
    font-size: 20px;
}

@media (max-width: 600px) {
    .submit-button-area span {
        margin: 20px 0 0;
        text-align: center;
    }
}


/* ===== Page Header for Sub-pages ===== */
.page-header {
    background-size: cover !important;
    background-position: center !important;
}

.page-header h1 {
    color: #FFFFFF !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8) !important;
}

.page-header .breadcrumb-item.active {
    color: #FFFFFF !important;
}