/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/* Dropdown */

.dropdown{
    position:relative;
}

.dropdown-menu-custom{
    position:absolute;
    top:100%;
    left:0;
    width:280px;
    background:#111;
    border-top:3px solid #D4AF37;
    border-radius:10px;
    padding:10px 0;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.35);
    z-index:9999;
}

.dropdown:hover .dropdown-menu-custom{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu-custom a{
    display:block;
    padding:14px 20px;
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:16px;
}

.dropdown-menu-custom a:hover{
    background:#D4AF37;
    color:#000;
    padding-left:28px;
}

/* =========================================================
   HERO VIDEO SECTION
   FULLY RESPONSIVE - MOBILE / TABLET / LAPTOP / DESKTOP
========================================================= */

.hero-video-section {
    position: relative;
    width: 100%;
    min-height: 680px;

    height: 100vh;
    height: 100svh;
    height: 100dvh;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #050505;

    isolation: isolate;
}


/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.hero-bg-video {
    position: absolute;

    top: 50%;
    left: 50%;

    width: 100%;
    height: 100%;

    min-width: 100%;
    min-height: 100%;

    transform: translate(-50%, -50%);

    object-fit: cover;
    object-position: center center;

    z-index: -3;

    pointer-events: none;
}


/* =========================================================
   VIDEO OVERLAY
========================================================= */

.hero-video-overlay {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.62) 42%,
            rgba(0, 0, 0, 0.78) 100%
        );

    z-index: -2;

    pointer-events: none;
}


/* Bottom gradient */

.hero-video-overlay::after {
    content: "";

    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.35) 0%,
            transparent 38%,
            rgba(0, 0, 0, 0.88) 100%
        );
}


/* =========================================================
   GLOW EFFECTS
========================================================= */

.hero-glow {
    position: absolute;

    width: clamp(220px, 25vw, 400px);
    height: clamp(220px, 25vw, 400px);

    border-radius: 50%;

    filter: blur(100px);

    opacity: 0.22;

    z-index: -1;

    pointer-events: none;

    animation: glowMove 8s ease-in-out infinite alternate;
}

.hero-glow-1 {
    background: #ff0080;

    top: -160px;
    left: -120px;
}

.hero-glow-2 {
    background: #00d4ff;

    right: -120px;
    bottom: -160px;

    animation-delay: 2s;
}


@keyframes glowMove {

    0% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(60px, 40px, 0) scale(1.2);
    }

    100% {
        transform: translate3d(-30px, -40px, 0) scale(1);
    }
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;

    z-index: 5;

    width: 100%;

    max-width: 1250px;

    margin: 0 auto;

    padding:
        clamp(90px, 10vh, 130px)
        clamp(20px, 4vw, 50px)
        clamp(70px, 9vh, 110px);

    text-align: center;

    box-sizing: border-box;
}


/* =========================================================
   BADGE
========================================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    max-width: 100%;

    padding: 10px 22px;

    margin: 0 auto 24px;

    border: 1px solid rgba(255, 255, 255, 0.25);

    border-radius: 50px;

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    color: #ffffff;

    font-size: clamp(12px, 1vw, 15px);

    line-height: 1.4;

    font-weight: 500;

    letter-spacing: 0.5px;

    text-align: center;

    box-sizing: border-box;

    animation: fadeDown 1s ease forwards;
}


.badge-dot {
    flex: 0 0 auto;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #00ff88;

    box-shadow:
        0 0 8px #00ff88,
        0 0 18px #00ff88;

    animation: pulseDot 1.5s infinite;
}


@keyframes pulseDot {

    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}


/* =========================================================
   MAIN TITLE
========================================================= */

.hero-title {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto 24px;

    font-size: clamp(42px, 5.5vw, 86px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: clamp(-2px, -0.15vw, -0.5px);

    color: #ffffff;

    overflow-wrap: break-word;

    text-wrap: balance;

    animation: titleReveal 1.2s ease forwards;
}


/* =========================================================
   MULTICOLOR TEXT
========================================================= */

.gradient-text {
    display: inline;

    background:
        linear-gradient(
            90deg,
            #ff0080,
            #ff8a00,
            #ffe600,
            #00ff87,
            #00c6ff,
            #7b2cff,
            #ff0080
        );

    background-size: 300% 100%;

    -webkit-background-clip: text;
    background-clip: text;

    -webkit-text-fill-color: transparent;

    animation: gradientAnimation 6s linear infinite;
}


@keyframes gradientAnimation {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero-description {
    width: 100%;

    max-width: 760px;

    margin: 0 auto 34px;

    color: rgba(255, 255, 255, 0.88);

    font-size: clamp(15px, 1.35vw, 19px);

    line-height: 1.7;

    font-weight: 400;

    text-wrap: balance;

    animation: fadeUp 1.2s ease forwards;
}


/* =========================================================
   BUTTONS
========================================================= */

.hero-buttons {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 15px;

    width: 100%;

    flex-wrap: wrap;

    animation: fadeUp 1.4s ease forwards;
}


.hero-btn {
    position: relative;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-width: 180px;

    max-width: 100%;

    padding: 15px 30px;

    border-radius: 50px;

    text-decoration: none;

    font-size: 16px;

    line-height: 1.2;

    font-weight: 700;

    white-space: nowrap;

    box-sizing: border-box;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;

    overflow: hidden;
}


.hero-btn i {
    flex: 0 0 auto;

    font-size: 18px;
}


/* =========================================================
   PRIMARY BUTTON
========================================================= */

.hero-btn-primary {
    color: #111111;

    background:
        linear-gradient(
            90deg,
            #ffc107,
            #ffea00,
            #ffc107
        );

    background-size: 200% auto;

    box-shadow:
        0 10px 30px rgba(255, 193, 7, 0.30);

    animation: buttonGradient 3s linear infinite;
}


.hero-btn-primary:hover {
    transform: translateY(-5px) scale(1.03);

    color: #111111;

    box-shadow:
        0 15px 40px rgba(255, 193, 7, 0.50);
}


/* =========================================================
   SECONDARY BUTTON
========================================================= */

.hero-btn-secondary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.5);

    background: rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}


