
/*** Spinner Start ***/
#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;
}
/*** Spinner End ***/

/*** Global Responsive Improvements Start ***/
@media (max-width: 1199px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 575px) {
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
}
/*** Global Responsive Improvements End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

@media (max-width: 767px) {
    .back-to-top {
        right: 20px;
        bottom: 200px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 575px) {
    .back-to-top {
        right: 15px;
        bottom: 180px;
        width: 40px;
        height: 40px;
    }
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}


/*** Topbar Start ***/ 
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: .5s;
    opacity: 1;
}
/*** Topbar End ***/


/*** Navbar Start ***/
.nav-bar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(125deg, rgba(4, 16, 38, 0.95), rgba(11, 38, 72, 0.88));
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    backdrop-filter: saturate(180%) blur(12px);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar .navbar-brand img.nav-logo {
    max-height: 54px;
    transition: transform 0.3s ease;
}

.navbar .navbar-brand img.nav-logo:hover {
    transform: scale(1.03);
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.75rem 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.25s ease, transform 0.25s ease;
}

.navbar .nav-link:hover {
    color: #69a9ff;
    transform: translateY(-1px);
}

.navbar .nav-link.active {
    color: #69a9ff;
}

.navbar .nav-link.active::after {
    content: "";
    display: block;
    height: 3px;
    width: 100%;
    background: #69a9ff;
    border-radius: 12px;
    margin-top: 6px;
}

.nav-cta .btn {
    font-weight: 700;
    letter-spacing: 0.5px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #69a9ff;
    color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 991px) {
    .navbar .navbar-collapse {
        background: rgba(2, 12, 26, 0.92);
        border-radius: 14px;
        padding: 1.25rem 1.2rem;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        gap: 0.4rem;
    }

    .navbar .navbar-toggler {
        padding: 8px 14px;
        border: 1px solid rgba(255, 255, 255, 0.45);
        color: rgba(255, 255, 255, 0.9);
    }

    .nav-cta {
        width: 100%;
        margin-top: 1rem;
        display: flex;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .navbar .navbar-nav {
        width: auto;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

    .navbar .nav-cta {
        margin-left: auto;
    }
}
/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 700px;
}




.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 50%;
    transform: translateX(-50%);
    margin-right: 30px;
}



.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel .header-carousel-item {
        height: 1300px;
    }
}

@media (max-width: 767px) {
    .header-carousel .header-carousel-item {
        height: 950px;
    }

    .header-carousel .owl-nav .owl-prev {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: -45px;
    }

    .header-carousel .owl-nav .owl-next {
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
        margin-left: 45px;
    }
}

@media (max-width: 575px) {
    .header-carousel .header-carousel-item {
        height: 800px;
    }

    .header-carousel .header-carousel-item .carousel-caption {
        padding: 20px;
    }
}
/*** Carousel Hero Header End ***/

/*** Carousel Header (Bootstrap) Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 20% 20%, rgba(1, 94, 201, 0), transparent 55%),
        linear-gradient(120deg, rgba(10, 30, 55, 0), rgba(1, 94, 201, 0));
}

.carousel-header .carousel-item {
    min-height: 560px;
}

.carousel-header .carousel-item img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.05);
}

.carousel-header .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(8, 23, 43, 0.35), rgba(8, 23, 43, 0.65) 55%, rgba(1, 94, 201, 0.2));
    z-index: 1;
}

.carousel-header .carousel-caption {
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.carousel-header .carousel-caption .p-3 {
    background: transparent;
    border: none;
    border-radius: 22px;
    backdrop-filter: none;
    box-shadow: none;
    animation: carouselCardFloat 6s ease-in-out infinite;
}

.carousel-header .carousel-caption h4 {
    color: #69a9ff;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.carousel-header .carousel-caption h1 {
    text-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
}

.carousel-header .carousel-caption h5 {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
    .carousel-header .carousel-caption .p-3 {
        max-width: 100% !important;
        padding: 1.5rem !important;
    }

    .carousel-header .carousel-caption h4 {
        font-size: 1rem;
        letter-spacing: 1px;
        margin-bottom: 1rem;
    }

    .carousel-header .carousel-caption h1 {
        font-size: 2rem;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }

    .carousel-header .carousel-caption h5 {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }

    .carousel-header .carousel-caption .btn {
        padding: 0.75rem 1.5rem !important;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .carousel-header .carousel-item {
        min-height: 400px;
    }

    .carousel-header .carousel-item img {
        height: 400px;
    }

    .carousel-header .carousel-caption .p-3 {
        padding: 1rem !important;
    }

    .carousel-header .carousel-caption h4 {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
        margin-bottom: 0.75rem;
    }

    .carousel-header .carousel-caption h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .carousel-header .carousel-caption h5 {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .carousel-header .carousel-caption .btn {
        padding: 0.6rem 1.2rem !important;
        font-size: 0.85rem;
    }
}

.carousel-header .carousel-indicators [data-bs-target] {
    width: 36px;
    height: 6px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0);
}

.carousel-header .carousel-indicators .active {
    background-color: #ffffff;
}

.carousel-header .btn.btn-primary {
    box-shadow: 0 16px 32px rgba(1, 94, 201, 0);
}

@keyframes carouselCardFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .carousel-header .carousel-item,
    .carousel-header .carousel-item img {
        height: 520px;
    }
}

@media (max-width: 575px) {
    .carousel-header .carousel-item,
    .carousel-header .carousel-item img {
        height: 480px;
    }

    .carousel-header .carousel-caption .p-3 {
        border-radius: 16px;
    }
}
/*** Carousel Header (Bootstrap) End ***/

