/*==================================================
ROOT VARIABLES
==================================================*/

:root {

    --primary: #2563eb;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --white: #ffffff;
    --text: #334155;
    --border: #e5e7eb;

    --gradient: linear-gradient(135deg, #2563eb, #06b6d4);

    --shadow: 0 20px 60px rgba(0, 0, 0, .08);

    --radius: 20px;

    --transition: .35s ease;

}

/*==================================================
RESET
==================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: 'Poppins', sans-serif;
    background: #fff;
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.8;

}

img {

    max-width: 100%;
    display: block;

}

a {

    text-decoration: none;
    transition: var(--transition);

}

/*==================================================
TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
h5 {

    color: var(--dark);
    font-weight: 700;
    margin-bottom: 18px;

}

h1 {

    font-size: 62px;
    line-height: 1.15;

}

h2 {

    font-size: 46px;

}

h3 {

    font-size: 34px;

}

section p {
    font-size: 16px;
    color: #64748b;
    font-weight: 400;
}

/*==================================================
SECTION TITLE
==================================================*/

.section-title {

    max-width: 760px;
    margin: auto;

}

.section-title h2 span {

    color: var(--primary);

}

.section-title p {

    margin-top: 20px;

}

.section-badge {

    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: #eff6ff;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 18px;

}

/*==================================================
BUTTONS
==================================================*/

.btn {

    border-radius: 50px;
    padding: 15px 34px;
    font-weight: 600;
    transition: .35s;

}

.btn-register {

    background: var(--gradient);
    color: #fff;
    border: none;
    box-shadow: 0 15px 40px rgba(37, 99, 235, .35);

}

.btn-register:hover {

    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 25px 60px rgba(37, 99, 235, .45);

}

.btn-outline-light {

    border: 2px solid rgba(255, 255, 255, .35);

}

.btn-outline-light:hover {

    background: #fff;
    color: var(--dark);

}

/*==================================================
HERO
==================================================*/

.hero-section {
padding: 0;
    position: relative;
    overflow: hidden;

}

.hero-bg {

    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;

}

.overlay {

    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(9, 15, 34, .75),
            rgba(9, 15, 34, .82));

}

.hero-section .container {

    position: relative;
    z-index: 5;

}

.hero-badge {

    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 22px;

    border-radius: 50px;

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(12px);

    color: #fff;

    margin-bottom: 25px;

    font-weight: 500;

}

.hero-section h1 {

    color: #fff;
    max-width: 700px;

}

.hero-section h1 span {

    display: block;
    background: linear-gradient(90deg, #38bdf8, #60a5fa, #fff);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero-section p {

    color: #dbeafe;
    max-width: 620px;
    font-size: 18px;
    margin: 25px 0 35px;

}

.hero-buttons {

    display: flex;
    gap: 18px;
    flex-wrap: wrap;

}

/*==================================================
HERO SLIDER
==================================================*/

.carousel-item {
    transition: transform .8s ease-in-out;
}

.carousel-indicators {
    bottom: 35px;
    gap: 10px;
}

.carousel-indicators button {

    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, .45);
    opacity: 1;
    transition: .3s;

}

.carousel-indicators .active {

    width: 42px;
    border-radius: 20px;
    background: #fff;

}

.carousel-control-prev,
.carousel-control-next {

    width: 60px;
    height: 60px;

    top: 50%;
    transform: translateY(-50%);

    background: rgba(255, 255, 255, .12);

    backdrop-filter: blur(15px);

    border-radius: 50%;

    opacity: 1;

    margin: 0 35px;

    transition: .35s;

}

.carousel-control-prev:hover,
.carousel-control-next:hover {

    background: var(--gradient);

}

.carousel-control-prev-icon,
.carousel-control-next-icon {

    width: 22px;
    height: 22px;

}

/*==================================================
FLOATING SHAPES
==================================================*/

.shape {

    position: absolute;
    border-radius: 50%;
    filter: blur(3px);
    animation: float 8s ease-in-out infinite;

}

.shape1 {

    width: 180px;
    height: 180px;

    background: rgba(37, 99, 235, .18);

    top: 10%;
    right: 8%;

}

