/********** NOVEXA Template CSS **********/

/*** 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;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Fonts ***/
.font-work-sans {
    font-family: "Work Sans", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** NOVEXA Light BG Color ***/
.bg-primary-light {
    background: rgba(20, 108, 255, .12);
}

.bg-secondary-light {
    background: rgba(24, 214, 244, .10);
}

.bg-dark-light {
    background: rgba(11, 31, 77, .08);
}


/*** Button ***/
.btn {
    transition: .5s;
}

.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;
    border-radius: 30px;
}


/* Primary Button Hover */
.btn-primary:hover {
    background: #18D6F4;
    border-color: #18D6F4;
    color: #ffffff;
}


/* Secondary Button Hover */
.btn-secondary:hover {
    background: #146CFF;
    border-color: #146CFF;
    color: #ffffff;
}


/* Light Button Hover */
.btn-light:hover {
    color: #ffffff;
    background: #0B1F4D;
    border-color: #0B1F4D;
}


/* Dark Button Hover */
.btn-dark:hover {
    color: #ffffff;
    background: #146CFF;
    border-color: #146CFF;
}


/*** Top Bar ***/
.top-bar {
    height: 90px;
    padding: 0 90px;
    background: #ffffff;
}

.top-bar img {
    max-height: 50px;
}

@media (max-width: 991.98px) {
    .top-bar {
        padding: 0 30px;
    }
}


/*** Nav Bar ***/
.nav-bar {
    margin: 0 90px;
    border-radius: 50px;
    transition: .5s;
    z-index: 999;

    background: linear-gradient(
        90deg,
        #071A3D 0%,
        #0B1F4D 55%,
        #0D3474 100%
    ) !important;
}

@media (max-width: 991.98px) {
    .nav-bar {
        margin: 0 30px;
    }
}


/* Navbar Links */
.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 20px 0;
    color: #ffffff;
    font-size: 18px;
    outline: none;
}


/* Navbar Focus */
.navbar .navbar-nav .nav-link:focus {
    color: #ffffff;
}


/* Navbar Hover + Active */
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #18D6F4;
}


/* Dropdown Arrow */
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}


/*** Dropdown Menu ***/
.navbar .dropdown-menu {
    background: #0B1F4D !important;
}

.navbar .dropdown-item {
    color: #ffffff;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item.active {
    background: #146CFF;
    color: #ffffff;
}


/*** Mobile Navbar ***/
@media (max-width: 991.98px) {

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, .25);
    }
}


/*** Desktop Dropdown Animation ***/
@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;
    }
}


/*** Service ***/
.service-item .btn-square {
    width: 100px;
    height: 100px;
}


/*** Pricing ***/
.price .price-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(11, 31, 77, .05);
}


/*** Team ***/
.btn-social {
    display: flex;
    align-items: center;

    color: #0B1F4D;

    background: #ffffff;

    border-radius: 30px;
}

.btn-social:hover {
    color: #ffffff;
    background: #146CFF;
}


/*** Footer ***/
@media (min-width: 992px) {

    .footer::after {
        position: absolute;
        content: "";
        width: 1px;
        height: 100%;
        top: 0;
        left: 50%;

        background: rgba(255, 255, 255, .2);
    }
}


.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;

    color: #AAB6C8;

    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}


.footer .btn.btn-link:hover {
    color: #18D6F4;
    letter-spacing: 1px;
    box-shadow: none;
}


.footer .btn.btn-link::before {
    position: relative;

    content: "\f105";

    font-family: "Font Awesome 5 Free";

    font-weight: 900;

    color: #18D6F4;

    margin-right: 10px;
}


/*** Copyright ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.copyright a {
    color: #18D6F4;
}

.copyright a:hover {
    color: #146CFF;
}


/* =====================================================
   NOVEXA COLOR OVERRIDE
   Only color changes
===================================================== */

.bg-primary {
    background-color: #0B1F4D !important;
}

.bg-secondary {
    background-color: #F4F8FF !important;
}

.bg-dark {
    background-color: #07162F !important;
}

.bg-light {
    background-color: #FFFFFF !important;
}


.text-primary {
    color: #146CFF !important;
}

.text-secondary {
    color: #18D6F4 !important;
}

.text-dark {
    color: #0B1F4D !important;
}


/* Main Primary Buttons */
.btn-primary {
    background-color: #146CFF !important;
    border-color: #146CFF !important;
    color: #ffffff !important;
}