.hero-btn-secondary:hover {
    transform: translateY(-5px);

    color: #ffffff;

    background: rgba(255, 255, 255, 0.18);

    border-color: #ffffff;

    box-shadow:
        0 10px 30px rgba(255, 255, 255, 0.15);
}


@keyframes buttonGradient {

    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.hero-highlights {
    display: flex;

    justify-content: center;
    align-items: center;

    gap: 20px 35px;

    width: 100%;

    margin-top: 42px;

    flex-wrap: wrap;

    animation: fadeUp 1.6s ease forwards;
}


.highlight-item {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: rgba(255, 255, 255, 0.85);

    font-size: clamp(12px, 1vw, 14px);

    line-height: 1.4;

    font-weight: 500;

    white-space: nowrap;
}


.highlight-item i {
    flex: 0 0 auto;

    font-size: 17px;

    background:
        linear-gradient(
            90deg,
            #ff0080,
            #00c6ff
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;
}


/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator {
    position: absolute;

    bottom: 22px;
    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 6px;

    color: rgba(255, 255, 255, 0.7);

    font-size: 11px;

    letter-spacing: 1px;

    text-transform: uppercase;

    white-space: nowrap;
}


.scroll-indicator i {
    font-size: 14px;

    animation: scrollDown 1.5s infinite;
}


@keyframes scrollDown {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5;
    }

    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes fadeDown {

    from {
        opacity: 0;
        transform: translateY(-25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes titleReveal {

    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


/* =========================================================
   EXTRA LARGE DESKTOP
   1600px+
========================================================= */

@media (min-width: 1600px) {

    .hero-content {
        max-width: 1400px;

        padding-left: 60px;
        padding-right: 60px;
    }

    .hero-title {
        max-width: 1150px;

        font-size: 88px;
    }

    .hero-description {
        max-width: 820px;

        font-size: 20px;
    }

    .hero-highlights {
        margin-top: 48px;
    }
}


/* =========================================================
   LARGE DESKTOP
   1200px - 1599px
========================================================= */

@media (min-width: 1200px) and (max-width: 1599px) {

    .hero-content {
        max-width: 1250px;
    }

    .hero-title {
        font-size: clamp(60px, 5.5vw, 82px);
    }
}


/* =========================================================
   LAPTOP
   993px - 1199px
========================================================= */

@media (min-width: 993px) and (max-width: 1199px) {

    .hero-video-section {
        min-height: 650px;
    }

    .hero-content {
        max-width: 1050px;

        padding:
            85px 30px
            70px;
    }

    .hero-title {
        max-width: 900px;

        font-size: clamp(50px, 6vw, 68px);
    }

    .hero-description {
        max-width: 680px;

        font-size: 17px;
    }

    .hero-highlights {
        margin-top: 35px;

        gap: 18px 28px;
    }
}


/* =========================================================
   TABLET / SMALL LAPTOP
   769px - 992px
========================================================= */

@media (min-width: 769px) and (max-width: 992px) {

    .hero-video-section {
        min-height: 650px;

        height: 100svh;
    }

    .hero-content {
        max-width: 900px;

        padding:
            80px 25px
            70px;
    }

    .hero-title {
        max-width: 800px;

        font-size: clamp(44px, 7vw, 62px);

        letter-spacing: -1.5px;
    }

    .hero-description {
        max-width: 650px;

        font-size: 17px;

        line-height: 1.65;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        min-width: 170px;

        padding: 14px 25px;
    }

    .hero-highlights {
        margin-top: 35px;

        gap: 15px 25px;
    }

    .highlight-item {
        font-size: 13px;
    }

    .scroll-indicator {
        bottom: 18px;
    }
}


/* =========================================================
   MOBILE / TABLET
   577px - 768px
========================================================= */

@media (max-width: 768px) {

    .hero-video-section {
        min-height: 680px;

        height: 100svh;
        height: 100dvh;
    }


    /* Mobile video positioning */

    .hero-bg-video {
        object-position: center center;
    }


    /* Mobile overlay */

    .hero-video-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, 0.76) 0%,
                rgba(0, 0, 0, 0.63) 45%,
                rgba(0, 0, 0, 0.91) 100%
            );
    }


    .hero-content {
        max-width: 100%;

        padding:
            75px 20px
            75px;
    }


    .hero-badge {
        max-width: 92%;

        padding: 8px 15px;

        margin-bottom: 20px;

        font-size: 12px;

        line-height: 1.4;
    }


    .badge-dot {
        width: 8px;
        height: 8px;
    }


    .hero-title {
        max-width: 650px;

        margin-bottom: 18px;

        font-size: clamp(35px, 8.5vw, 52px);

        line-height: 1.08;

        letter-spacing: -1px;
    }


    .hero-description {
        max-width: 600px;

        margin-bottom: 26px;

        font-size: 15px;

        line-height: 1.6;
    }


    .hero-buttons {
        gap: 11px;
    }


    .hero-btn {
        min-width: 155px;

        padding: 13px 22px;

        font-size: 14px;
    }


    .hero-btn i {
        font-size: 16px;
    }


    .hero-highlights {
        gap: 13px 22px;

        margin-top: 30px;
    }


    .highlight-item {
        font-size: 12px;
    }


    .highlight-item i {
        font-size: 15px;
    }


    .scroll-indicator {
        display: none;
    }
}


/* =========================================================
   MOBILE
   577px and below
========================================================= */

@media (max-width: 576px) {

    .hero-video-section {
        min-height: 680px;

        height: 100svh;
        height: 100dvh;
    }


    .hero-content {
        padding:
            65px 15px
            65px;
    }


    .hero-badge {
        max-width: 94%;

        padding: 8px 13px;

        gap: 7px;

        font-size: 11px;
    }


    .badge-dot {
        width: 7px;
        height: 7px;
    }


    .hero-title {
        max-width: 100%;

        margin-bottom: 18px;

        font-size: clamp(31px, 10vw, 43px);

        line-height: 1.1;

        letter-spacing: -0.5px;
    }


    .hero-description {
        max-width: 94%;

        margin-bottom: 24px;

        font-size: 14px;

        line-height: 1.55;
    }


    /* Buttons stack */

    .hero-buttons {
        flex-direction: column;

        width: 100%;

        gap: 11px;
    }


    .hero-btn {
        width: min(88%, 300px);

        min-width: 0;

        padding: 13px 20px;

        font-size: 14px;
    }


    .hero-highlights {
        gap: 10px 16px;

        margin-top: 27px;
    }


    .highlight-item {
        font-size: 11px;
    }


    .highlight-item i {
        font-size: 14px;
    }


    /* Reduce glow on mobile */

    .hero-glow {
        width: 220px;
        height: 220px;

        filter: blur(80px);

        opacity: 0.18;
    }
}


/* =========================================================
   SMALL MOBILE
   400px and below
========================================================= */

@media (max-width: 400px) {

    .hero-video-section {
        min-height: 650px;
    }


    .hero-content {
        padding:
            55px 12px
            60px;
    }


    .hero-badge {
        font-size: 10px;

        padding: 7px 11px;
    }


    .hero-title {
        font-size: 30px;

        line-height: 1.08;
    }


    .hero-description {
        font-size: 13px;

        line-height: 1.5;
    }


    .hero-btn {
        width: 90%;

        padding: 12px 18px;

        font-size: 13px;
    }


    .hero-highlights {
        gap: 8px 13px;

        margin-top: 23px;
    }


    .highlight-item {
        font-size: 10px;
    }


    .highlight-item i {
        font-size: 13px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   360px and below
========================================================= */

@media (max-width: 360px) {

    .hero-video-section {
        min-height: 620px;
    }


    .hero-content {
        padding:
            50px 10px
            55px;
    }


    .hero-title {
        font-size: 28px;

        letter-spacing: -0.4px;
    }


    .hero-description {
        font-size: 12.5px;
    }


    .hero-btn {
        width: 92%;

        padding: 11px 16px;

        font-size: 12.5px;
    }


    .hero-highlights {
        display: none;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
========================================================= */

@media (max-width: 900px) and (orientation: landscape) {

    .hero-video-section {
        min-height: 600px;

        height: auto;
    }


    .hero-content {
        padding:
            80px 25px
            70px;
    }


    .hero-title {
        font-size: clamp(36px, 6vw, 52px);

        margin-bottom: 15px;
    }


    .hero-description {
        max-width: 650px;

        font-size: 14px;

        margin-bottom: 20px;
    }


    .hero-highlights {
        margin-top: 25px;
    }


    .scroll-indicator {
        display: none;
    }
}


/* =========================================================
   LARGE HEIGHT SCREENS
   Prevent content from looking too small
========================================================= */

@media (min-height: 900px) and (min-width: 769px) {

    .hero-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }


    .hero-highlights {
        margin-top: 50px;
    }
}


/* =========================================================
   SHORT DESKTOP / LAPTOP SCREENS
   Prevent vertical overflow
========================================================= */

@media (min-width: 769px) and (max-height: 750px) {

    .hero-video-section {
        min-height: 620px;
    }


    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }


    .hero-badge {
        margin-bottom: 15px;
    }


    .hero-title {
        margin-bottom: 15px;
    }


    .hero-description {
        margin-bottom: 20px;
    }


    .hero-highlights {
        margin-top: 25px;
    }
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-glow,
    .badge-dot,
    .gradient-text,
    .hero-btn-primary,
    .scroll-indicator i,
    .hero-badge,
    .hero-title,
    .hero-description,
    .hero-buttons,
    .hero-highlights {
        animation: none !important;
    }

    .hero-btn {
        transition: none !important;
    }
}


/* =========================================================
   BOX SIZING SAFETY
========================================================= */

.hero-video-section *,
.hero-video-section *::before,
.hero-video-section *::after {
    box-sizing: border-box;
}


/* =========================================================
   PREVENT HORIZONTAL OVERFLOW
========================================================= */

.hero-video-section {
    max-width: 100%;
}

.hero-video-section img,
.hero-video-section video {
    max-width: 100%;
}



/* =========================================================
   MAIN SECTION
========================================================= */

.novix-apply-section {

    position: relative;

    width: 100%;

    padding: 85px 20px;

    background: #faf9f5;

    border-top: 1px solid #e9e4d8;

    border-bottom: 1px solid #e9e4d8;

    overflow: hidden;

    font-family: inherit;
}


/* Background Gold Glow */

.novix-apply-section::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 420px;

    border-radius: 50%;

    background: rgba(207, 169, 67, 0.07);

    filter: blur(100px);

    top: -220px;

    left: -150px;

    pointer-events: none;
}


.novix-apply-section::after {

    content: "";

    position: absolute;

    width: 380px;

    height: 380px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.035);

    filter: blur(90px);

    bottom: -200px;

    right: -120px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.novix-apply-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1170px;

    margin: 0 auto;
}


/* =========================================================
   MAIN ROW
========================================================= */

.novix-apply-row {

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT SIDE
========================================================= */

.novix-apply-left {

    width: 100%;
}


.novix-apply-eyebrow {

    display: inline-block;

    margin-bottom: 13px;

    color: #b38a24;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


/* =========================================================
   TITLE
========================================================= */

.novix-apply-title {

    max-width: 650px;

    margin: 0 0 18px;

    color: #080808;

    font-size: clamp(38px, 4.5vw, 58px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.8px;
}


.novix-apply-title span {

    background:
        linear-gradient(
            90deg,
            #b07d08,
            #e0b83e,
            #a87506
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* =========================================================
   INTRO
========================================================= */

.novix-apply-intro {

    max-width: 600px;

    margin: 0 0 35px;

    color: #656158;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   STEP
========================================================= */

.novix-apply-step {

    display: flex;

    align-items: center;

    gap: 19px;

    position: relative;

    min-height: 74px;
}


/* =========================================================
   STEP NUMBER
========================================================= */

.novix-apply-step-number {

    flex-shrink: 0;

    width: 51px;

    height: 51px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 6px;

    color: #ffffff;

    background: #090909;

    font-size: 17px;

    font-weight: 800;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.10);

    transition: all 0.35s ease;
}


.novix-apply-step:hover .novix-apply-step-number {

    color: #080808;

    background: #d8b449;

    transform: scale(1.05);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.novix-apply-step-content h3 {

    margin: 0 0 6px;

    color: #101010;

    font-size: 19px;

    line-height: 1.3;

    font-weight: 650;
}


.novix-apply-step-content p {

    margin: 0;

    color: #69645b;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================================================
   CONNECTOR
========================================================= */

.novix-apply-connector {

    width: 1px;

    height: 35px;

    margin: 4px 0 4px 25px;

    border-left:
        2px dashed #c9c1ae;
}


/* =========================================================
   RIGHT SIDE
========================================================= */

.novix-apply-right {

    width: 100%;
}


.novix-apply-form-title {

    margin: 0 0 26px;

    color: #090909;

    font-size: 37px;

    line-height: 1.1;

    font-weight: 500;

    letter-spacing: -0.7px;
}


/* =========================================================
   FORM CARD
========================================================= */

.novix-apply-form-card {

    width: 100%;

    padding: 25px;

    background: #ffffff;

    border: 1px solid #e9e3d6;

    border-radius: 13px;

    box-shadow:
        0 12px 35px rgba(0,0,0,0.08);
}


/* =========================================================
   NOTICE
========================================================= */

.novix-apply-notice {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    min-height: 55px;

    margin-bottom: 20px;

    padding: 10px 15px;

    border-radius: 7px;

    background: #f2f0ec;

    color: #161616;

    font-size: 14px;

    font-weight: 600;

    text-align: center;
}


.novix-apply-notice i {

    color: #bd901e;

    font-size: 15px;
}


/* =========================================================
   FORM FIELDS
========================================================= */

.novix-apply-field {

    margin-bottom: 15px;
}


.novix-apply-field input,
.novix-apply-field select {

    width: 100%;

    height: 48px;

    padding: 0 13px;

    border: 1px solid #d4d0c7;

    border-radius: 5px;

    outline: none;

    background: #ffffff;

    color: #161616;

    font-family: inherit;

    font-size: 14px;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}


.novix-apply-field input::placeholder {

    color: #8b8a86;
}


.novix-apply-field select {

    color: #77736b;

    cursor: pointer;
}


.novix-apply-field input:focus,
.novix-apply-field select:focus {

    border-color: #c49b32;

    box-shadow:
        0 0 0 3px rgba(196,155,50,0.10);
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.novix-apply-submit {

    width: 100%;

    min-height: 59px;

    margin-top: 4px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    border: 0;

    border-radius: 6px;

    cursor: pointer;

    color: #ffffff;

    background: #0a0a0a;

    font-family: inherit;

    font-size: 15px;

    font-weight: 650;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.novix-apply-submit i {

    font-size: 12px;

    color: #e0bb52;

    transition: transform 0.3s ease;
}


.novix-apply-submit:hover {

    background: #bd921e;

    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(189,146,30,0.20);
}


.novix-apply-submit:hover i {

    color: #ffffff;

    transform: translateX(4px);
}


/* =========================================================
   WHATSAPP
========================================================= */

.novix-apply-whatsapp {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

    margin-top: 18px;

    color: #77736b;

    font-size: 12px;
}


.novix-apply-whatsapp a {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color: #0b9e6c;

    text-decoration: none;

    font-weight: 700;

    transition: color 0.3s ease;
}


.novix-apply-whatsapp a:hover {

    color: #087d56;
}


.novix-apply-whatsapp a i {

    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .novix-apply-section {

        padding: 70px 25px;
    }


    .novix-apply-row {

        grid-template-columns:
            1fr 0.9fr;

        gap: 40px;
    }


    .novix-apply-title {

        font-size: 43px;

        letter-spacing: -1.2px;
    }


    .novix-apply-form-title {

        font-size: 32px;
    }


    .novix-apply-form-card {

        padding: 22px;
    }

}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 768px) {

    .novix-apply-section {

        padding: 60px 18px;
    }


    .novix-apply-row {

        grid-template-columns: 1fr;

        gap: 50px;
    }


    .novix-apply-title {

        max-width: 100%;

        font-size: 39px;

        line-height: 1.1;
    }


    .novix-apply-intro {

        font-size: 14px;

        margin-bottom: 30px;
    }


    .novix-apply-step {

        align-items: flex-start;

        gap: 15px;
    }


    .novix-apply-step-number {

        width: 47px;

        height: 47px;

        font-size: 16px;
    }


    .novix-apply-step-content h3 {

        font-size: 18px;
    }


    .novix-apply-step-content p {

        font-size: 12.5px;
    }


    .novix-apply-connector {

        height: 30px;

        margin-left: 23px;
    }


    .novix-apply-form-title {

        margin-bottom: 20px;

        font-size: 32px;
    }


    .novix-apply-form-card {

        padding: 20px;

        border-radius: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .novix-apply-section {

        padding: 50px 14px;
    }


    .novix-apply-eyebrow {

        font-size: 10px;

        letter-spacing: 1.4px;
    }


    .novix-apply-title {

        font-size: 31px;

        letter-spacing: -0.7px;
    }


    .novix-apply-intro {

        font-size: 13px;

        line-height: 1.6;
    }


    .novix-apply-step {

        gap: 12px;
    }


    .novix-apply-step-number {

        width: 43px;

        height: 43px;

        font-size: 15px;
    }


    .novix-apply-step-content h3 {

        font-size: 16px;

        margin-bottom: 5px;
    }


    .novix-apply-step-content p {

        font-size: 11.5px;

        line-height: 1.5;
    }


    .novix-apply-connector {

        margin-left: 21px;

        height: 25px;
    }


    .novix-apply-form-title {

        font-size: 29px;
    }


    .novix-apply-form-card {

        padding: 17px;
    }


    .novix-apply-notice {

        min-height: 50px;

        font-size: 12px;

        padding: 8px 10px;
    }


    .novix-apply-field input,
    .novix-apply-field select {

        height: 46px;

        font-size: 13px;
    }


    .novix-apply-submit {

        min-height: 54px;

        font-size: 14px;
    }


    .novix-apply-whatsapp {

        flex-direction: column;

        gap: 4px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .novix-apply-title {

        font-size: 28px;
    }


    .novix-apply-form-title {

        font-size: 26px;
    }


    .novix-apply-step-content h3 {

        font-size: 15px;
    }

}






/* =========================================================
   MAIN SECTION
========================================================= */

.novix-package-section {

    width: 100%;

    padding: 85px 20px;

    background: #ffffff;

    position: relative;

    overflow: hidden;

    font-family: inherit;
}


/* Soft Background Glow */

.novix-package-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(218, 165, 32, 0.07);

    filter: blur(100px);

    top: -250px;

    right: -180px;

    pointer-events: none;
}


.novix-package-section::after {

    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.035);

    filter: blur(90px);

    bottom: -200px;

    left: -150px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.novix-package-container {

    max-width: 1100px;

    margin: 0 auto;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.novix-package-header {

    max-width: 760px;

    margin-bottom: 42px;
}


.novix-package-label {

    display: inline-block;

    margin-bottom: 12px;

    color: #b28a18;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.novix-package-header h2 {

    margin: 0 0 16px;

    color: #080808;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: -2px;
}


.novix-package-header h2 span {

    display: inline;

    background:

        linear-gradient(
            90deg,
            #b8860b,
            #e4bd54,
            #a87808
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.novix-package-header p {

    max-width: 700px;

    margin: 0;

    color: #626262;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   PACKAGE GRID
========================================================= */

.novix-package-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-bottom: 42px;
}


/* =========================================================
   PACKAGE CARD
========================================================= */

.novix-package-card {

    position: relative;

    min-height: 310px;

    padding: 24px 20px;

    background: #ffffff;

    border: 1px solid #e6e1d5;

    border-radius: 17px;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;

    overflow: hidden;
}


/* Gold top line */

.novix-package-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background:
        linear-gradient(
            90deg,
            #9d7207,
            #e7c65a,
            #9d7207
        );

    transition: width 0.4s ease;
}


.novix-package-card:hover {

    transform: translateY(-7px);

    border-color: #d5bb70;

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.08);
}


.novix-package-card:hover::before {

    width: 100%;
}


/* =========================================================
   FEATURED CARD
========================================================= */

.novix-package-featured {

    border-color: #c9a83d;

    box-shadow:
        0 10px 30px rgba(185, 143, 26, 0.10);
}


.novix-package-popular {

    position: absolute;

    top: 0;

    right: 0;

    padding: 7px 12px;

    background: #c29a2e;

    color: #ffffff;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 0.7px;

    border-radius:
        0 17px 0 12px;
}


/* =========================================================
   CARD TITLE
========================================================= */

.novix-package-card-top {

    min-height: 70px;
}


.novix-package-small-title {

    display: block;

    margin-bottom: 7px;

    color: #998d72;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;
}


.novix-package-card h3 {

    margin: 0;

    color: #090909;

    font-size: 19px;

    line-height: 1.25;

    font-weight: 750;
}


/* =========================================================
   PRICE / VALUE
========================================================= */

.novix-package-price {

    margin-top: 18px;

    color: #090909;

    font-size: 30px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;
}


.novix-package-price-text {

    margin-top: 5px;

    color: #8a8a8a;

    font-size: 11px;

    font-weight: 500;
}


/* =========================================================
   LINE
========================================================= */

.novix-package-line {

    width: 100%;

    height: 1px;

    margin: 17px 0;

    background: #eee9df;
}


/* =========================================================
   PACKAGE LIST
========================================================= */

.novix-package-list {

    list-style: none;

    padding: 0;

    margin: 0;
}


.novix-package-list li {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    margin-bottom: 10px;

    color: #555555;

    font-size: 11px;

    line-height: 1.4;
}


.novix-package-list li i {

    flex-shrink: 0;

    margin-top: 2px;

    color: #bd901d;

    font-size: 10px;
}


/* =========================================================
   BOTTOM AREA
========================================================= */

.novix-package-bottom {

    margin-bottom: 30px;
}


.novix-package-bottom h3 {

    margin: 0 0 16px;

    color: #0a0a0a;

    font-size: 18px;

    font-weight: 750;
}


/* =========================================================
   TAGS
========================================================= */

.novix-package-tags {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;
}


.novix-package-tags span {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 8px 13px;

    border: 1px solid #e3dfd5;

    border-radius: 50px;

    background: #ffffff;

    color: #4f4b42;

    font-size: 11px;

    font-weight: 500;

    transition: all 0.3s ease;
}


.novix-package-tags span i {

    color: #b58a1c;

    font-size: 11px;
}


.novix-package-tags span:hover {

    border-color: #c9a83d;

    color: #9a730e;

    background: #fffdf6;

    transform: translateY(-2px);
}


/* =========================================================
   CTA
========================================================= */

.novix-package-cta {

    display: flex;

    justify-content: center;

    align-items: center;

    margin-top: 28px;
}


.novix-package-whatsapp-btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 22px;

    min-width: 238px;

    border-radius: 9px;

    text-decoration: none;

    color: #ffffff;

    background: #0bbf83;

    font-size: 13px;

    font-weight: 750;

    box-shadow:
        0 10px 25px rgba(11, 191, 131, 0.20);

    transition: all 0.35s ease;
}


.novix-package-whatsapp-btn i:first-child {

    font-size: 17px;
}


.novix-package-whatsapp-btn i:last-child {

    font-size: 11px;

    transition: transform 0.3s ease;
}


.novix-package-whatsapp-btn:hover {

    color: #ffffff;

    background: #08a972;

    transform: translateY(-4px);

    box-shadow:
        0 14px 30px rgba(11, 191, 131, 0.30);
}


.novix-package-whatsapp-btn:hover i:last-child {

    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .novix-package-section {

        padding: 75px 20px;
    }


    .novix-package-grid {

        grid-template-columns:
            repeat(2, 1fr);

        gap: 14px;
    }


    .novix-package-card {

        min-height: 300px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .novix-package-section {

        padding: 60px 16px;
    }


    .novix-package-header {

        margin-bottom: 32px;
    }


    .novix-package-header h2 {

        font-size: 38px;

        letter-spacing: -1px;
    }


    .novix-package-header p {

        font-size: 14px;

        line-height: 1.65;
    }


    .novix-package-grid {

        grid-template-columns: 1fr;

        gap: 12px;
    }


    .novix-package-card {

        min-height: auto;

        padding: 23px 20px;
    }


    .novix-package-card-top {

        min-height: auto;
    }


    .novix-package-price {

        font-size: 28px;
    }


    .novix-package-bottom {

        margin-top: 38px;
    }


    .novix-package-tags {

        gap: 7px;
    }


    .novix-package-tags span {

        font-size: 10.5px;

        padding: 8px 11px;
    }


    .novix-package-whatsapp-btn {

        width: 100%;

        max-width: 290px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .novix-package-section {

        padding: 50px 14px;
    }


    .novix-package-header h2 {

        font-size: 32px;

        line-height: 1.1;
    }


    .novix-package-header p {

        font-size: 13px;
    }


    .novix-package-card {

        border-radius: 15px;
    }


    .novix-package-card h3 {

        font-size: 18px;
    }


    .novix-package-price {

        font-size: 27px;
    }


    .novix-package-list li {

        font-size: 11px;
    }


    .novix-package-tags span {

        font-size: 10px;

        padding: 7px 10px;
    }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .novix-package-header h2 {

        font-size: 29px;
    }


    .novix-package-tags span {

        width: 100%;

        justify-content: center;
    }

}






/* =========================================================
   SECTION
========================================================= */

.novix-tools-section {

    position: relative;

    width: 100%;

    padding: 85px 20px;

    background: #ffffff;

    overflow: hidden;

    border-top: 1px solid #eee9dd;

    border-bottom: 1px solid #eee9dd;

    font-family: inherit;
}


/* Background Glow */

.novix-tools-section::before {

    content: "";

    position: absolute;

    width: 500px;

    height: 500px;

    border-radius: 50%;

    background: rgba(211, 170, 57, 0.08);

    filter: blur(110px);

    top: -250px;

    left: -170px;

    pointer-events: none;
}


.novix-tools-section::after {

    content: "";

    position: absolute;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.035);

    filter: blur(100px);

    bottom: -250px;

    right: -150px;

    pointer-events: none;
}


/* =========================================================
   CONTAINER
========================================================= */

.novix-tools-container {

    position: relative;

    z-index: 2;

    width: 100%;

    max-width: 1170px;

    margin: 0 auto;
}


/* =========================================================
   HEADER
========================================================= */

.novix-tools-header {

    text-align: center;

    max-width: 900px;

    margin: 0 auto 30px;
}


.novix-tools-label {

    display: inline-block;

    margin-bottom: 10px;

    color: #ad8012;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.novix-tools-header h2 {

    margin: 0 0 13px;

    color: #090909;

    font-size: clamp(34px, 4vw, 48px);

    line-height: 1.12;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.novix-tools-header h2 span {

    background:
        linear-gradient(
            90deg,
            #a87408,
            #e3bd4e,
            #a87508
        );

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.novix-tools-header p {

    max-width: 850px;

    margin: 0 auto;

    color: #65615a;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   MAIN TOOLS BOX
========================================================= */

.novix-tools-box {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;

    padding: 28px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            #050505 0%,
            #0b1111 55%,
            #11100b 100%
        );

    border: 1px solid #252116;

    box-shadow:
        0 25px 60px rgba(0,0,0,0.12);

    position: relative;

    overflow: hidden;
}


/* Gold ambient line */

.novix-tools-box::before {

    content: "";

    position: absolute;

    width: 60%;

    height: 1px;

    left: 20%;

    top: 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #d7ad3c,
            transparent
        );

    opacity: 0.8;
}


/* =========================================================
   TOOL CARD
========================================================= */

.novix-tool-card {

    position: relative;

    min-height: 165px;

    padding: 24px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border-radius: 17px;

    background:
        linear-gradient(
            145deg,
            #252525,
            #1b1b1b
        );

    border: 1px solid rgba(255,255,255,0.035);

    transition:
        transform 0.4s cubic-bezier(.2,.8,.2,1),
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        background 0.4s ease;

    animation:
        novixToolFloat 5s ease-in-out infinite;
}


/* Different animation delays */

.novix-tool-card:nth-child(2) {
    animation-delay: -1s;
}

.novix-tool-card:nth-child(3) {
    animation-delay: -2s;
}

.novix-tool-card:nth-child(4) {
    animation-delay: -3s;
}

.novix-tool-card:nth-child(5) {
    animation-delay: -1.5s;
}

.novix-tool-card:nth-child(6) {
    animation-delay: -2.5s;
}

.novix-tool-card:nth-child(7) {
    animation-delay: -3.5s;
}

.novix-tool-card:nth-child(8) {
    animation-delay: -4s;
}


/* Floating Animation */

@keyframes novixToolFloat {

    0%,
    100% {

        transform: translateY(0);
    }

    50% {

        transform: translateY(-5px);
    }
}


/* =========================================================
   TOOL CARD HOVER
========================================================= */

.novix-tool-card:hover {

    animation-play-state: paused;

    transform:
        translateY(-10px)
        scale(1.025);

    border-color: rgba(219,176,62,0.65);

    background:
        linear-gradient(
            145deg,
            #292721,
            #171717
        );

    box-shadow:
        0 15px 35px rgba(0,0,0,0.35),
        0 0 25px rgba(211,168,49,0.10);
}


/* =========================================================
   TOOL LOGO
========================================================= */

.novix-tool-logo {

    position: relative;

    width: 58px;

    height: 58px;

    margin-bottom: 14px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 15px;

    background: #ffffff;

    box-shadow:
        0 7px 18px rgba(0,0,0,0.25);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.novix-tool-card:hover .novix-tool-logo {

    transform:
        translateY(-3px)
        rotate(-2deg);

    box-shadow:
        0 10px 25px rgba(214,173,61,0.22);
}


.novix-tool-logo img {

    width: 34px;

    height: 34px;

    object-fit: contain;

    display: block;
}


/* Fallback initials */

.novix-tool-logo span {

    display: none;

    color: #111111;

    font-size: 14px;

    font-weight: 800;
}


.novix-tool-logo.novix-tool-fallback span {

    display: block;
}


/* =========================================================
   TOOL NAME
========================================================= */

.novix-tool-card h3 {

    margin: 0;

    color: #ffffff;

    font-size: 15px;

    font-weight: 650;

    line-height: 1.3;
}


/* =========================================================
   TOOL DESCRIPTION
========================================================= */

.novix-tool-card small {

    display: block;

    margin-top: 6px;

    color: #a9a59b;

    font-size: 10px;

    line-height: 1.3;
}


/* =========================================================
   GOLD CORNER EFFECT
========================================================= */

.novix-tool-card::after {

    content: "";

    position: absolute;

    width: 35px;

    height: 35px;

    top: 0;

    right: 0;

    border-top:
        2px solid transparent;

    border-right:
        2px solid transparent;

    border-radius: 0 17px 0 0;

    transition: all 0.35s ease;
}


.novix-tool-card:hover::after {

    border-top-color: #d8b34b;

    border-right-color: #d8b34b;
}


/* =========================================================
   BOTTOM CTA AREA
========================================================= */

.novix-tools-bottom {

    margin-top: 28px;

    padding: 25px 28px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    border-radius: 16px;

    background: #faf8f2;

    border: 1px solid #e8dfcb;
}


.novix-tools-bottom-text {

    max-width: 700px;
}


.novix-tools-mini-label {

    display: block;

    margin-bottom: 6px;

    color: #b18720;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.5px;
}


.novix-tools-bottom h3 {

    margin: 0 0 5px;

    color: #0b0b0b;

    font-size: 20px;

    font-weight: 750;
}


.novix-tools-bottom p {

    margin: 0;

    color: #6b665d;

    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.novix-tools-btn {

    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    min-width: 205px;

    padding: 14px 21px;

    border-radius: 8px;

    background: #0a0a0a;

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    box-shadow:
        0 8px 20px rgba(0,0,0,0.12);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}


.novix-tools-btn i:first-child {

    color: #31d69a;

    font-size: 17px;
}


.novix-tools-btn i:last-child {

    color: #d6ad3d;

    font-size: 10px;

    transition: transform 0.3s ease;
}


.novix-tools-btn:hover {

    color: #ffffff;

    background: #bd901d;

    transform: translateY(-3px);

    box-shadow:
        0 12px 25px rgba(189,144,29,0.20);
}


.novix-tools-btn:hover i:first-child,
.novix-tools-btn:hover i:last-child {

    color: #ffffff;
}


.novix-tools-btn:hover i:last-child {

    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 992px) {

    .novix-tools-section {

        padding: 70px 20px;
    }


    .novix-tools-box {

        grid-template-columns:
            repeat(3, 1fr);

        padding: 22px;

        gap: 13px;
    }


    .novix-tool-card {

        min-height: 155px;
    }


    .novix-tools-bottom {

        padding: 22px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .novix-tools-section {

        padding: 60px 15px;
    }


    .novix-tools-header {

        margin-bottom: 25px;
    }


    .novix-tools-header h2 {

        font-size: 34px;

        letter-spacing: -1px;
    }


    .novix-tools-header p {

        font-size: 13px;

        line-height: 1.65;
    }


    .novix-tools-box {

        grid-template-columns:
            repeat(2, 1fr);

        padding: 14px;

        gap: 10px;

        border-radius: 18px;
    }


    .novix-tool-card {

        min-height: 145px;

        padding: 18px 10px;

        border-radius: 13px;
    }


    .novix-tool-logo {

        width: 52px;

        height: 52px;

        margin-bottom: 11px;

        border-radius: 13px;
    }


    .novix-tool-logo img {

        width: 30px;

        height: 30px;
    }


    .novix-tool-card h3 {

        font-size: 13px;
    }


    .novix-tool-card small {

        font-size: 9px;
    }


    .novix-tools-bottom {

        flex-direction: column;

        align-items: stretch;

        text-align: center;

        padding: 22px 18px;

        gap: 18px;
    }


    .novix-tools-bottom-text {

        max-width: 100%;
    }


    .novix-tools-bottom h3 {

        font-size: 18px;
    }


    .novix-tools-bottom p {

        font-size: 11px;
    }


    .novix-tools-btn {

        width: 100%;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .novix-tools-section {

        padding: 50px 12px;
    }


    .novix-tools-header h2 {

        font-size: 29px;

        line-height: 1.12;
    }


    .novix-tools-header p {

        font-size: 12px;
    }


    .novix-tools-box {

        padding: 10px;

        gap: 8px;

        border-radius: 15px;
    }


    .novix-tool-card {

        min-height: 135px;

        padding: 15px 7px;
    }


    .novix-tool-logo {

        width: 46px;

        height: 46px;

        margin-bottom: 9px;
    }


    .novix-tool-logo img {

        width: 27px;

        height: 27px;
    }


    .novix-tool-card h3 {

        font-size: 12px;
    }


    .novix-tool-card small {

        font-size: 8px;
    }


    .novix-tools-bottom {

        padding: 20px 15px;

        border-radius: 13px;
    }


    .novix-tools-bottom h3 {

        font-size: 17px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .novix-tools-header h2 {

        font-size: 26px;
    }


    .novix-tool-card {

        min-height: 125px;
    }


    .novix-tool-logo {

        width: 42px;

        height: 42px;
    }


    .novix-tool-card h3 {

        font-size: 11px;
    }


    .novix-tool-card small {

        display: none;
    }

}


/* =========================================================
   REDUCE MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .novix-tool-card {

        animation: none !important;

        transition: none !important;
    }

    .novix-tool-card:hover {

        transform: none;
    }

}


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px 10px 0 0;
    background: rgba(3, 43, 243, 0.8);
    transition: .5s;
}

.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(210, 243, 235, 1), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #26d48c;
}

.contact-form {
    background: #26d48c;
}

/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

.modal-content{
    border-radius:20px;
}

.form-control,
.form-select{
    border-radius:10px;
    height:50px;
}

textarea.form-control{
    height:auto;
}

.modal-header{
    border-radius:20px 20px 0 0;
}

.btn-primary{
    transition:.3s;
}

.btn-primary:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(13,110,253,.25);
}

/* ================= FAQ SECTION ================= */

.faq-section{
padding:80px 8%;
background:#f8f8f8;
}

.faq-title{
text-align:center;
margin-bottom:50px;
}

.faq-title h2{
font-size:42px;
font-weight:700;
color:#111;
}

.faq-title span{
color:#D4AF37;
}

.faq-title p{
margin-top:10px;
color:#777;
}

.faq-wrapper{
max-width:1100px;
margin:auto;
}

.faq-item{
background:#fff;
margin-bottom:20px;
border-radius:15px;
overflow:hidden;
box-shadow:0 15px 40px rgba(0,0,0,.08);
transition:.3s;
}

.faq-item:hover{
transform:translateY(-3px);
}

.faq-question{
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 30px;
cursor:pointer;
font-size:18px;
font-weight:600;
color:#222;
}

.faq-question i{
width:40px;
height:40px;
border-radius:50%;
background:#D4AF37;
color:#fff;
display:flex;
align-items:center;
justify-content:center;
font-style:normal;
font-size:24px;
transition:.4s;
}

.faq-answer{
max-height:0;
overflow:hidden;
transition:max-height .5s ease;
background:#fcfcfc;
}

.faq-answer p{
padding:0 30px 25px;
font-size:16px;
line-height:30px;
color:#555;
}

.faq-item.active .faq-answer{
max-height:400px;
}

.faq-item.active i{
transform:rotate(45deg);
}

@media(max-width:768px){

.faq-section{
padding:60px 20px;
}

.faq-title h2{
font-size:30px;
}

.faq-question{
padding:20px;
font-size:16px;
}

.faq-answer p{
font-size:15px;
line-height:28px;
}

}

/* ===========================
   Floating WhatsApp Button
=========================== */

.whatsapp-float{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:18px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:38px;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,.35);
    transition:.35s;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:translateY(-6px) scale(1.08);
    background:#20ba5a;
    color:#fff;
}

.whatsapp-float::before{
    content:'';
    position:absolute;
    width:100%;
    height:100%;
    border-radius:18px;
    background:#25D366;
    z-index:-1;
    animation:ripple 2s infinite;
}

.tooltip-text{
    position:absolute;
    right:80px;
    background:#111;
    color:#fff;
    padding:8px 15px;
    border-radius:30px;
    font-size:14px;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    white-space:nowrap;
}

.whatsapp-float:hover .tooltip-text{
    opacity:1;
    visibility:visible;
}

@keyframes whatsappPulse{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }

}

@keyframes ripple{

    0%{
        transform:scale(1);
        opacity:.6;
    }

    100%{
        transform:scale(1.8);
        opacity:0;
    }

}

/* Mobile */

@media(max-width:768px){

.whatsapp-float{

    width:58px;
    height:58px;
    font-size:34px;
    right:18px;
    bottom:18px;

}

.tooltip-text{
    display:none;
}

}