/********** Template CSS **********/
:root {
    --primary: #06BBCC;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** 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;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.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;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/banner.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
/* === Noowsoft Final Responsive + Logo + SEO Visual Stability Fixes === */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
img { max-width: 100%; }
.site-navbar { min-height: 80px; }
.site-brand,
.navbar .navbar-brand {
    width: 180px !important;
    height: 80px !important;
    min-width: 180px;
    padding: 0 12px !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #fff;
}
.site-logo,
.navbar-brand .site-logo,
.navbar-brand img {
    width: 180px !important;
    height: 80px !important;
    max-width: 180px !important;
    max-height: 80px !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
    padding: 6px !important;
}
.navbar-light .navbar-nav .nav-link {
    white-space: nowrap;
    font-weight: 700;
}
.header-carousel .owl-carousel-item,
.header-carousel .owl-carousel-item img {
    min-height: 520px;
}
.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 72vh;
    max-height: 850px;
    object-fit: cover;
}
.course-item img,
.service-card-img,
.team-item img {
    width: 100%;
    object-fit: cover;
}
.course-item img { height: 250px; }
.team-item img { height: 300px; }
.page-header { background-size: cover; background-position: center; }
.service-item { transition: .3s ease; border-radius: 8px; overflow: hidden; }
.service-item:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,.08); }
.footer .btn.btn-link { text-transform: none; }