/*** Services Cards Section Start ***/
.section-bg {
    position: relative;
    padding: 80px 0 60px;
    background: radial-gradient(circle at 18% 15%, rgba(105, 169, 255, 0.18), transparent 55%),
        linear-gradient(160deg, #0b1c2d 0%, #102b4a 48%, #0f2136 100%);
}

.section-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/") center/cover no-repeat;
    opacity: 0.04;
    pointer-events: none;
}

.section-bg .container {
    position: relative;
    z-index: 1;
}

.services-header {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 32px;
    box-shadow: 0 18px 40px rgba(5, 20, 40, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #f3f7ff;
}

.services-header .subtitle {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #b9d7ff;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

.services-header h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1b6fdc, #69a9ff);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 12px 24px rgba(12, 54, 110, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.call-btn:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(12, 54, 110, 0.55);
}

.service-card {
    height: 100%;
    border-radius: 18px;
    background: #f7fbff;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(7, 20, 45, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 55px rgba(7, 20, 45, 0.32);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.06);
}

.service-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.service-content h4 {
    margin: 0;
    color: #0b1c2d;
    font-size: 1.1rem;
    font-weight: 700;
}

.service-content p {
    color: #3e5168;
    margin: 0;
    line-height: 1.6;
}

.service-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1b6fdc;
    font-weight: 600;
    text-decoration: none;
}

.service-link:hover {
    color: #0b1c2d;
}

@media (max-width: 991px) {
    .services-header {
        padding: 24px;
    }

    .services-header .text-right {
        text-align: left;
        margin-top: 16px;
    }
}

@media (max-width: 767px) {
    .section-bg {
        padding: 60px 0 50px;
    }

    .services-header h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .section-bg {
        padding: 50px 0 40px;
    }

    .service-image img {
        height: 160px;
    }

    .services-header {
        padding: 20px 0;
    }

    .services-header h2 {
        font-size: 1.75rem;
    }

    .service-content h4 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.95rem;
    }
}
/*** Services Cards Section End ***/

/*** Why Choose Us Section Start ***/
#why-choose-us {
    position: relative;
    padding: 90px 0;
    color: #f2f6ff;
    background: radial-gradient(circle at 15% 20%, rgba(105, 169, 255, 0.18), transparent 55%),
        linear-gradient(160deg, #0a1a2c 0%, #122b48 55%, #0c1f36 100%);
}

#why-choose-us::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/") center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

#why-choose-us .container {
    position: relative;
    z-index: 1;
}

#why-choose-us .section-title-left .subtitle {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #b9d7ff;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

#why-choose-us .section-title-left h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

#why-choose-us .description {
    margin-top: 18px;
    color: #d8e4f6;
    line-height: 1.7;
}

.features-grid {
    margin-top: 28px;
}

.feature-item {
    display: flex;
    gap: 14px;
    padding: 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 32px rgba(5, 20, 40, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 40px rgba(5, 20, 40, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.feature-text h4 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-text p {
    margin: 0;
    color: #d3def1;
    line-height: 1.6;
}

.experience-image-wrapper {
    position: relative;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(5, 20, 40, 0.35);
}

.experience-image-wrapper img {
    border-radius: 18px;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 14px 18px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1b6fdc, #69a9ff);
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(12, 54, 110, 0.45);
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

@media (max-width: 991px) {
    #why-choose-us {
        padding: 70px 0;
    }

    #why-choose-us .section-title-left h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    #why-choose-us {
        padding: 60px 0;
    }

    .features-grid {
        gap: 20px;
    }

    .feature-item {
        padding: 16px;
    }

    .experience-image-wrapper {
        padding: 12px;
    }
}

@media (max-width: 575px) {
    .feature-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 14px;
    }

    .experience-badge {
        top: 16px;
        left: 16px;
        padding: 12px 16px;
    }

    .experience-badge .number {
        font-size: 1.8rem;
    }

    #why-choose-us .section-title-left h2 {
        font-size: 1.75rem;
    }
}
/*** Why Choose Us Section End ***/

