/********** 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;
}

#spinner:not(.show) {
    opacity: 0;
    pointer-events: none;
}

/*** Button ***/
.btn {
    font-family: 'CoolverticaRegular', 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;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
  }
  .navbar .nav-item:hover .dropdown-menu,
  .navbar .nav-item:focus-within .dropdown-menu,
  .navbar .nav-item .dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
  }
}


/*** 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;
    opacity: 0.25; /* 50% opacity */
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: #055499;
    border-color: white;
}

.backToTop {
    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;
    opacity: 0.5; /* 50% opacity */
}

.backToTop:hover {
    background: #055499;
    border-color: white;
    color: #fff;
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.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 {
    min-height: 420px; /* Adjust as needed for your design */
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: #015EAC;
}

.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;
}

.about-carousel .owl-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 20px;
}

.about-carousel .owl-nav .owl-prev,
.about-carousel .owl-nav .owl-next {
    background: #ccc;
    border: 2.5px solid #ccc;
    color: #333;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    transition: border-color 0.2s;
    font-size: 2.2rem;
    outline: none;
}

@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: 'CoolverticaRegular', sans-serif;
    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;
}

.custom-navbar-toggler {
    z-index: 110;
    /* Or any number higher than other elements */
}

.form-wrapper {
    max-width: 900px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.08) 100%);
    backdrop-filter: blur(12px) saturate(160%);
    -webkit-backdrop-filter: blur(12px) saturate(160%);
    border-radius: 18px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
    padding: 32px;
    margin: auto;
}

.form-label {
    font-weight: 500;
    color: #555;
}

.form-control,
.form-check-input {
    border-radius: 8px;
    border: 1.5px solid #ccc;
}

.form-check-label {
    margin-left: 4px;
}

hr {
    border-top: 2px dashed #ccc;
}

body,
a,
li,
p {
    font-family: 'CoolverticaRegular', sans-serif !important;
    user-select: none;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE10+/Edge */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'LemonMilkRegular', sans-serif !important;
}

.form-bg {
    background: linear-gradient(to top right, rgb(8, 5, 93) 0%, rgb(27, 237, 245) 100%);
    color: #fff;

    min-height: 100vh;

    display: flex;

    flex-direction: column;
    justify-content: center;
}

.form-check-label {
    color: #555;
    /* Match the color of form-label */
}

/* Button CSS begins */

.pushable {
    position: relative;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    outline-offset: 4px;
    transition: filter 250ms;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
    /* Added shadow effect with dark grey */
    border-radius: 12px;
    /* Added rounded corners for all corners */
}

/* .shadow {
    xposition: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 10%;
    border-radius: 12px;
    background: hsl(0deg 0% 0% / 0.25);
    will-change: transform;
    transform: translateY(2px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
} */

.edge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(to left,
            hsl(220deg 100% 16%) 0%,
            hsl(220deg 100% 32%) 8%,
            hsl(220deg 100% 32%) 92%,
            hsl(220deg 100% 16%) 100%);
}

.front {
    display: block;
    position: relative;
    padding: 12px 42px;
    border-radius: 12px;
    font-size: 1.25rem;
    color: white;
    background: hsl(210, 80%, 38%);
    will-change: transform;
    transform: translateY(-4px);
    transition: transform 600ms cubic-bezier(0.3, 0.7, 0.4, 1);
}

.front.light-blue {
    background: #055499;
    color: hsl(0, 0%, 100%);
}

.pushable:hover {
    filter: brightness(110%);
}