@media (max-width: 1199.98px) {
    .navbar-light .navbar-nav .nav-link { margin-right: 18px; font-size: 14px; }
    .call-button { padding-left: 24px !important; padding-right: 24px !important; }
}
@media (max-width: 991.98px) {
    .site-navbar { min-height: 72px; }
    .site-brand,
    .navbar .navbar-brand {
        width: 150px !important;
        height: 72px !important;
        min-width: 150px;
    }
    .site-logo,
    .navbar-brand .site-logo,
    .navbar-brand img {
        width: 150px !important;
        height: 72px !important;
        max-width: 150px !important;
        max-height: 72px !important;
    }
    .navbar-collapse { background: #fff; }
    .navbar-light .navbar-nav .nav-link { padding: 12px 0; color: #181d38; }
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img { min-height: 430px; height: 430px; }
    .display-3 { font-size: 2.25rem; }
}
@media (max-width: 767.98px) {
    .container-xxl.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img { min-height: 390px; height: 390px; }
    .header-carousel h1 { font-size: 1.9rem; line-height: 1.2; }
    .header-carousel p { font-size: 1rem !important; }
    .course-item img { height: 220px; }
    .team-item img { height: 260px; }
    .page-header .display-3 { font-size: 2rem; }
}
@media (max-width: 575.98px) {
    .site-brand,
    .navbar .navbar-brand {
        width: 128px !important;
        height: 68px !important;
        min-width: 128px;
    }
    .site-logo,
    .navbar-brand .site-logo,
    .navbar-brand img {
        width: 128px !important;
        height: 68px !important;
        max-width: 128px !important;
        max-height: 68px !important;
    }
    .navbar-toggler { margin-right: 12px !important; }
    .header-carousel .btn { display: inline-block; margin-bottom: 10px; padding: 10px 18px !important; }
    .header-carousel .owl-carousel-item,
    .header-carousel .owl-carousel-item img { min-height: 360px; height: 360px; }
    .header-carousel h1 { font-size: 1.55rem; }
    .service-item .p-4 { padding: 1.5rem !important; }
}

/* ===== Modern Home Hero Slider Fix ===== */
.modern-hero-slider {
    position: relative;
    min-height: calc(100vh - 74px);
    max-height: 860px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0 !important;
    background: #07111f;
}
.hero-bg-stack,
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}
.hero-bg {
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    animation: heroFade 12s infinite;
}
.hero-bg.active { opacity: 1; }
.hero-bg:nth-child(2) { animation-delay: 6s; }
.hero-overlay {
    background: linear-gradient(105deg, rgba(7,17,31,.95) 0%, rgba(7,17,31,.78) 45%, rgba(6,187,204,.18) 100%);
    z-index: 1;
}
.hero-shape {
    position: absolute;
    border-radius: 999px;
    background: rgba(6,187,204,.22);
    filter: blur(2px);
    z-index: 2;
}
.hero-shape-one {
    width: 320px;
    height: 320px;
    right: -120px;
    top: 90px;
}
.hero-shape-two {
    width: 180px;
    height: 180px;
    right: 24%;
    bottom: -60px;
    background: rgba(255,255,255,.12);
}
.hero-content-wrap {
    position: relative;
    z-index: 3;
    padding-top: 90px;
    padding-bottom: 90px;
}
.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    margin-bottom: 22px;
    color: #07111f;
    background: #06BBCC;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}
.hero-content h1 {
    color: #fff;
    font-size: clamp(2.4rem, 5vw, 5.4rem);
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 24px;
    max-width: 860px;
}
.hero-content p {
    color: rgba(255,255,255,.88);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: 34px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.btn-hero-primary,
.btn-hero-light {
    border-radius: 999px;
    padding: 15px 30px !important;
    font-weight: 800;
    box-shadow: 0 18px 40px rgba(0,0,0,.18);
}
.btn-hero-light { color: #07111f !important; }
.hero-feature-card {
    margin-left: auto;
    max-width: 430px;
    padding: 36px;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 28px;
    backdrop-filter: blur(16px);
    box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-feature-icon {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #07111f;
    background: #06BBCC;
    border-radius: 22px;
    font-size: 34px;
    margin-bottom: 24px;
}
.hero-feature-card h3 {
    color: #fff;
    font-size: 1.65rem;
    margin-bottom: 14px;
}
.hero-feature-card p { color: rgba(255,255,255,.82); }
.hero-feature-list {
    display: grid;
    gap: 11px;
    margin-top: 22px;
}
.hero-feature-list span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,.92);
    font-weight: 700;
}
.hero-feature-list i { color: #06BBCC; }
.quick-services-section {
    position: relative;
    z-index: 5;
    padding: 0 0 60px;
    margin-top: -68px;
}
.quick-services-section .service-item {
    background: rgba(240,251,252,.98);
    border: 1px solid rgba(6,187,204,.14);
    border-radius: 22px;
    box-shadow: 0 22px 60px rgba(24,29,56,.10);
    transition: .35s ease;
}
.quick-services-section .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(24,29,56,.16);
}
.about-img-box { min-height: 420px; border-radius: 24px; overflow: hidden; }
@keyframes heroFade {
    0%, 45% { opacity: 1; transform: scale(1); }
    50%, 95% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
@media (max-width: 991.98px) {
    .modern-hero-slider { min-height: auto; }
    .hero-content-wrap { padding-top: 70px; padding-bottom: 120px; }
    .hero-feature-card { max-width: 100%; margin-top: 10px; }
    .quick-services-section { margin-top: -50px; }
}
@media (max-width: 575.98px) {
    .hero-content-wrap { padding-top: 54px; padding-bottom: 95px; }
    .hero-content h1 { letter-spacing: -1px; }
    .hero-feature-card { padding: 24px; border-radius: 22px; }
    .quick-services-section { padding-bottom: 34px; }
}

/* FINAL premium fixes */
.quick-service-link,
.quick-service-link:hover,
.quick-service-link:focus {
    color: inherit;
    text-decoration: none;
    display: block;
    height: 100%;
}
.quick-service-card {
    position: relative;
    overflow: hidden;
    min-height: 178px;
}
.quick-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,187,204,.13), rgba(24,29,56,.05));
    opacity: 0;
    transition: .35s ease;
}
.quick-service-card > .p-4 {
    position: relative;
    z-index: 2;
}
.quick-service-card:hover::before { opacity: 1; }
.quick-service-card:hover h5,
.quick-service-card:hover i {
    opacity: 1 !important;
    visibility: visible !important;
    color: var(--primary) !important;
}
.quick-service-card h5 {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: .35s ease;
}
.quick-service-card:hover h5 { color: var(--dark) !important; }
.service-card-link,
.blog-card {
    display: block;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(24,29,56,.09);
    transition: .35s ease;
    background: #fff;
}
.service-card-link:hover,
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(24,29,56,.16);
}
.service-card-link img,
.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: .45s ease;
}
.service-card-link:hover img,
.blog-card:hover img { transform: scale(1.05); }
.service-detail-icon {
    width: 54px;
    height: 54px;
    margin: -42px auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--primary);
    border-radius: 16px;
    font-size: 22px;
    box-shadow: 0 14px 35px rgba(6,187,204,.35);
    position: relative;
    z-index: 3;
}
.service-detail-image,
.blog-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    box-shadow: 0 22px 70px rgba(24,29,56,.16);
}
.blog-detail-content {
    font-size: 1.08rem;
    line-height: 1.9;
    color: #52565b;
}
.modern-hero-slider .hero-overlay {
    background: linear-gradient(90deg, rgba(7,17,31,.88) 0%, rgba(7,17,31,.70) 45%, rgba(7,17,31,.42) 100%);
}
.hero-bg {
    filter: saturate(.9) contrast(1.02);
}
@media (max-width: 991.98px) {
    .service-card-link img,
    .blog-card img { height: 220px; }
    .quick-service-card { min-height: 155px; }
}
@media (max-width: 575.98px) {
    .quick-service-card h5 { min-height: auto; }
    .service-card-link img,
    .blog-card img { height: 210px; }
}