/*** About Section Start ***/
#about-section {
    position: relative;
    padding: 90px 0;
    background: radial-gradient(circle at 12% 25%, rgba(105, 169, 255, 0.16), transparent 55%),
        linear-gradient(160deg, #0b1c2d 0%, #122d4a 55%, #0f2238 100%);
    color: #f2f6ff;
}

#about-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/") center/cover no-repeat;
    opacity: 0.05;
    pointer-events: none;
}

#about-section .container {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    padding: 14px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 50px rgba(5, 20, 40, 0.35);
}

.about-image-wrapper img {
    border-radius: 18px;
    display: block;
}

.about-content .section-title-left .subtitle {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #b9d7ff;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 14px;
}

.about-content .section-title-left h2 {
    margin: 0;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.about-text p {
    color: #d8e4f6;
    line-height: 1.7;
}

.about-features {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 14px 28px rgba(5, 20, 40, 0.25);
}

.about-feature-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.about-feature-item span {
    color: #f1f6ff;
    font-weight: 600;
}

@media (max-width: 991px) {
    #about-section {
        padding: 70px 0;
    }
}
/*** About Section End ***/

/*** Pricing Policy Section Start ***/
#pricing-policy {
    padding: 90px 0;
    background: radial-gradient(circle at 18% 22%, rgba(105, 169, 255, 0.14), transparent 52%), 
                linear-gradient(165deg, #0b1c2d 0%, #122d4a 50%, #0f2238 100%);
    position: relative;
    overflow: hidden;
}

#pricing-policy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 85% 75%, rgba(27, 111, 220, 0.08), transparent 45%);
    pointer-events: none;
}

#pricing-policy .container {
    position: relative;
    z-index: 2;
}

#pricing-policy .pricing-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

#pricing-policy .pricing-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

#pricing-policy .pricing-header .section-description {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.82);
    max-width: 850px;
    margin: 0 auto;
}

#pricing-policy .policy-box {
    background: rgba(18, 45, 74, 0.45);
    backdrop-filter: blur(10px);
    padding: 40px 35px;
    border-radius: 20px;
    border: 1px solid rgba(105, 169, 255, 0.18);
    box-shadow: 0 10px 30px rgba(10, 26, 44, 0.4);
    transition: all 0.4s ease;
    height: 100%;
}

#pricing-policy .policy-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(27, 111, 220, 0.3);
    border-color: rgba(105, 169, 255, 0.35);
    background: rgba(18, 45, 74, 0.55);
}

#pricing-policy .policy-box h3 {
    font-size: 26px;
    font-weight: 700;
    color: #69a9ff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

#pricing-policy .policy-box p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

#pricing-policy .policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

#pricing-policy .policy-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

#pricing-policy .policy-list li:hover {
    transform: translateX(8px);
    color: #ffffff;
}

#pricing-policy .policy-list li i {
    color: #69a9ff;
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

#pricing-policy .policy-note {
    text-align: center;
    margin-top: 50px;
    padding: 30px 40px;
    background: rgba(27, 111, 220, 0.12);
    border-left: 4px solid #69a9ff;
    border-radius: 14px;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 20px rgba(10, 26, 44, 0.25);
}

#pricing-policy .policy-note i {
    color: #69a9ff;
    font-size: 20px;
    margin-right: 10px;
    vertical-align: middle;
}

#pricing-policy .policy-note strong {
    color: #69a9ff;
    font-weight: 600;
}

@media (max-width: 991px) {
    #pricing-policy {
        padding: 60px 0;
    }

    #pricing-policy .pricing-header h2 {
        font-size: 34px;
    }

    #pricing-policy .pricing-header .section-description {
        font-size: 16px;
    }

    #pricing-policy .policy-box {
        padding: 30px 25px;
        margin-bottom: 25px;
    }

    #pricing-policy .policy-box h3 {
        font-size: 23px;
    }

    #pricing-policy .policy-note {
        padding: 25px 30px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    #pricing-policy .pricing-header h2 {
        font-size: 28px;
    }

    #pricing-policy .policy-box {
        padding: 25px 20px;
    }

    #pricing-policy .policy-box h3 {
        font-size: 21px;
    }

    #pricing-policy .policy-list li {
        font-size: 14px;
    }

    #pricing-policy .policy-note {
        padding: 20px 25px;
        font-size: 14px;
    }
}
/*** Pricing Policy Section End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)), url(../img/);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/


/*** Service Start ***/
.service .service-item {
    border-radius: 10px;
}
.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service .service-item:hover .service-content .service-content-inner .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/


/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, .1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-light);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, .2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-white);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
} 

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/


/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}


.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, .6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/