.pushable:hover .front {
    transform: translateY(-6px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .front {
    transform: translateY(-2px);
    transition: transform 34ms;
}

.pushable:hover .shadow {
    transform: translateY(4px);
    transition: transform 250ms cubic-bezier(0.3, 0.7, 0.4, 1.5);
}

.pushable:active .shadow {
    transform: translateY(1px);
    transition: transform 34ms;
}

.pushable:focus:not(:focus-visible) {
    outline: none;
}

/* Button CSS ends */


/* Make pushable buttons smaller */
.pushable,
.pushable.btn-sm-responsive {
    font-size: 14px;
    height: 32px;
    min-width: 90px;
    padding: 0;
    border-radius: 10px;
}

.pushable .front {
    font-size: 1rem;
    padding: 6px 18px;
    height: 28px;
    line-height: 1.1;
}


/* Apply a 75% zoom for screens smaller than 768px */
@media screen and (max-width: 1366px) {
    html {
        zoom: 0.80;
    }
}

/* Apply a 60% zoom for screens smaller than 480px */
/* @media screen and (max-width: 480px) {
    html {
        zoom: 0.60;
    }
} */

html {
    filter: contrast(1.0) saturate(1.3);
}

/* Menu style begins */

.ftco-section {
    position: relative;
    background-color: #FFFFFF;
    z-index: 101;
    width: 100%;
    max-width: 100%;
}

.ftco-no-pt {
    padding-top: 0;
}

.ftco-no-pb {
    padding-bottom: 0;
}

.heading-section {
    font-size: 28px;
    color: #000;
}

.img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.ftco-navbar-light {
    background: #181d38 !important;
    z-index: 3;
    padding: 0;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light {
        background: #181d38 !important;
        position: relative;
        top: 0;
        padding: 10px 15px;
    }
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav {
        padding-bottom: 10px;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
    font-size: 11px;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    opacity: 1 !important;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:before {
    position: absolute;
    bottom: 0;
    left: 0;
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #055499;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

@media (prefers-reduced-motion: reduce) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:before {
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
    background-color: #fff;
    color: #055499;
}

.ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover:before {
    width: 100%;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        padding-left: 0;
        padding-right: 0;
        padding-top: .7rem;
        padding-bottom: .7rem;
        color: rgba(255, 255, 255, 0.7);
    }

    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link:hover {
        color: #055499  ;
    }
}

@media (max-width: 767.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item>.nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
    border: none;
    background: #fff;
    -webkit-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    -moz-box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    box-shadow: 0px 10px 34px -20px rgba(0, 0, 0, 0.41);
    border-radius: 4px;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
    font-size: 12px;
    color: #181d38;
}

.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:hover,
.ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item:focus {
    background: #055499;
    color: #fff;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu {
        display: block !important;
        background: #181d38;
    }

    .ftco-navbar-light .navbar-nav>.nav-item .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.8);
    }
}

.ftco-navbar-light .navbar-nav>.nav-item.cta>a {
    color: #fff;
    background: #6478eb;
    border-radius: 0px;
}

@media (max-width: 767.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.cta>a {
        color: #fff;
        background: #6478eb;
        border-radius: 4px;
    }
}

.ftco-navbar-light .navbar-nav>.nav-item.active>a {
    background-color: #fff;
    color: #055499;
}

@media (max-width: 991.98px) {
    .ftco-navbar-light .navbar-nav>.nav-item.active>a {
        color: #fff;
    }
}

.ftco-navbar-light .navbar-toggler {
    border: none;
    color: rgba(255, 255, 255, 0.5) !important;
    cursor: pointer;
    padding-right: 0;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: .1em;
}

.ftco-navbar-light .navbar-toggler:focus {
    outline: none !important;
}

.transparent-navbar {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.1) 100%) !important;
    backdrop-filter: blur(8px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(8px) saturate(180%) !important;
    text-align: right;
    color: #fff !important;
    border: none !important;
    /* box-shadow: 0 4px 9px 0 rgba(222, 224, 250, 0.18); Shadow effect */
}

.transparent-navbar .navbar-nav .nav-link,
.transparent-navbar .navbar-brand,
.transparent-navbar .navbar-toggler {
    color: #fff !important;
    font-size: small;
    font-weight:lighter;
    font-family: GrotleyRegular, sans-serif !important;
}

.transparent-navbar .dropdown-menu a {
    font-family: GrotleyRegular, sans-serif !important;
}

.transparent-navbar a span{
    color: #fff !important;
    font-size: bigger;
    font-weight: lighter;
}


.transparent-navbar .navbar-nav .nav-link:hover,
.transparent-navbar .navbar-nav .nav-link.active {
    color: hsl(210, 80%, 38%) !important; /* gold/yellow on hover/active */
}


.navbar-brand {
    color: #000;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.navbar-brand span {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.3);
}

.navbar-brand:hover,
.navbar-brand:focus {
    color: #000;
}

/* Menus style ends */

@media (max-width: 768px) {
    .btn-sm-responsive {
        font-size: 0.8rem !important;
        /*padding: 0.10rem 0.5rem !important;*/
        min-width: 80px;
        height: 34px !important;
    }

    .btn-sm-responsive .front {
        font-size: 0.95em !important;
        padding: 6px 14px !important;
        height: 28px !important;
        line-height: 1.1 !important;
    }

    .pushable.btn-sm-responsive {
        border-radius: 10px;
        height: 34px !important;
    }
}

.owl-carousel-item,
.owl-carousel-item .embed-responsive {
    height: 400px !important;
}

.owl-carousel-item .embed-responsive video,
.owl-carousel-item>video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block;
}

.owl-carousel .owl-item img,
.owl-carousel .owl-item video {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

/* Make video fill the height of its parent container */
.owl-carousel-item .embed-responsive video,
.owl-carousel-item>video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

@media (max-width: 767.98px) {

    .owl-carousel-item h5,
    .owl-carousel-item .h5,
    .owl-carousel-item h1,
    .owl-carousel-item .h1 {
        font-size: 1.1rem !important;
    }

    .owl-carousel-item p,
    .owl-carousel-item .fs-5 {
        font-size: 0.95rem !important;
    }

}

@media (max-width: 991.98px) {
    .owl-carousel-item .col-lg-6 {
        min-height: unset !important;
        height: auto !important;
    }

    .owl-carousel-item .position-relative.h-100 {
        position: static !important;
        height: auto !important;
    }

    .owl-carousel-item img.position-absolute {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        min-height: unset !important;
        object-fit: cover;
    }
}

/* Responsive font size for CreativePiks brand */
.creativepiks-brand {
    font-family: 'AzonixRegular', sans-serif;
    font-size: clamp(12px, 5vw, 24px);
    line-height: 1.1;
}

.creativepiks-slogan {
    font-family: 'VadelmaRegular', sans-serif;
    font-size: clamp(8px, 3vw, 12px);
    line-height: 2;
}

.about-carousel .owl-carousel-item,
.about-carousel .owl-carousel-item .embed-responsive {
    height: auto !important;
    min-height: 0 !important;
}

.text-slider-heading {
    /* color: #055499; */
    color: #fff;
}



/* --- Keep only one set of .about-carousel rules, remove duplicates below --- */