/* Main Secondary Buttons */
.btn-secondary {
    background-color: #0B1F4D !important;
    border-color: #0B1F4D !important;
    color: #ffffff !important;
}


/* Start Project Button */
.navbar .btn-light {
    background: #146CFF !important;
    border-color: #146CFF !important;
    color: #ffffff !important;
}

.navbar .btn-light:hover {
    background: #18D6F4 !important;
    border-color: #18D6F4 !important;
    color: #0B1F4D !important;
}


/* Login Button */
.navbar .btn-outline-light {
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, .65) !important;
}

.navbar .btn-outline-light:hover {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #0B1F4D !important;
}

/* =========================================
   NOVEXA DARK CARD TEXT / ICON FIX
========================================= */
/* =========================================
   SERVICE ICON + DARK CARD TEXT FIX
========================================= */


/* Default service icon color */
.service-item .btn-square {
    color: #0B1F4D !important;
}

.service-item .btn-square i,
.service-item .btn-square svg {
    color: inherit !important;
}


/* Dark navy icon boxes -> White icon */
.service-item .btn-square.bg-primary,
.service-item .btn-square.bg-dark,
.service-item .bg-primary.btn-square,
.service-item .bg-dark.btn-square {
    color: #FFFFFF !important;
}


/* Light / White icon boxes -> Navy icon */
.service-item .btn-square.bg-light,
.service-item .btn-square.bg-primary-light,
.service-item .btn-square.bg-secondary-light,
.service-item .bg-light.btn-square,
.service-item .bg-primary-light.btn-square,
.service-item .bg-secondary-light.btn-square {
    color: #0B1F4D !important;
}


/* Font Awesome icon inherit parent color */
.service-item .btn-square .fa,
.service-item .btn-square .fas,
.service-item .btn-square .far,
.service-item .btn-square .fab {
    color: inherit !important;
}


/* =========================================
   DARK BACKGROUND TEXT
========================================= */

.bg-dark,
.bg-primary,
.price-item.bg-dark,
.price-item.bg-primary {
    color: #FFFFFF !important;
}


/* Headings inside dark boxes */
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.bg-dark h6,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary h5,
.bg-primary h6 {
    color: #FFFFFF !important;
}


/* Paragraph / span / small inside dark boxes */
.bg-dark p,
.bg-dark span,
.bg-dark small,
.bg-primary p,
.bg-primary span,
.bg-primary small {
    color: rgba(255, 255, 255, 0.88) !important;
}


/* =========================================
   PRICING DARK HEADER FIX
========================================= */

.price .price-item.bg-dark *,
.price .price-item.bg-primary * {
    color: #FFFFFF !important;
}


/* Pricing amount inside dark header only */
.price .price-item.bg-dark h1,
.price .price-item.bg-dark h2,
.price .price-item.bg-dark .display-5,
.price .price-item.bg-dark .display-6,
.price .price-item.bg-primary h1,
.price .price-item.bg-primary h2,
.price .price-item.bg-primary .display-5,
.price .price-item.bg-primary .display-6 {
    color: #FFFFFF !important;
}


/* Pricing dollar / month inside dark header */
.price .price-item.bg-dark span,
.price .price-item.bg-dark small,
.price .price-item.bg-primary span,
.price .price-item.bg-primary small {
    color: rgba(255, 255, 255, 0.85) !important;
}
/* Hero Heading Color Fix */

.hero-header h1,
.hero-area h1,
.header-carousel h1 {
    color: #0B1F4D !important;
}

/* First line - Reach More */
.hero-header h1:first-child,
.hero-area h1:first-child {
    color: #0B1F4D !important;
}

/* Blue highlight line */
.hero-header .text-primary,
.hero-area .text-primary {
    color: #146CFF !important;
}
/* =====================================================
   NOVEXA PREMIUM HERO
===================================================== */

.novexa-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(24, 214, 244, 0.12),
            transparent 30%
        ),
        radial-gradient(
            circle at 10% 80%,
            rgba(20, 108, 255, 0.10),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f4f8ff 55%,
            #edf5ff 100%
        );

    border-bottom: 1px solid rgba(11, 31, 77, 0.06);
}


.novexa-hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    left: -180px;
    top: 60px;
    border-radius: 50%;
    background: rgba(20, 108, 255, 0.08);
    pointer-events: none;
}