.shape2 {

    width: 120px;
    height: 120px;

    background: rgba(6, 182, 212, .18);

    bottom: 15%;
    left: 8%;

    animation-delay: 2s;

}

.shape3 {

    width: 80px;
    height: 80px;

    background: rgba(255, 255, 255, .15);

    top: 55%;
    right: 25%;

    animation-delay: 4s;

}

/*==================================================
HERO ANIMATION
==================================================*/

.hero-badge {

    animation: fadeUp .8s ease;

}

.hero-section h1 {

    animation: fadeUp 1s ease;

}

.hero-section p {

    animation: fadeUp 1.2s ease;

}

.hero-buttons {

    animation: fadeUp 1.4s ease;

}

/*==================================================
STATS SECTION
==================================================*/

.stats-section {

    margin-top: -80px;
    position: relative;
    z-index: 10;

}

.stat-card {

    background: #fff;

    padding: 40px 25px;

    border-radius: 22px;

    text-align: center;

    box-shadow: var(--shadow);

    transition: .35s;

    height: 100%;

}

.stat-card:hover {

    transform: translateY(-10px);

}

.stat-card i {

    font-size: 42px;

    background: var(--gradient);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    margin-bottom: 18px;

    display: block;

}

.stat-card h2 {

    font-size: 42px;

    margin-bottom: 8px;

}

.stat-card p {

    margin: 0;
    font-weight: 500;

}

/*==================================================
COMMON CARD
==================================================*/

.feature-card,
.domain-card,
.process-card,
.duration-card,
.check-card,
.mini-card {

    background: #fff;

    border-radius: 22px;

    padding: 35px;

    box-shadow: var(--shadow);

    transition: .35s;

    height: 100%;

    position: relative;

    overflow: hidden;

}

.feature-card:hover,
.domain-card:hover,
.process-card:hover,
.duration-card:hover,
.check-card:hover,
.mini-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);

}

.feature-card::before,
.domain-card::before,
.process-card::before,
.duration-card::before {

    content: "";

    position: absolute;

    left: 0;
    top: 0;

    height: 5px;
    width: 100%;

    background: var(--gradient);

    transform: scaleX(0);

    transition: .35s;

}

.feature-card:hover::before,
.domain-card:hover::before,
.process-card:hover::before,
.duration-card:hover::before {

    transform: scaleX(1);

}

/*==================================================
FEATURE ICON
==================================================*/