/*** copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, .08);
}
/*** copyright end ***/

/*** Custom Footer Start ***/
.footer-container {
    position: relative;
    overflow: hidden;
    color: #e9eff7;
    background: radial-gradient(circle at top left, rgba(1, 95, 201, 0.25), transparent 45%),
        linear-gradient(135deg, #0f1c2e, #0a2b4a 45%, #0c3a63);
}

.footer-container::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/") center/cover no-repeat;
    opacity: 0.06;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px 40px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.footer-col h3 {
    color: #ffffff;
    font-size: 1.25rem;
    margin-bottom: 18px;
}

.footer-logo h2 {
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.footer-col.about p {
    color: #d9e4f2;
    line-height: 1.7;
    margin-bottom: 22px;
}

.footer-contact-info {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #d9e4f2;
}

.footer-contact-item i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    transition: transform 0.3s ease, background 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
    background: var(--bs-primary);
}

.footer-col.links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.footer-col.links a {
    color: #d9e4f2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col.links a:hover {
    color: #ffffff;
}

.footer-hours {
    display: grid;
    gap: 14px;
}

.hour-item {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hour-day {
    color: #ffffff;
    font-weight: 600;
}

.hour-time {
    color: #c7d6ea;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    padding: 18px 12px 28px;
    color: #c7d6ea;
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 50px 20px 30px;
    }

    .footer-col h3 {
        font-size: 1.15rem;
    }
}

@media (max-width: 767px) {
    .footer-content {
        gap: 24px;
        padding: 40px 15px 25px;
    }

    .footer-col h3 {
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

    .footer-logo h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 575px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 35px 10px 20px;
    }

    .footer-contact-item,
    .social-links {
        justify-content: center;
    }

    .footer-contact-item {
        flex-direction: column;
        gap: 8px;
    }

    .footer-col h3 {
        font-size: 1.05rem;
    }

    .footer-logo h2 {
        font-size: 1.3rem;
    }

    .footer-col.about p {
        font-size: 0.95rem;
    }

    .footer-bottom {
        padding: 15px 10px 20px;
        font-size: 0.9rem;
    }
}
/*** Custom Footer End ***/

/*** Quick Call Button Start ***/
.hizli-ara-buton {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--bs-primary), #1c7ed6);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(1, 95, 201, 0.35);
    animation: quickCallFloat 3.5s ease-in-out infinite;
}

.hizli-ara-buton i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    font-size: 16px;
    animation: quickCallPulse 2s ease-in-out infinite;
}

.hizli-ara-buton span {
    font-weight: 600;
    letter-spacing: 0.2px;
}

.hizli-ara-buton:hover {
    color: #ffffff;
    box-shadow: 0 16px 36px rgba(1, 95, 201, 0.45);
    transform: translateX(-50%) translateY(-2px);
}

@keyframes quickCallFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-6px);
    }
}

@keyframes quickCallPulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 575px) {
    .hizli-ara-buton {
        width: calc(100% - 50px);
        justify-content: center;
        bottom: 15px;
    }

    .hizli-ara-buton span {
        font-size: 0.9rem;
    }
}
/*** Quick Call Button End ***/

/*** Digital Store Buttons Start ***/
.dijital-magaza-buton-trendyol {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff6000, #ff7f00);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(255, 96, 0, 0.35);
    animation: digitalStoreFloat 4s ease-in-out infinite;
    font-size: 14px;
    font-weight: 600;
}

.dijital-magaza-buton-trendyol i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.dijital-magaza-buton-trendyol:hover {
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 96, 0, 0.45);
    transform: translateY(-2px);
}

.dijital-magaza-buton-hepsiburada {
    position: fixed;
    right: 20px;
    bottom: 130px;
    z-index: 999;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff3d00, #ff5722);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(255, 61, 0, 0.35);
    animation: digitalStoreFloat 4s ease-in-out infinite 0.5s;
    font-size: 14px;
    font-weight: 600;
}

.dijital-magaza-buton-hepsiburada i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

.dijital-magaza-buton-hepsiburada:hover {
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(255, 61, 0, 0.45);
    transform: translateY(-2px);
}

@keyframes digitalStoreFloat {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

@media (max-width: 575px) {
    .dijital-magaza-buton-trendyol,
    .dijital-magaza-buton-hepsiburada {
        right: 20px;
        left: 240px;
        width: calc(50% - 70px);
        padding: 8px 12px;
        font-size: 12px;
        margin-bottom: 10px;
    }

    .dijital-magaza-buton-trendyol {
        bottom: 80px;
    }

    .dijital-magaza-buton-hepsiburada {
        bottom: 130px;
    }

    .dijital-magaza-buton-trendyol i,
    .dijital-magaza-buton-hepsiburada i {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
/*** Digital Store Buttons End ***/