.novexa-hero::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    right: -190px;
    bottom: -170px;
    border-radius: 50%;
    background: rgba(24, 214, 244, 0.08);
    pointer-events: none;
}


/* =====================================================
   HERO HEIGHT
===================================================== */

.min-vh-hero {
    min-height: 650px;
    padding-top: 70px;
    padding-bottom: 90px;
}


/* =====================================================
   HERO CONTENT
===================================================== */

.hero-content {
    position: relative;
    z-index: 5;
}


.hero-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    margin-bottom: 20px;

    border-radius: 50px;

    background: rgba(20, 108, 255, 0.08);

    color: #146cff;

    font-size: 14px;
    font-weight: 600;

    border: 1px solid rgba(20, 108, 255, 0.10);
}


.hero-title {
    max-width: 650px;
    margin-bottom: 24px;

    color: #0b1f4d;

    font-size: clamp(48px, 5vw, 75px);
    line-height: 1.05;

    font-weight: 600;
    letter-spacing: -2px;
}


.hero-title span {
    display: block;
    color: #146cff;
}


.hero-description {
    max-width: 610px;

    color: #667085;

    font-size: 17px;
    line-height: 1.8;

    margin-bottom: 28px;
}


/* =====================================================
   FEATURE ITEMS
===================================================== */

.hero-feature-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    max-width: 600px;

    gap: 15px;

    margin-bottom: 32px;
}


.hero-feature {
    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 14px;

    background: rgba(255, 255, 255, 0.78);

    border:
        1px solid rgba(20, 108, 255, 0.08);

    border-radius: 14px;

    backdrop-filter: blur(8px);
}


.hero-feature-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(20, 108, 255, 0.14),
            rgba(24, 214, 244, 0.15)
        );

    color: #146cff;

    font-size: 19px;
}


.hero-feature strong {
    display: block;

    color: #0b1f4d;

    font-size: 14px;

    margin-bottom: 2px;
}


.hero-feature span {
    display: block;

    color: #7b8496;

    font-size: 12px;
}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {
    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 15px;
}


.novexa-main-btn {
    padding: 15px 27px;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            #146cff,
            #18bfe5
        );

    border: none;

    border-radius: 50px;

    font-weight: 600;

    box-shadow:
        0 10px 28px rgba(20, 108, 255, 0.22);

    transition: 0.3s;
}


.novexa-main-btn:hover {
    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 14px 32px rgba(20, 108, 255, 0.30);
}


.novexa-outline-btn {
    padding: 14px 25px;

    color: #0b1f4d !important;

    background: rgba(255, 255, 255, 0.65);

    border:
        1px solid rgba(11, 31, 77, 0.15);

    border-radius: 50px;

    font-weight: 600;

    transition: 0.3s;
}


.novexa-outline-btn:hover {
    color: #146cff !important;

    background: #ffffff;

    border-color: #146cff;

    transform: translateY(-2px);
}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-visual {
    position: relative;

    padding: 20px;

    z-index: 3;
}


.hero-image-wrapper {
    position: relative;

    min-height: 520px;

    border-radius:
        120px 28px 120px 28px;

    overflow: visible;
}


.hero-main-image {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius:
        120px 28px 120px 28px;

    box-shadow:
        0 25px 60px rgba(11, 31, 77, 0.18);

    position: relative;
    z-index: 2;
}


/* =====================================================
   FLOATING CARDS
===================================================== */

.floating-card {
    position: absolute;

    z-index: 10;

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 14px 18px;

    min-width: 190px;

    border-radius: 16px;

    background:
        rgba(255, 255, 255, 0.94);

    box-shadow:
        0 15px 35px rgba(11, 31, 77, 0.15);

    border:
        1px solid rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(12px);
}


.floating-card-one {
    left: -35px;
    bottom: 70px;
}


.floating-card-two {
    right: -20px;
    top: 65px;
}


.floating-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 12px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #146cff,
            #18d6f4
        );

    font-size: 17px;
}


.floating-card small {
    display: block;

    color: #7a8495;

    font-size: 11px;
}


.floating-card strong {
    display: block;

    color: #0b1f4d;

    font-size: 13px;
}


/* =====================================================
   DECORATION
===================================================== */

.hero-decoration {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}