.feature-icon {

    width: 75px;
    height: 75px;

    border-radius: 20px;

    background: linear-gradient(135deg, #eff6ff, #dbeafe);

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

}

.feature-icon i {

    font-size: 34px;

    color: var(--primary);

}

.feature-card h4 {

    margin-bottom: 15px;

    font-size: 22px;

}

.feature-card p {

    margin: 0;

}

/*==================================================
SECTION SPACING
==================================================*/

section {

    position: relative;

}

.bg-light {

    background: #f8fafc !important;

}

/*==================================================
BUILD SECTION
==================================================*/

.build-section {

    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    position: relative;
    overflow: hidden;

}

.build-section::before {

    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    top: -180px;
    right: -120px;

}

.build-section::after {

    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(6, 182, 212, .08);
    bottom: -120px;
    left: -100px;

}

.build-section img {

    border-radius: 28px;
    box-shadow: 0 35px 80px rgba(0, 0, 0, .35);

}

.build-section .section-badge {

    background: rgba(255, 255, 255, .12);
    color: #fff;

}

.build-section h2 {

    color: #fff;
    font-size: 48px;
    margin-bottom: 20px;

}

.build-section p {

    color: #dbeafe;
    font-size: 17px;

}

.mini-card {

    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: none;

}

.mini-card h3 {

    color: #fff;
    font-size: 40px;
    margin-bottom: 8px;

}

.mini-card p {

    color: #cbd5e1;
    margin: 0;

}

/*==================================================
DOMAIN SECTION
==================================================*/

.domain-section {

    background: #f8fafc;

}

.domain-card {

    text-align: center;
    padding: 45px 30px;

}

.domain-card i {

    font-size: 50px;
    margin-bottom: 25px;
    display: block;

    background: var(--gradient);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transition: .35s;

}

.domain-card h5 {

    font-size: 22px;
    margin-bottom: 0;

}

.domain-card:hover {

    background: var(--gradient);
    color: #fff;

}

.domain-card:hover h5 {

    color: #fff;

}

.domain-card:hover i {

    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    transform: scale(1.15);

}

/*==================================================
TIMELINE
==================================================*/

.timeline {

    max-width: 900px;
    margin: auto;
    position: relative;

}

.timeline::before {

    content: "";
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(#2563eb, #06b6d4);

}

.timeline-item {

    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    position: relative;

}

.timeline-icon {

    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 26px;

    flex-shrink: 0;

    box-shadow: 0 20px 40px rgba(37, 99, 235, .30);

}

.timeline-content {

    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);

}

.timeline-content h4 {

    margin-bottom: 12px;

}

.timeline-content p {

    margin: 0;

}

/*==================================================
CHECK CARD
==================================================*/

.check-card {

    padding: 40px;

}

.check-card ul li {

    display: flex;
    align-items: center;
    gap: 14px;

    padding: 18px 0;

    border-bottom: 1px solid #eef2f7;

    font-size: 17px;
    font-weight: 500;

}

.check-card ul li:last-child {

    border: none;

}

.check-card i {

    color: #22c55e;
    font-size: 22px;

}

/*==================================================
SECTION HOVER EFFECTS
==================================================*/

.build-section .btn-register:hover {

    transform: translateY(-5px) scale(1.03);

}

.timeline-content:hover,
.domain-card:hover,
.feature-card:hover,
.check-card:hover,
.mini-card:hover {

    transition: .35s;

}



/*==================================================
DURATION SECTION
==================================================*/

.duration-section {
    background: #ffffff;
}

.duration-card {
    text-align: center;
    padding: 45px 30px;
    border: 2px solid transparent;
}

.duration-card h3 {
    font-size: 34px;
    margin-bottom: 10px;
    color: var(--dark);
}

.duration-card p {
    margin: 0;
    color: #64748b;
}

.duration-card.featured {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 25px 60px rgba(37, 99, 235, .25);
}

.duration-card.featured h3,
.duration-card.featured p {
    color: #fff;
}

/*==================================================
PROCESS SECTION
==================================================*/

.process-section {
    background: #f8fafc;
}

.process-card {
    text-align: center;
    padding: 50px 35px;
}

.process-card .number {

    width: 85px;
    height: 85px;

    margin: 0 auto 30px;

    border-radius: 50%;

    background: var(--gradient);

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: 700;

    box-shadow: 0 20px 40px rgba(37, 99, 235, .25);

}

.process-card h4 {
    margin-bottom: 15px;
}

.process-card p {
    margin: 0;
}

/*==================================================
FAQ SECTION
==================================================*/

.faq-section {
    background: #fff;
}

.custom-accordion .accordion-item {

    border: none;

    border-radius: 18px;

    overflow: hidden;

    margin-bottom: 20px;

    box-shadow: var(--shadow);

}

.custom-accordion .accordion-button {

    padding: 24px 30px;

    font-size: 18px;

    font-weight: 600;

    background: #fff;

    color: var(--dark);

    box-shadow: none;

}

.custom-accordion .accordion-button:not(.collapsed) {

    background: var(--gradient);

    color: #fff;

}

.custom-accordion .accordion-button:focus {

    box-shadow: none;

}

.custom-accordion .accordion-body {

    padding: 25px 30px;

    color: #64748b;

    line-height: 1.8;

}

/*==================================================
CTA SECTION
==================================================*/

.cta-section {

    padding: 100px 0;

    background: #f8fafc;

}

.cta-wrapper {

    background: var(--gradient);

    border-radius: 30px;

    padding: 70px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 35px 80px rgba(37, 99, 235, .25);

}

.cta-wrapper::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    right: -120px;
    top: -120px;

}

.cta-wrapper::after {

    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .08);

    left: -60px;
    bottom: -60px;

}

.cta-wrapper h2 {

    color: #fff;

    font-size: 48px;

}

.cta-wrapper p {

    color: #e2e8f0;

    margin: 20px 0 0;

}

.cta-wrapper .section-badge {

    background: rgba(255, 255, 255, .15);

    color: #fff;

}