.hero-decoration-one {
    width: 130px;
    height: 130px;

    right: -35px;
    bottom: -30px;

    background:
        linear-gradient(
            135deg,
            rgba(20, 108, 255, 0.35),
            rgba(24, 214, 244, 0.18)
        );

    z-index: 1;
}


.hero-decoration-two {
    width: 90px;
    height: 90px;

    left: -20px;
    top: -20px;

    border:
        15px solid rgba(20, 108, 255, 0.08);

    z-index: 1;
}


/* =====================================================
   CAROUSEL CONTROLS
===================================================== */

.novexa-slider-control {
    width: 55px !important;
    height: 55px !important;

    top: 50% !important;

    transform: translateY(-50%);

    opacity: 1 !important;

    z-index: 20;
}


.novexa-slider-control span {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #0b1f4d;

    color: #ffffff;

    font-size: 17px;

    box-shadow:
        0 10px 25px rgba(11, 31, 77, 0.22);

    transition: 0.3s;
}


.novexa-slider-control span:hover {
    background: #146cff;

    transform: scale(1.08);
}


.novexa-prev {
    left: 20px !important;
}


.novexa-next {
    right: 20px !important;
}


/* =====================================================
   INDICATORS
===================================================== */

.novexa-indicators {
    bottom: 28px;
}


.novexa-indicators button {
    width: 10px !important;
    height: 10px !important;

    border: 0 !important;

    border-radius: 50% !important;

    background: #b9c3d4 !important;

    opacity: 1 !important;

    margin: 0 5px !important;

    transition: 0.3s;
}


.novexa-indicators button.active {
    width: 30px !important;

    border-radius: 30px !important;

    background: #146cff !important;
}


/* =====================================================
   CAROUSEL ANIMATION
===================================================== */

.carousel-item .hero-content {
    opacity: 0;
    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.carousel-item.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}


.carousel-item .hero-visual {
    opacity: 0;
    transform: translateX(30px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}


.carousel-item.active .hero-visual {
    opacity: 1;
    transform: translateX(0);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {

    .hero-title {
        font-size: 55px;
    }

    .hero-main-image {
        height: 470px;
    }

    .hero-image-wrapper {
        min-height: 470px;
    }

}


/* =====================================================
   MOBILE / TABLET
===================================================== */

@media (max-width: 991.98px) {

    .min-vh-hero {
        min-height: auto;

        padding-top: 70px;
        padding-bottom: 100px;
    }


    .hero-content {
        text-align: center;

        margin-bottom: 50px;
    }


    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-title {
        max-width: 100%;

        font-size: 50px;

        letter-spacing: -1px;
    }


    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }


    .hero-feature-grid {
        margin-left: auto;
        margin-right: auto;

        text-align: left;
    }


    .hero-actions {
        justify-content: center;
    }


    .hero-visual {
        padding:
            15px 35px;
    }


    .hero-main-image {
        height: 450px;
    }


    .hero-image-wrapper {
        min-height: 450px;
    }


    .floating-card-one {
        left: 0;
    }


    .floating-card-two {
        right: 0;
    }


    .novexa-slider-control {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .min-vh-hero {
        padding-top: 55px;
        padding-bottom: 80px;
    }


    .hero-title {
        font-size: 42px;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-feature-grid {
        grid-template-columns: 1fr;
    }


    .hero-actions {
        flex-direction: column;

        width: 100%;
    }


    .novexa-main-btn,
    .novexa-outline-btn {
        width: 100%;

        text-align: center;
    }


    .hero-main-image {
        height: 390px;

        border-radius:
            70px 20px 70px 20px;
    }


    .hero-image-wrapper {
        min-height: 390px;
    }


    .floating-card {
        min-width: 165px;

        padding: 10px 12px;
    }


    .floating-card-one {
        bottom: 30px;
    }


    .floating-card-two {
        top: 30px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .hero-title {
        font-size: 36px;
    }


    .hero-visual {
        padding: 10px 5px;
    }


    .hero-main-image {
        height: 340px;

        border-radius: 45px 15px 45px 15px;
    }


    .hero-image-wrapper {
        min-height: 340px;
    }


    .floating-card {
        display: none;
    }


    .novexa-indicators {
        bottom: 20px;
    }

}
/* =====================================================
   NOVEXA HERO - ALL SLIDES SAME HEIGHT FIX
===================================================== */

/* Desktop - all carousel slides same exact height */
.novexa-hero .carousel-item {
    height: 650px;
    overflow: hidden;
}

/* Inner row same height */
.novexa-hero .min-vh-hero {
    height: 650px;
    min-height: 650px;
    padding-top: 45px;
    padding-bottom: 55px;
}

/* Left content vertically centered */
.novexa-hero .hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Give heading same reserved space on every slide */
.novexa-hero .hero-title {
    min-height: 235px;
    margin-bottom: 18px;
}

/* Description same block height */
.novexa-hero .hero-description {
    min-height: 82px;
    margin-bottom: 20px;
}

/* Feature section same height */
.novexa-hero .hero-feature-grid {
    min-height: 74px;
    margin-bottom: 22px;
}

/* Right side same height */
.novexa-hero .hero-visual {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Image wrapper same size */
.novexa-hero .hero-image-wrapper {
    width: 100%;
    height: 500px;
    min-height: 500px;
}

/* Every slider image exact same dimensions */
.novexa-hero .hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) {

    .novexa-hero .carousel-item {
        height: 650px;
    }

    .novexa-hero .min-vh-hero {
        height: 650px;
        min-height: 650px;
    }

    .novexa-hero .hero-title {
        min-height: 220px;
    }

    .novexa-hero .hero-image-wrapper,
    .novexa-hero .hero-main-image {
        height: 450px;
        min-height: 450px;
    }
}


/* =====================================================
   MOBILE / TABLET STACK MODE
===================================================== */

@media (max-width: 991.98px) {

    /* Mobile-la fixed height use panna vendam */
    .novexa-hero .carousel-item {
        height: auto;
        overflow: visible;
    }

    .novexa-hero .min-vh-hero {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .novexa-hero .hero-content {
        height: auto;
    }

    .novexa-hero .hero-title,
    .novexa-hero .hero-description,
    .novexa-hero .hero-feature-grid {
        min-height: auto;
    }

    .novexa-hero .hero-visual {
        height: auto;
    }

    .novexa-hero .hero-image-wrapper,
    .novexa-hero .hero-main-image {
        height: 430px;
        min-height: 430px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .novexa-hero .hero-image-wrapper,
    .novexa-hero .hero-main-image {
        height: 360px;
        min-height: 360px;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .novexa-hero .hero-image-wrapper,
    .novexa-hero .hero-main-image {
        height: 310px;
        min-height: 310px;
    }
}
/* =====================================================
   NOVEXA HERO SLIDER TEXT OVERLAP FIX
===================================================== */

/* All slides exact same height */
.novexa-hero .carousel-item {
    height: 680px;
    overflow: hidden;
}

.novexa-hero .min-vh-hero {
    height: 680px;
    min-height: 680px;
    padding-top: 45px;
    padding-bottom: 65px;
}


/* Prevent flex items from shrinking and overlapping */
.novexa-hero .hero-title,
.novexa-hero .hero-description,
.novexa-hero .hero-feature-grid,
.novexa-hero .hero-actions,
.novexa-hero .hero-badge {
    flex-shrink: 0;
}


/* Heading */
.novexa-hero .hero-title {
    min-height: auto !important;
    max-width: 620px;
    margin-bottom: 20px;

    font-size: 64px;
    line-height: 1.05;
    letter-spacing: -1.5px;
}


/* Description */
.novexa-hero .hero-description {
    min-height: auto !important;
    max-width: 590px;
    margin-bottom: 22px;
    line-height: 1.7;
}


/* Features */
.novexa-hero .hero-feature-grid {
    min-height: auto !important;
    margin-bottom: 24px;
}


/* Keep left side vertically centered */
.novexa-hero .hero-content {
    height: auto !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Right image */
.novexa-hero .hero-image-wrapper {
    height: 500px;
    min-height: 500px;
}

.novexa-hero .hero-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
}


/* Tablet */
@media (max-width: 1199.98px) {

    .novexa-hero .hero-title {
        font-size: 54px;
    }
}


/* Mobile */
@media (max-width: 991.98px) {

    .novexa-hero .carousel-item {
        height: auto;
        overflow: visible;
    }

    .novexa-hero .min-vh-hero {
        height: auto;
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 90px;
    }

    .novexa-hero .hero-title {
        font-size: 48px;
    }
}


@media (max-width: 767.98px) {

    .novexa-hero .hero-title {
        font-size: 40px;
    }
}


@media (max-width: 575.98px) {

    .novexa-hero .hero-title {
        font-size: 34px;
    }
}