.cta-wrapper .btn-register {

    background: #fff;

    color: var(--primary);

    padding: 18px 40px;

}

.cta-wrapper .btn-register:hover {

    transform: translateY(-6px);

}

/*==================================================
ANIMATIONS
==================================================*/

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@keyframes float {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 40px;
    }

}

@media(max-width:992px) {

    .hero-bg {
        height: auto;
        padding: 130px 0;
    }

    h1 {
        font-size: 46px;
    }

    h2 {
        font-size: 36px;
    }

    .stats-section {
        margin-top: 40px;
    }

    .timeline::before {
        left: 30px;
    }

    .cta-wrapper {
        padding: 50px;
        text-align: center;
    }

    .build-section .row {
        row-gap: 40px;
    }

}

@media(max-width:768px) {

    .py-120 {
        padding: 80px 0;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .timeline-item {
        gap: 20px;
    }

    .timeline-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .cta-wrapper {
        padding: 35px;
    }

    .cta-wrapper h2 {
        font-size: 34px;
    }

}

@media(max-width:576px) {

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 26px;
    }

    .hero-bg {
        text-align: center;
    }

    .hero-section p {
        font-size: 16px;
    }

    .feature-card,
    .domain-card,
    .process-card,
    .duration-card,
    .check-card,
    .timeline-content,
    .stat-card {

        padding: 25px;

    }

    .mini-card {
        margin-top: 20px;
    }

}

/*=====================================
IMAGE EFFECTS
======================================*/

img {
    transition: .5s ease;
}

.rounded-5 {
    border-radius: 30px !important;
}

.shadow-lg {
    box-shadow: 0 35px 70px rgba(15, 23, 42, .18) !important;
}

.build-section img:hover {
    transform: scale(1.04) rotate(.5deg);
}

/*=====================================
HOVER EFFECTS
======================================*/

.feature-card:hover .feature-icon {
    transform: rotate(-8deg) scale(1.08);
}

.feature-icon {
    transition: .35s;
}

.domain-card:hover {
    transform: translateY(-12px);
}

.process-card:hover .number {
    transform: rotate(360deg);
    transition: .8s;
}

.timeline-content:hover {
    border-left: 5px solid var(--primary);
}

.stat-card:hover i {
    transform: scale(1.2);
}

.stat-card i {
    transition: .35s;
}

/*=====================================
GRADIENT TEXT
======================================*/

.gradient-text {

    background: linear-gradient(135deg, #2563eb, #06b6d4);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

/*=====================================
SECTION BACKGROUND
======================================*/

.why-section {

    background: #fff;

}

.journey-section {

    background: #f8fafc;

}

.apply-section {

    background: #fff;

}

/*=====================================
SCROLLBAR
======================================*/

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #f1f5f9;

}

::-webkit-scrollbar-thumb {

    background: linear-gradient(#2563eb, #06b6d4);

    border-radius: 20px;

}

/*=====================================
SELECTION
======================================*/

::selection {

    background: #2563eb;

    color: #fff;

}

/*=====================================
LINK ANIMATION
======================================*/

section a {

    position: relative;

}

section a:not(.btn)::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -2px;

    width: 0;

    height: 2px;

    background: #2563eb;

    transition: .35s;

}

section a:not(.btn):hover::after {

    width: 100%;

}

/*=====================================
CARD GLOW
======================================*/

.feature-card:hover,
.domain-card:hover,
.process-card:hover,
.duration-card:hover {

    box-shadow:
        0 25px 70px rgba(37, 99, 235, .15);

}

/*=====================================
GLASS EFFECT
======================================*/

.glass {

    backdrop-filter: blur(16px);

    background: rgba(255, 255, 255, .18);

    border: 1px solid rgba(255, 255, 255, .15);

}

/*=====================================
SMOOTH TRANSITION
======================================*/

section,
.card,
.feature-card,
.domain-card,
.process-card,
.duration-card,
.check-card,
.timeline-content {

    transition: .35s ease;

}

/*=====================================
UTILITY CLASSES
======================================*/

.text-primary {

    color: var(--primary) !important;

}

.text-gradient {

    background: linear-gradient(135deg, #2563eb, #06b6d4);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

}

.bg-gradient {

    background: var(--gradient);

}

.radius-20 {

    border-radius: 20px;

}

.shadow-soft {

    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);

}

.mt-80 {

    margin-top: 80px;

}

.mb-80 {

    margin-bottom: 80px;

}

.z-2 {

    z-index: 2;

}

.position-relative {

    position: relative;

}

/*==================================================
PREMIUM ANIMATIONS
==================================================*/

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all .8s ease;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all .8s ease;
}

.fade-left.show {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all .8s ease;
}

.fade-right.show {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(.9);
    transition: all .8s ease;
}

.zoom-in.show {
    opacity: 1;
    transform: scale(1);
}

/*==================================================
FLOATING EFFECT
==================================================*/

.float {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }

}

/*==================================================
BUTTON RIPPLE
==================================================*/

.btn-register {

    position: relative;
    overflow: hidden;

}

.btn-register::before {

    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    width: 0;
    height: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, .25);

    transform: translate(-50%, -50%);

    transition: .6s;

}

.btn-register:hover::before {

    width: 350px;
    height: 350px;

}

/*==================================================
PREMIUM BORDER
==================================================*/

.feature-card,
.domain-card,
.process-card,
.duration-card {

    border: 1px solid transparent;

}

.feature-card:hover,
.domain-card:hover,
.process-card:hover,
.duration-card:hover {

    border-color: rgba(37, 99, 235, .15);

}

/*==================================================
PREMIUM SHADOW
==================================================*/

.feature-card:hover {

    box-shadow:
        0 35px 80px rgba(37, 99, 235, .18);

}

.domain-card:hover {

    box-shadow:
        0 30px 70px rgba(6, 182, 212, .18);

}

.process-card:hover {

    box-shadow:
        0 30px 70px rgba(99, 102, 241, .18);

}

/*==================================================
IMAGE OVERLAY
==================================================*/

.image-hover {

    overflow: hidden;
    border-radius: 24px;

}

.image-hover img {

    transition: 1s;

}

.image-hover:hover img {

    transform: scale(1.12);

}

/*==================================================
BACKGROUND BLOBS
==================================================*/

body::before {

    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    background: rgba(37, 99, 235, .04);

    border-radius: 50%;

    top: -250px;
    left: -250px;

    z-index: -1;

    filter: blur(60px);

}

body::after {

    content: "";

    position: fixed;

    width: 450px;
    height: 450px;

    background: rgba(6, 182, 212, .04);

    border-radius: 50%;

    bottom: -220px;
    right: -220px;

    z-index: -1;

    filter: blur(60px);

}

/*==================================================
SECTION DIVIDER
==================================================*/

.section-divider {

    width: 100px;
    height: 5px;

    margin: 20px auto;

    border-radius: 10px;

    background: var(--gradient);

}

/*==================================================
BADGE STYLE
==================================================*/

.badge-gradient {

    display: inline-block;

    padding: 10px 20px;

    border-radius: 40px;

    background: var(--gradient);

    color: #fff;

    font-size: 14px;

    font-weight: 600;

}

/*==================================================
SMOOTH ICON ANIMATION
==================================================*/

.feature-icon i,
.domain-card i {

    transition: .4s;

}

.feature-card:hover i {

    transform: rotate(10deg) scale(1.15);

}

.domain-card:hover i {

    transform: translateY(-8px);

}

/*==================================================
CTA BUTTON ANIMATION
==================================================*/

.cta-wrapper .btn-register {

    transition: .35s;

}

.cta-wrapper .btn-register:hover {

    transform: translateY(-6px) scale(1.05);

}

/*==================================================
SCROLL TO TOP BUTTON (OPTIONAL)
==================================================*/

.scroll-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: var(--gradient);

    color: #fff;

    font-size: 22px;

    box-shadow: 0 15px 40px rgba(37, 99, 235, .25);

    cursor: pointer;

    opacity: 0;

    visibility: hidden;

    transition: .35s;

    z-index: 999;

}

.scroll-top.active {

    opacity: 1;
    visibility: visible;

}

.scroll-top:hover {

    transform: translateY(-5px);

}

/*==================================================
FOOTER GAP
==================================================*/

footer {

    margin-top: 0;

}

/*==================================================
END
==================================================*/