/* ========================= */
/* Google Font */
/* ========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');



/* ========================= */
/* Root Variables */
/* ========================= */

:root {
    --primary-color: #2563eb;
    --secondary-color: #0f172a;
    --accent-color: #f97316;
    --white-color: #ffffff;
    --text-color: #cbd5e1;
    --bg-color: #020617;
}



/* ========================= */
/* Global Styling */
/* ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg-color);
}



/* ========================= */
/* Navbar */
/* ========================= */

.custom-navbar {
    padding: 18px 0;
    transition: 0.3s;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 30px;
    color: var(--white-color) !important;
}

.nav-link {
    color: var(--text-color) !important;
    margin-left: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white-color) !important;
}

.nav-btn {
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.nav-btn:hover {
    background: var(--accent-color);
    color: var(--white-color);
}



/* ========================= */
/* Hero Section */
/* ========================= */

/* ========================= */
/* Hero Section */
/* ========================= */

.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 35%),
        radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.18), transparent 30%);
}



/* Background Glow */

.hero-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(37, 99, 235, 0.15);
    border-radius: 50%;
    top: -180px;
    left: -120px;
    filter: blur(120px);
}

.hero-section::after {
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(249, 115, 22, 0.12);
    border-radius: 50%;
    bottom: -180px;
    right: -100px;
    filter: blur(120px);
}



/* Hero Content */

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeUp 1s ease;
}

.hero-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    padding: 10px 22px;
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 65px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white-color);
}

.hero-title span {
    color: var(--primary-color);
}

.hero-text {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-color);
    max-width: 580px;
}



/* Hero Buttons */

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-btn-1 {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: var(--white-color);
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.hero-btn-1:hover {
    transform: translateY(-4px);
    color: var(--white-color);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.5);
}

.hero-btn-2 {
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white-color);
    padding: 15px 34px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: 0.4s;
}

.hero-btn-2:hover {
    background: var(--white-color);
    color: var(--secondary-color);
    transform: translateY(-4px);
}



/* Hero Stats */

.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
}

.stat-box {
    position: relative;
}

.stat-box::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 8px;
    width: 4px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 10px;
}

.stat-box h3 {
    color: var(--white-color);
    font-size: 36px;
    font-weight: 700;
}

.stat-box p {
    color: var(--text-color);
    margin-top: 5px;
}



/* Hero Image */

.hero-image-wrapper {
    position: relative;
    display: inline-block;
    animation: floatImage 5s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    max-width: 560px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(37, 99, 235, 0.15);
}



/* Floating Cards */

.floating-card {
    position: absolute;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    padding: 14px 20px;
    border-radius: 18px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card i {
    color: var(--primary-color);
    font-size: 22px;
}

.card-1 {
    top: 10%;
    left: -40px;
}

.card-2 {
    top: 50%;
    right: -50px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 8%;
    left: 20px;
    animation-delay: 2s;
}



/* Animations */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:991px) {

    .hero-section {
        text-align: center;
        padding-top: 140px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-buttons,
    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }
}

@media(max-width:576px) {

    .hero-title {
        font-size: 38px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-1,
    .hero-btn-2 {
        width: 100%;
    }
}

/* ========================= */
/* About Section */
/* ========================= */

.about-section {
    padding: 130px 0;
    background: #071120;
    position: relative;
    overflow: hidden;
}



/* Animated Shapes */

.about-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.18);
    top: -100px;
    left: -100px;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(249, 115, 22, 0.15);
    bottom: -100px;
    right: -100px;
    animation: floatShape 10s ease-in-out infinite;
}



/* Section Heading */

.section-badge {
    background: rgba(37, 99, 235, 0.15);
    color: #93c5fd;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    border: 1px solid rgba(147, 197, 253, 0.15);
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.section-text {
    color: #cbd5e1;
    line-height: 1.9;
    font-size: 16px;
}



/* Images Layout */

.about-images {
    position: relative;
    padding: 40px;
}

.main-image img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    animation: floatMain 6s ease-in-out infinite;
}

.floating-image {
    position: absolute;
    width: 220px;
    bottom: -20px;
    right: -20px;
    border-radius: 28px;
    overflow: hidden;
    border: 6px solid #071120;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
    animation: floatCard 5s ease-in-out infinite;
}

.floating-image img {
    width: 100%;
}



/* Experience Box */

.experience-box {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    padding: 25px 35px;
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.35);
    animation: floatCard 4s ease-in-out infinite;
}

.experience-box h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 0;
}

.experience-box p {
    margin: 0;
    font-size: 15px;
}



/* Profit Card */

.profit-card {
    position: absolute;
    right: -40px;
    top: 40%;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: floatCard 6s ease-in-out infinite;
}

.profit-card i {
    font-size: 34px;
    color: #3b82f6;
}

.profit-card h5 {
    margin-bottom: 2px;
    font-weight: 700;
}

.profit-card span {
    font-size: 14px;
    color: #cbd5e1;
}



/* About Content */

.about-content {
    position: relative;
    z-index: 2;
}



/* Feature Box */

.about-feature {
    display: flex;
    gap: 22px;
    margin-bottom: 28px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: 0.4s;
    backdrop-filter: blur(10px);
}

.about-feature:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.45);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}



/* Feature Icon */

.feature-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    color: white;
    font-size: 32px;
}



/* Feature Content */

.feature-content h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-content p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}



/* Button */

.about-btn {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 15px 36px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.about-btn:hover {
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}



/* ========================= */
/* Animations */
/* ========================= */

@keyframes floatMain {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatCard {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes floatShape {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:991px) {

    .section-title {
        font-size: 42px;
    }

    .about-images {
        padding: 20px;
    }

    .profit-card {
        right: 0;
    }

    .floating-image {
        width: 180px;
    }
}

@media(max-width:576px) {

    .section-title {
        font-size: 34px;
    }

    .about-feature {
        flex-direction: column;
    }

    .experience-box {
        position: relative;
        margin-bottom: 20px;
        display: inline-block;
    }

    .floating-image,
    .profit-card {
        display: none;
    }
}


/* ========================= */
/* Premium Services Section */
/* ========================= */

.services-section {
    padding: 130px 0;
    background: linear-gradient(to bottom, #020817, #071120);
    position: relative;
    overflow: hidden;
}



/* Background Circles */

.services-bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.circle-1 {
    width: 380px;
    height: 380px;
    background: rgba(37, 99, 235, 0.15);
    top: -120px;
    left: -120px;
}

.circle-2 {
    width: 320px;
    height: 320px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -120px;
}



/* Service Card */

.service-card {
    position: relative;
    height: 100%;
    padding: 35px;
    border-radius: 35px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    transition: 0.5s ease;
    z-index: 1;
}



/* Glass Hover Overlay */

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.18),
            transparent,
            rgba(249, 115, 22, 0.08));
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}



/* Hover Effect */

.service-card:hover {
    transform: translateY(-15px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(37, 99, 235, 0.15);
}



/* Featured Card */

.featured-card {
    background: linear-gradient(180deg,
            rgba(37, 99, 235, 0.12),
            rgba(255, 255, 255, 0.05));
    border-color: rgba(59, 130, 246, 0.35);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}



/* Top Area */

.service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}



/* Icon */

.service-icon {
    width: 85px;
    height: 85px;
    border-radius: 28px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
    transition: 0.5s;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg) scale(1.05);
}

.service-icon i {
    font-size: 38px;
    color: white;
}



/* Service Number */

.service-number {
    font-size: 42px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.08);
}



/* Heading */

.service-card h3 {
    color: white;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
}



/* Paragraph */

.service-card p {
    color: #cbd5e1;
    line-height: 1.9;
    margin-bottom: 24px;
}



/* List */

.service-card ul {
    padding-left: 18px;
    margin-bottom: 30px;
}

.service-card ul li {
    color: #dbeafe;
    margin-bottom: 12px;
    line-height: 1.7;
}



/* Learn Button */

.learn-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.learn-btn i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
}

.learn-btn:hover {
    color: #60a5fa;
}

.learn-btn:hover i {
    transform: translateX(6px) rotate(45deg);
    background: #2563eb;
}



/* Animation */

.service-card {
    animation: fadeUp 1s ease;
}



/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:991px) {

    .service-card h3 {
        font-size: 26px;
    }
}

@media(max-width:576px) {

    .services-section {
        padding: 100px 0;
    }

    .service-card {
        padding: 28px;
        border-radius: 28px;
    }

    .service-icon {
        width: 75px;
        height: 75px;
    }

    .service-icon i {
        font-size: 32px;
    }

    .service-number {
        font-size: 34px;
    }
}

/* ========================= */
/* Why Choose Us Section */
/* ========================= */

.why-choose-section {
    padding: 130px 0;
    background: #071120;
    position: relative;
    overflow: hidden;
}



/* Background Glow */

.choose-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-left {
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.14);
    top: -120px;
    left: -120px;
}

.glow-right {
    width: 320px;
    height: 320px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -120px;
}



/* Content */

.why-content {
    position: relative;
    z-index: 2;
}



/* Feature Box */

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.choose-box {
    display: flex;
    gap: 22px;
    padding: 28px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    transition: 0.5s;
}

.choose-box:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.35);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.12);
}



/* Icon */

.choose-icon {
    min-width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.choose-icon i {
    color: white;
    font-size: 32px;
}



/* Text */

.choose-box h4 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.choose-box p {
    color: #cbd5e1;
    line-height: 1.8;
    margin: 0;
}



/* Right Image */

.choose-image-wrapper {
    position: relative;
    padding: 30px;
}

.choose-main-image img {
    width: 100%;
    border-radius: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
    animation: floatMain 6s ease-in-out infinite;
}



/* Floating Stat Card */

.floating-stat-card {
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: white;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: floatCard 5s ease-in-out infinite;
}



/* Icon */

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    color: white;
    font-size: 28px;
}



/* Text */

.floating-stat-card h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0;
}

.floating-stat-card p {
    margin: 0;
    color: #cbd5e1;
}



/* Success Card */

.success-card {
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 260px;
    background: rgba(15, 23, 42, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 25px;
    color: white;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
    animation: floatCard 6s ease-in-out infinite;
}

.success-card h4 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 10px;
}

.success-card p {
    color: #cbd5e1;
    margin-bottom: 20px;
}



/* Progress */

.progress-line {
    width: 100%;
    height: 10px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-line span {
    display: block;
    width: 98%;
    height: 100%;
    border-radius: 50px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    animation: progressAnim 3s ease;
}



/* Animation */

@keyframes progressAnim {

    from {
        width: 0;
    }

    to {
        width: 98%;
    }
}



/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:991px) {

    .why-content {
        text-align: center;
    }

    .choose-box {
        text-align: left;
    }

    .section-title {
        font-size: 42px;
    }

    .floating-stat-card {
        left: 20px;
    }
}

@media(max-width:576px) {

    .why-choose-section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 34px;
    }

    .choose-box {
        flex-direction: column;
    }

    .floating-stat-card,
    .success-card {
        position: relative;
        width: 100%;
        margin-top: 20px;
    }

    .choose-image-wrapper {
        padding: 0;
    }
}

/* ========================= */
/* Newsletter Section */
/* ========================= */

.newsletter-section {
    padding: 130px 0;
    background: #020817;
    position: relative;
    overflow: hidden;
}



/* Background Glow */

.newsletter-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-one {
    width: 350px;
    height: 350px;
    background: rgba(37, 99, 235, 0.14);
    top: -120px;
    left: -120px;
}

.glow-two {
    width: 320px;
    height: 320px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -120px;
}



/* Wrapper */

.newsletter-wrapper {
    position: relative;
    padding: 70px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    overflow: hidden;
}



/* Hover Glow */

.newsletter-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(37, 99, 235, 0.12),
            transparent,
            rgba(249, 115, 22, 0.06));
    z-index: -1;
}



/* Content */

.newsletter-title {
    color: white;
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
}

.newsletter-text {
    color: #cbd5e1;
    line-height: 1.9;
}



/* Form Box */

.newsletter-form-box {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}



/* Label */

.form-group label {
    color: white;
    margin-bottom: 12px;
    font-weight: 500;
}



/* Input */

.custom-input {
    height: 60px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    padding: 15px 20px;
    transition: 0.4s;
}

.custom-input:focus {
    background: rgba(255, 255, 255, 0.06);
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    color: white;
}

.custom-input::placeholder {
    color: #94a3b8;
}



/* Checkbox */

.custom-check .form-check-input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 6px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.custom-check .form-check-input:checked {
    background-color: #2563eb;
    border-color: #2563eb;
}

.custom-check label {
    color: #cbd5e1;
    padding-left: 10px;
    line-height: 1.8;
}



/* Subscribe Button */

.subscribe-btn {
    height: 60px;
    border-radius: 18px;
    border: none;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    font-weight: 600;
    font-size: 17px;
    transition: 0.4s;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.35);
}

.subscribe-btn:hover {
    transform: translateY(-4px);
    color: white;
    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.45);
}



/* Unsubscribe Button */

.unsubscribe-btn {
    height: 60px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-weight: 600;
    font-size: 17px;
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.unsubscribe-btn:hover {
    background: white;
    color: #020817;
}



/* ========================= */
/* Custom Alert */
/* ========================= */

/* ========================= */
/* Animated Alert */
/* ========================= */

.custom-alert {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 390px;
    padding: 22px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 9999;

    background: rgba(15, 23, 42, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 5px solid #22c55e;

    backdrop-filter: blur(16px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(34, 197, 94, 0.12);

    opacity: 0;
    visibility: hidden;

    transform:
        translateX(450px)
        scale(0.8)
        rotate(5deg);

    transition:
        opacity 0.5s ease,
        transform 0.5s ease,
        visibility 0.5s;

}



/* Active Alert */

.custom-alert.show-alert {
    opacity: 1;
    visibility: visible;

    transform:
        translateX(0)
        scale(1)
        rotate(0deg);

    animation:
        alertBounce 0.7s ease,
        glowPulse 2s infinite;
}



/* Animated Gradient Border */

.custom-alert::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 24px;

    background:
        linear-gradient(135deg,
            rgba(34, 197, 94, 0.6),
            rgba(37, 99, 235, 0.5),
            rgba(34, 197, 94, 0.6));

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;

    pointer-events: none;
}



/* Floating Particles */

.custom-alert::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 50%;
    top: -60px;
    right: -60px;
    filter: blur(40px);
}



/* Alert Content */

.alert-content {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    z-index: 2;
}



/* Icon */

.alert-icon {
    min-width: 65px;
    height: 65px;
    border-radius: 20px;

    background:
        linear-gradient(135deg,
            rgba(34, 197, 94, 0.2),
            rgba(34, 197, 94, 0.08));

    display: flex;
    align-items: center;
    justify-content: center;

    animation: iconPop 0.8s ease;
}



/* Icon Animation */

.alert-icon i {
    color: #22c55e;
    font-size: 34px;

    animation:
        checkRotate 0.8s ease,
        iconGlow 2s infinite;
}



/* Text */

.alert-content h5 {
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    font-size: 20px;
}

.alert-content p {
    color: #cbd5e1;
    margin: 0;
    line-height: 1.7;
}



/* Progress Bar */

.custom-alert .alert-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 5px;
    width: 100%;
    background:
        linear-gradient(90deg,
            #22c55e,
            #3b82f6);

    animation: progressBar 4s linear forwards;
}



/* ========================= */
/* Keyframes */
/* ========================= */

@keyframes alertBounce {

    0% {
        transform:
            translateX(450px)
            scale(0.6)
            rotate(8deg);
    }

    60% {
        transform:
            translateX(-20px)
            scale(1.03)
            rotate(-2deg);
    }

    100% {
        transform:
            translateX(0)
            scale(1)
            rotate(0deg);
    }
}



@keyframes glowPulse {

    0% {
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.45),
            0 0 20px rgba(34, 197, 94, 0.12);
    }

    50% {
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.45),
            0 0 40px rgba(34, 197, 94, 0.28);
    }

    100% {
        box-shadow:
            0 20px 50px rgba(0, 0, 0, 0.45),
            0 0 20px rgba(34, 197, 94, 0.12);
    }
}



@keyframes iconPop {

    0% {
        transform: scale(0.5) rotate(-20deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}



@keyframes checkRotate {

    0% {
        transform: scale(0) rotate(-180deg);
    }

    100% {
        transform: scale(1) rotate(0deg);
    }
}



@keyframes iconGlow {

    0% {
        text-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }

    50% {
        text-shadow: 0 0 18px rgba(34, 197, 94, 0.6);
    }

    100% {
        text-shadow: 0 0 0 rgba(34, 197, 94, 0);
    }
}



@keyframes progressBar {

    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}



/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width:576px) {

    .custom-alert {
        width: calc(100% - 30px);
        right: 15px;
        top: 15px;
    }

    .alert-content h5 {
        font-size: 18px;
    }

    .alert-icon {
        min-width: 58px;
        height: 58px;
    }

    .alert-icon i {
        font-size: 30px;
    }
}


/* ========================= */
/* EXTRAORDINARY FAQ SECTION */
/* ========================= */

.faq-section {
    padding: 130px 0;
    background: #020817;
    position: relative;
    overflow: hidden;
}



/* Glow */

.faq-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(37, 99, 235, 0.15);
    top: -120px;
    left: -120px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(249, 115, 22, 0.12);
    bottom: -120px;
    right: -120px;
}



/* Tabs */

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-tab {
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.03);
    color: white;
    cursor: pointer;
    transition: 0.4s;
}

.faq-tab:hover {
    transform: translateY(-3px);
}

.faq-tab.active {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(37,99,235,0.3);
}



/* FAQ Box */

.faq-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 28px;
    border-radius: 28px;
    backdrop-filter: blur(14px);
    transition: 0.5s;
    position: relative;
    overflow: hidden;
}



/* Glow hover */

.faq-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(37,99,235,0.12),
        transparent,
        rgba(249,115,22,0.08));
    opacity: 0;
    transition: 0.4s;
}

.faq-box:hover::before {
    opacity: 1;
}



/* Hover effect */

.faq-box:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}



/* Text */

.faq-box h4 {
    color: white;
    font-size: 22px;
    margin-bottom: 12px;
}

.faq-box p {
    color: #cbd5e1;
    line-height: 1.8;
}



/* Hide Animation */

.faq-item {
    transition: 0.5s;
}



/* Responsive */

@media(max-width:576px) {
    .faq-tab {
        padding: 10px 16px;
        font-size: 14px;
    }
}





/* ========================= */
/* LUXURY FINTECH FOOTER */
/* ========================= */

.lux-footer {
    position: relative;
    padding: 120px 0 40px;
    background: #050a18;
    overflow: hidden;
}



/* Animated Border Glow */

.lux-border {
    position: absolute;
    
    border-top: 1px solid rgba(59,130,246,0.2);
    border-bottom: 1px solid rgba(249,115,22,0.1);
    animation: borderPulse 4s infinite;
}



/* Inner Layout */

.lux-footer-inner {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr;
    gap: 60px;
    position: relative;
}



/* LEFT */

.lux-left h2 {
    color: white;
    font-size: 44px;
    font-weight: 800;
}

.lux-left h2 span {
    color: #3b82f6;
}

.lux-left p {
    color: #cbd5e1;
    margin-top: 15px;
    line-height: 1.8;
}



/* Trust List */

.lux-trust {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
}



/* CENTER LINKS */

.lux-center h4,
.lux-right h4 {
    color: white;
    margin-bottom: 20px;
}

.lux-center a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}

.lux-center a:hover {
    color: #3b82f6;
    transform: translateX(6px);
}



/* RIGHT */

.lux-right p {
    color: #cbd5e1;
    margin-bottom: 10px;
}



/* SOCIAL */

.lux-social {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.lux-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.04);
    color: white;
    transition: 0.4s;
}

.lux-social a:hover {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    transform: translateY(-5px);
}



/* BOTTOM */

.lux-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    color: #94a3b8;
    
}



/* LINKS */

.lux-links a {
    color: #cbd5e1;
    margin-left: 15px;
    text-decoration: none;
    transition: 0.3s;
}

.lux-links a:hover {
    color: #3b82f6;
}



/* ANIMATIONS */

@keyframes borderPulse {
    0% { box-shadow: 0 0 0 rgba(59,130,246,0); }
    50% { box-shadow: 0 0 40px rgba(59,130,246,0.15); }
    100% { box-shadow: 0 0 0 rgba(59,130,246,0); }
}



/* RESPONSIVE */

@media(max-width:991px) {
    .lux-footer-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .lux-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}



/* ========================= */
/* PREMIUM ABOUT PAGE */
/* ========================= */

.about-hero-premium {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* Floating Orbs */

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: rgba(37,99,235,0.15);
    top: -120px;
    left: -120px;
}

.orb2 {
    width: 350px;
    height: 350px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: rgba(34,197,94,0.10);
    top: 40%;
    left: 40%;
}



/* Text */

.badge-glow {
    color: #93c5fd;
    padding: 8px 16px;
    border: 1px solid rgba(147,197,253,0.2);
    border-radius: 50px;
    background: rgba(37,99,235,0.12);
}

.about-heading {
    color: white;
    font-size: 56px;
    font-weight: 900;
    margin-top: 20px;
}

.about-subtext {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.9;
}



/* Buttons */

.btn-primary-custom {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
    margin-right: 10px;
}

.btn-outline-custom {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 22px;
    border-radius: 12px;
}



/* Glass Card */

.glass-card {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    text-align: center;
    animation: float 6s infinite;
}

.mini-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.mini-stats h4 {
    color: #3b82f6;
}



/* STORY */

.about-story-premium {
    padding: 120px 0;
    background: #020817;
}

.story-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    animation: float 6s infinite;
}



/* VALUES */

.about-values {
    padding: 120px 0;
    background: #050a18;
}

.value-card {
    padding: 40px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,0.4);
}

.value-card i {
    font-size: 40px;
    color: #3b82f6;
    margin-bottom: 15px;
}

.value-card h4 {
    color: white;
}

.value-card p {
    color: #cbd5e1;
}



/* CTA */

.about-cta {
    padding: 120px 0;
    background: radial-gradient(circle, #0a1224, #020817);
    text-align: center;
}

.about-cta h2 {
    color: white;
    font-size: 42px;
}

.about-cta p {
    color: #cbd5e1;
    margin-top: 10px;
}

.cta-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 30px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    border-radius: 14px;
}



/* Animation */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .about-heading {
        font-size: 36px;
    }
}





/* ========================= */
/* PREMIUM SERVICES DESIGN */
/* ========================= */


/* ========================= */
/* MODERN FINTECH HERO */
/* ========================= */

.svc-hero3 {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* animated blobs */

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.b1 {
    width: 420px;
    height: 420px;
    background: rgba(37,99,235,0.18);
    top: -180px;
    left: -180px;
}

.b2 {
    width: 300px;
    height: 300px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}

.b3 {
    width: 250px;
    height: 250px;
    background: rgba(34,197,94,0.10);
    top: 40%;
    left: 45%;
}



/* TEXT */

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(37,99,235,0.12);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    font-size: 14px;
}

.hero-title {
    color: white;
    font-size: 54px;
    font-weight: 900;
    margin-top: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.hero-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-main {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}

.btn-sec {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST BAR */

.trust-bar {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.trust-bar h4 {
    color: #3b82f6;
    margin-bottom: 5px;
}

.trust-bar span {
    color: #94a3b8;
    font-size: 13px;
}



/* DASHBOARD CARD */

.hero-dashboard {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.hero-dashboard h4 {
    margin-bottom: 20px;
}

.dash-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-item strong {
    color: #3b82f6;
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .hero-title {
        font-size: 34px;
    }

    .trust-bar {
        flex-direction: column;
        gap: 10px;
    }
}
.svc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s infinite ease-in-out;
}

.g1 {
    width: 400px;
    height: 400px;
    background: rgba(37,99,235,0.15);
    top: -150px;
    left: -150px;
}

.g2 {
    width: 300px;
    height: 300px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}

.svc-title2 {
    color: white;
    font-size: 52px;
    font-weight: 900;
}

.svc-subtitle2 {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
}



/* CARD */

.svc-card2 {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.svc-card2:hover {
    transform: translateY(-12px);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}



/* TEXT */

.svc-card2 h3 {
    color: white;
    margin-bottom: 10px;
}

.svc-card2 h3 i {
    color: #3b82f6;
    margin-right: 8px;
}

.desc {
    color: #94a3b8;
    margin-bottom: 15px;
}



/* SUB SERVICES */

.sub {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.sub span {
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 20px;
    background: rgba(37,99,235,0.1);
    color: #93c5fd;
}



/* BUTTON */

.svc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.svc-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .svc-title2 {
        font-size: 34px;
    }
}



/* ========================= */
/* LOANS PAGE FINTECH UI */
/* ========================= */


/* ========================= */
/* PREMIUM LOAN HERO v2 */
/* ========================= */

.loan-hero-v2 {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID BACKGROUND */

.loan-grid {
    position: absolute;
    
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}



/* ORBS */

.loan-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.orb1 {
    width: 400px;
    height: 400px;
    background: rgba(37,99,235,0.18);
    top: -150px;
    left: -150px;
}

.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.loan-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(37,99,235,0.12);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    font-size: 14px;
}

.loan-title-v2 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.loan-subtitle-v2 {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.loan-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-primary-loan {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-loan:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}

.btn-outline-loan {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST STRIP */

.loan-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.loan-trust h4 {
    color: #3b82f6;
    margin-bottom: 5px;
}

.loan-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* PREVIEW CARD */

.loan-preview-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.loan-preview-card h4 {
    margin-bottom: 20px;
}

.lp-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-item strong {
    color: #3b82f6;
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .loan-title-v2 {
        font-size: 34px;
    }

    .loan-trust {
        flex-direction: column;
        gap: 10px;
    }
}

.loan-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s infinite ease-in-out;
}

.g1 {
    width: 420px;
    height: 420px;
    background: rgba(37,99,235,0.18);
    top: -150px;
    left: -150px;
}

.g2 {
    width: 300px;
    height: 300px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}

.loan-title {
    color: white;
    font-size: 52px;
    font-weight: 900;
}

.loan-subtitle {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
}



/* LOAN CARD */

.loan-card {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s;
    height: 100%;
}

.loan-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.loan-card h3 {
    color: white;
    margin-bottom: 10px;
}

.loan-card h3 i {
    color: #3b82f6;
    margin-right: 8px;
}

.loan-card p {
    color: #94a3b8;
}



/* LIST */

.loan-card ul {
    margin-top: 15px;
    padding-left: 18px;
}

.loan-card ul li {
    color: #cbd5e1;
    margin-bottom: 8px;
}



/* BUTTON */

.loan-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.loan-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .loan-title {
        font-size: 34px;
    }
}




/* ========================= */
/* INSURANCE PAGE FINTECH UI */
/* ========================= */


/* ========================= */
/* INSURANCE HERO V2 */
/* ========================= */

.ins-hero-v2 {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID BACKGROUND */

.ins-grid {
    position: absolute;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.ins-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.ins-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(37,99,235,0.18);
    top: -160px;
    left: -160px;
}

.ins-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(34,197,94,0.12);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.ins-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(34,197,94,0.12);
    color: #86efac;
    border: 1px solid rgba(134,239,172,0.2);
    font-size: 14px;
}

.ins-title-v2 {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.ins-subtitle-v2 {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.ins-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-ins-primary {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-ins-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(34,197,94,0.25);
}

.btn-ins-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST STRIP */

.ins-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.ins-trust h4 {
    color: #22c55e;
    margin-bottom: 5px;
}

.ins-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* PREVIEW CARD */

.ins-preview-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.ins-preview-card h4 {
    margin-bottom: 20px;
}

.ip-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.ip-item strong {
    color: #22c55e;
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .ins-title-v2 {
        font-size: 34px;
    }

    .ins-trust {
        flex-direction: column;
        gap: 10px;
    }
}

.ins-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s infinite ease-in-out;
}

.g1 {
    width: 400px;
    height: 400px;
    background: rgba(37,99,235,0.18);
    top: -150px;
    left: -150px;
}

.g2 {
    width: 300px;
    height: 300px;
    background: rgba(249,115,22,0.12);
    bottom: -120px;
    right: -120px;
}

.ins-title {
    color: white;
    font-size: 52px;
    font-weight: 900;
}

.ins-subtitle {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
}



/* CARD */

.ins-card {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(14px);
    transition: 0.4s;
    height: 100%;
}

.ins-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59,130,246,0.4);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.ins-card h3 {
    color: white;
    margin-bottom: 10px;
}

.ins-card h3 i {
    color: #3b82f6;
    margin-right: 8px;
}

.ins-card p {
    color: #94a3b8;
}



/* LIST */

.ins-card ul {
    margin-top: 15px;
    padding-left: 18px;
}

.ins-card ul li {
    color: #cbd5e1;
    margin-bottom: 8px;
}



/* BUTTON */

.ins-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.ins-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.3);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .ins-title {
        font-size: 34px;
    }
}



/* ========================= */
/* INVESTMENT PAGE FINTECH */
/* ========================= */

.inv-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.inv-grid {
    position: absolute;

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.inv-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.inv-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(34,197,94,0.18);
    top: -160px;
    left: -160px;
}

.inv-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(59,130,246,0.15);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.inv-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(34,197,94,0.12);
    color: #86efac;
    border: 1px solid rgba(134,239,172,0.2);
    font-size: 14px;
}

.inv-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.inv-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.inv-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-inv-primary {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-inv-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(34,197,94,0.25);
}

.btn-inv-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.inv-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.inv-trust h4 {
    color: #22c55e;
}

.inv-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* DASHBOARD CARD */

.inv-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.inv-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.inv-item strong {
    color: #22c55e;
}



/* CARDS */

.inv-section {
    padding: 100px 0;
}

.inv-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.inv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.inv-box h3 {
    color: white;
}

.inv-box p {
    color: #94a3b8;
}

.inv-box ul {
    padding-left: 18px;
}

.inv-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.inv-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.inv-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .inv-title {
        font-size: 34px;
    }

    .inv-trust {
        flex-direction: column;
        gap: 10px;
    }
}


/* ========================= */
/* WEALTH MANAGEMENT PAGE */
/* ========================= */

.wm-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.wm-grid {
    position: absolute;
    
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.wm-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.wm-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.18);
    top: -160px;
    left: -160px;
}

.wm-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(168,85,247,0.15);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.wm-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(168,85,247,0.12);
    color: #d8b4fe;
    border: 1px solid rgba(216,180,254,0.2);
    font-size: 14px;
}

.wm-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.wm-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.wm-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-wm-primary {
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-wm-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(168,85,247,0.25);
}

.btn-wm-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.wm-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.wm-trust h4 {
    color: #a855f7;
}

.wm-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* CARD */

.wm-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.wm-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.wm-item strong {
    color: #a855f7;
}



/* BOX */

.wm-section {
    padding: 100px 0;
}

.wm-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.wm-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.wm-box h3 {
    color: white;
}

.wm-box p {
    color: #94a3b8;
}

.wm-box ul {
    padding-left: 18px;
}

.wm-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.wm-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.wm-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .wm-title {
        font-size: 34px;
    }

    .wm-trust {
        flex-direction: column;
        gap: 10px;
    }
}



/* ========================= */
/* DIGITAL PAYMENTS PAGE */
/* ========================= */

.pay-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.pay-grid {
    position: absolute;
   
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.pay-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.pay-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.18);
    top: -160px;
    left: -160px;
}

.pay-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(250,204,21,0.12);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.pay-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(59,130,246,0.12);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    font-size: 14px;
}

.pay-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.pay-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.pay-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-pay-primary {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-pay-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.25);
}

.btn-pay-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.pay-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.pay-trust h4 {
    color: #3b82f6;
}

.pay-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* CARD */

.pay-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.pay-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.pay-item strong {
    color: #3b82f6;
}



/* BOX */

.pay-section {
    padding: 100px 0;
}

.pay-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.pay-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.pay-box h3 {
    color: white;
}

.pay-box p {
    color: #94a3b8;
}

.pay-box ul {
    padding-left: 18px;
}

.pay-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.pay-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.pay-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .pay-title {
        font-size: 34px;
    }

    .pay-trust {
        flex-direction: column;
        gap: 10px;
    }
}




/* ========================= */
/* DEBT RELIEF PAGE */
/* ========================= */

.dr-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.dr-grid {
    position: absolute;
    
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.dr-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.dr-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(34,197,94,0.12);
    top: -160px;
    left: -160px;
}

.dr-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(59,130,246,0.12);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.dr-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(34,197,94,0.10);
    color: #86efac;
    border: 1px solid rgba(134,239,172,0.2);
    font-size: 14px;
}

.dr-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.dr-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.dr-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-dr-primary {
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-dr-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(34,197,94,0.25);
}

.btn-dr-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.dr-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.dr-trust h4 {
    color: #22c55e;
}

.dr-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* CARD */

.dr-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.dr-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dr-item strong {
    color: #22c55e;
}



/* SECTION */

.dr-section {
    padding: 100px 0;
}



/* BOX */

.dr-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.dr-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.dr-box h3 {
    color: white;
}

.dr-box p {
    color: #94a3b8;
}

.dr-box ul {
    padding-left: 18px;
}

.dr-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.dr-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.dr-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .dr-title {
        font-size: 34px;
    }

    .dr-trust {
        flex-direction: column;
        gap: 10px;
    }
}



/* ========================= */
/* HOME WARRANTY PAGE */
/* ========================= */

.hw-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.hw-grid {
    position: absolute;
   
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.hw-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.hw-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.15);
    top: -160px;
    left: -160px;
}

.hw-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(250,204,21,0.10);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.hw-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(59,130,246,0.10);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    font-size: 14px;
}

.hw-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.hw-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.hw-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-hw-primary {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-hw-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(37,99,235,0.25);
}

.btn-hw-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.hw-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.hw-trust h4 {
    color: #3b82f6;
}

.hw-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* CARD */

.hw-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.hw-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hw-item strong {
    color: #3b82f6;
}



/* SECTION */

.hw-section {
    padding: 100px 0;
}



/* BOX */

.hw-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.hw-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.hw-box h3 {
    color: white;
}

.hw-box p {
    color: #94a3b8;
}

.hw-box ul {
    padding-left: 18px;
}

.hw-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.hw-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.hw-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .hw-title {
        font-size: 34px;
    }

    .hw-trust {
        flex-direction: column;
        gap: 10px;
    }
}



/* ========================= */
/* AUTO WARRANTY PAGE */
/* ========================= */

.aw-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.aw-grid {
    position: absolute;

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.aw-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.aw-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.15);
    top: -160px;
    left: -160px;
}

.aw-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(239,68,68,0.12);
    bottom: -120px;
    right: -120px;
}



/* TEXT */

.aw-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 50px;
    background: rgba(59,130,246,0.10);
    color: #93c5fd;
    border: 1px solid rgba(147,197,253,0.2);
    font-size: 14px;
}

.aw-title {
    color: white;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.2;
}

.aw-subtitle {
    color: #cbd5e1;
    margin-top: 20px;
    line-height: 1.8;
}



/* BUTTONS */

.aw-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.btn-aw-primary {
    background: linear-gradient(135deg,#1d4ed8,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-aw-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.25);
}

.btn-aw-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* TRUST */

.aw-trust {
    margin-top: 35px;
    display: flex;
    gap: 30px;
}

.aw-trust h4 {
    color: #3b82f6;
}

.aw-trust span {
    color: #94a3b8;
    font-size: 13px;
}



/* CARD */

.aw-card {
    padding: 35px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}

.aw-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.aw-item strong {
    color: #3b82f6;
}



/* SECTION */

.aw-section {
    padding: 100px 0;
}



/* BOX */

.aw-box {
    padding: 30px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    height: 100%;
}

.aw-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
}

.aw-box h3 {
    color: white;
}

.aw-box p {
    color: #94a3b8;
}

.aw-box ul {
    padding-left: 18px;
}

.aw-box ul li {
    color: #cbd5e1;
}



/* BUTTON */

.aw-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 18px;
    border-radius: 12px;
    background: linear-gradient(135deg,#1d4ed8,#3b82f6);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.aw-btn:hover {
    transform: translateY(-5px);
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .aw-title {
        font-size: 34px;
    }

    .aw-trust {
        flex-direction: column;
        gap: 10px;
    }
}



/* ========================= */
/* NEWSLETTER PAGE */
/* ========================= */

.nl-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.nl-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.25;
}



/* ORBS */

.nl-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.nl-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.15);
    top: -160px;
    left: -160px;
}

.nl-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(34,197,94,0.12);
    bottom: -120px;
    right: -120px;
}



/* CARD */

.nl-card {
    padding: 50px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    animation: float 6s infinite ease-in-out;
}



/* TEXT */

.nl-title {
    font-size: 42px;
    font-weight: 900;
    color: white;
}

.nl-subtitle {
    color: #cbd5e1;
    margin-top: 15px;
    line-height: 1.7;
}



/* INPUT */

.nl-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px;
    border-radius: 12px;
}

.nl-input:focus {
    background: rgba(255,255,255,0.08);
    color: white;
    box-shadow: none;
    border-color: #3b82f6;
}



/* BUTTONS */

.nl-actions {
    display: flex;
    gap: 12px;
}

.btn-nl-primary {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    border: none;
    transition: 0.3s;
}

.btn-nl-primary:hover {
    transform: translateY(-4px);
}

.btn-nl-outline {
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 12px 20px;
    border-radius: 12px;
    text-decoration: none;
}



/* ALERT */

.nl-alert {
    margin-top: 20px;
    padding: 15px;
    border-radius: 12px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
    display: none;
    animation: pop 0.5s ease;
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(18px); }
    100% { transform: translateY(0px); }
}

@keyframes pop {
    0% { transform: scale(0.8); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}



/* RESPONSIVE */

@media(max-width:768px) {
    .nl-title {
        font-size: 28px;
    }

    .nl-actions {
        flex-direction: column;
    }
}




/* ========================= */
/* UNSUBSCRIBE PAGE */
/* ========================= */

.unsub-hero {
    padding: 120px 0;
    background: radial-gradient(circle at top, #0a1224, #020817);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}



/* GRID */

.unsub-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}



/* ORBS */

.unsub-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.unsub-orb.orb1 {
    width: 400px;
    height: 400px;
    background: rgba(239,68,68,0.15);
    top: -150px;
    left: -120px;
}

.unsub-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(59,130,246,0.12);
    bottom: -120px;
    right: -120px;
}



/* CARD */

.unsub-card {
    padding: 50px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    color: white;
    position: relative;
    z-index: 2;
    animation: float 6s infinite ease-in-out;
}



/* ICON */

.unsub-icon {
    width: 90px;
    height: 90px;
    margin: auto;
    margin-bottom: 25px;
    border-radius: 50%;
    background: rgba(239,68,68,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    color: #f87171;
}



/* TEXT */

.unsub-title {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    color: white;
}

.unsub-subtitle {
    text-align: center;
    color: #cbd5e1;
    line-height: 1.7;
    margin-top: 15px;
    margin-bottom: 35px;
}



/* INPUT */

.unsub-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 14px;
    border-radius: 14px;
}

.unsub-input:focus {
    background: rgba(255,255,255,0.08);
    color: white;
    box-shadow: none;
    border-color: #ef4444;
}



/* BUTTON */

.btn-unsub-primary {
    background: linear-gradient(135deg,#dc2626,#ef4444);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-unsub-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(239,68,68,0.25);
}



/* OUTLINE BUTTON */

.btn-unsub-outline {
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.15);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-unsub-outline:hover {
    background: rgba(255,255,255,0.06);
}



/* ALERT */

.unsub-alert {
    margin-top: 25px;
    background: rgba(34,197,94,0.15);
    border: 1px solid rgba(34,197,94,0.3);
    color: #86efac;
    border-radius: 14px;
    overflow: hidden;
    display: none;
    animation: pop 0.5s ease;
}

.alert-content {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-progress {
    height: 4px;
    background: #22c55e;
    animation: progress 3s linear forwards;
}



/* ANIMATION */

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(15px); }
    100% { transform: translateY(0px); }
}

@keyframes pop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}



/* RESPONSIVE */

@media(max-width:768px) {

    .unsub-card {
        padding: 30px;
    }

    .unsub-title {
        font-size: 28px;
    }

}


/* ========================= */
/* GLOBAL FORM LABELS */
/* ========================= */

.form-label-Bright Finance Flow {
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    display: block;
}



/* ========================= */
/* TERMS PAGE */
/* ========================= */

.terms-hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top, #0a1224, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.terms-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}



/* ORBS */

.terms-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.terms-orb.orb1 {
    width: 400px;
    height: 400px;
    background: rgba(59,130,246,0.15);
    top: -150px;
    left: -150px;
}

.terms-orb.orb2 {
    width: 300px;
    height: 300px;
    background: rgba(168,85,247,0.12);
    bottom: -100px;
    right: -100px;
}



/* TEXT */

.terms-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(59,130,246,0.12);
    border: 1px solid rgba(59,130,246,0.2);
    color: #93c5fd;
    font-size: 14px;
}

.terms-title {
    font-size: 60px;
    font-weight: 900;
    color: white;
    margin-top: 20px;
}

.terms-subtitle {
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 20px;
}



/* SECTION */

.terms-section {
    padding: 100px 0;
    background: #020817;
}



/* GRID WRAPPER */

.terms-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}



/* CARD */

.terms-card {
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.terms-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}



/* ICON */

.terms-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(59,130,246,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 28px;
    margin-bottom: 25px;
}



/* CARD TEXT */

.terms-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
}

.terms-card p {
    color: #94a3b8;
    line-height: 1.8;
}



/* CTA */

.terms-cta {
    padding: 100px 0;
    background: linear-gradient(to right,#0f172a,#111827);
}

.terms-cta h2 {
    color: white;
    font-size: 42px;
    font-weight: 800;
}

.terms-cta p {
    color: #cbd5e1;
    margin-top: 20px;
    margin-bottom: 35px;
}



/* BUTTON */

.btn-terms-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-terms-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.3);
}



/* RESPONSIVE */

@media(max-width:768px) {

    .terms-title {
        font-size: 40px;
    }

}




/* ========================= */
/* PRIVACY POLICY PAGE */
/* ========================= */

.privacy-hero {
    padding: 140px 0 100px;
    background: radial-gradient(circle at top, #07111f, #020817);
    position: relative;
    overflow: hidden;
}



/* GRID */

.privacy-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}



/* ORBS */

.privacy-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.privacy-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(34,197,94,0.12);
    top: -160px;
    left: -160px;
}

.privacy-orb.orb2 {
    width: 320px;
    height: 320px;
    background: rgba(59,130,246,0.12);
    bottom: -120px;
    right: -120px;
}



/* BADGE */

.privacy-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(34,197,94,0.10);
    border: 1px solid rgba(34,197,94,0.2);
    color: #86efac;
    font-size: 14px;
}



/* TITLE */

.privacy-title {
    font-size: 60px;
    font-weight: 900;
    color: white;
    margin-top: 20px;
}

.privacy-subtitle {
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 20px;
}



/* SECTION */

.privacy-section {
    padding: 100px 0;
    background: #020817;
}



/* WRAPPER */

.privacy-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}



/* CARD */

.privacy-card {
    padding: 35px;
    border-radius: 25px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
    overflow: hidden;
    position: relative;
}

.privacy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}



/* ICON */

.privacy-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(34,197,94,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4ade80;
    font-size: 28px;
    margin-bottom: 25px;
}



/* TEXT */

.privacy-card h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 22px;
}

.privacy-card p {
    color: #94a3b8;
    line-height: 1.8;
}



/* CTA */

.privacy-cta {
    padding: 100px 0;
    background: linear-gradient(to right,#0f172a,#111827);
}

.privacy-cta h2 {
    color: white;
    font-size: 42px;
    font-weight: 800;
}

.privacy-cta p {
    color: #cbd5e1;
    margin-top: 20px;
    margin-bottom: 35px;
}



/* BUTTON */

.btn-privacy-primary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 14px;
    background: linear-gradient(135deg,#16a34a,#22c55e);
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.btn-privacy-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(34,197,94,0.25);
}



/* ANIMATION */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(18px);
    }

    100% {
        transform: translateY(0px);
    }
}



/* RESPONSIVE */

@media(max-width:768px) {

    .privacy-title {
        font-size: 40px;
    }

}




/* ========================= */
/* CONTACT PAGE */
/* ========================= */

.contact-hero {
    padding: 140px 0;
    background: radial-gradient(circle at top, #07111f, #020817);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}



/* GRID */

.contact-grid {
    position: absolute;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 60px 60px;
}



/* ORBS */

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 10s infinite ease-in-out;
}

.contact-orb.orb1 {
    width: 420px;
    height: 420px;
    background: rgba(59,130,246,0.14);
    top: -160px;
    left: -160px;
}

.contact-orb.orb2 {
    width: 320px;
    height: 320px;
    background: rgba(168,85,247,0.12);
    bottom: -120px;
    right: -120px;
}



/* BADGE */

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(59,130,246,0.10);
    border: 1px solid rgba(59,130,246,0.2);
    color: #93c5fd;
    font-size: 14px;
}



/* TITLE */

.contact-title {
    color: white;
    font-size: 58px;
    font-weight: 900;
    margin-top: 25px;
    line-height: 1.2;
}

.contact-subtitle {
    color: #cbd5e1;
    line-height: 1.8;
    margin-top: 20px;
}



/* INFO WRAPPER */

.contact-info-wrapper {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* INFO CARD */

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: 0.4s;
}

.contact-info-card:hover {
    transform: translateX(10px);
}



/* ICON */

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(59,130,246,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    font-size: 24px;
}



/* INFO TEXT */

.contact-info-card h5 {
    color: white;
    margin-bottom: 5px;
}

.contact-info-card p {
    color: #94a3b8;
    margin: 0;
}



/* FORM CARD */

.contact-form-card {
    padding: 40px;
    border-radius: 30px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(14px);
    animation: float 6s infinite ease-in-out;
}



/* INPUT */

.contact-input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    color: white;
    border-radius: 14px;
    padding: 14px;
}

.contact-input:focus {
    background: rgba(255,255,255,0.08);
    color: white;
    box-shadow: none;
    border-color: #3b82f6;
}



/* BUTTON */

.btn-contact-primary {
    background: linear-gradient(135deg,#2563eb,#3b82f6);
    border: none;
    padding: 14px;
    border-radius: 14px;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.btn-contact-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(59,130,246,0.25);
}



/* ALERT */

.contact-alert {
    margin-top: 25px;
    border-radius: 14px;
    overflow: hidden;
    display: none;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.2);
    animation: pop 0.5s ease;
}

.contact-alert-content {
    padding: 16px;
    color: #86efac;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-progress {
    height: 4px;
    background: #22c55e;
    animation: progress 3s linear forwards;
}



/* ANIMATION */

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(18px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pop {
    0% {
        transform: scale(0.7);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes progress {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}



/* RESPONSIVE */

@media(max-width:768px) {

    .contact-title {
        font-size: 38px;
    }

    .contact-form-card {
        padding: 30px;
    }

}


/* ========================= */
/* NEWSLETTER ALERT */
/* ========================= */

.nl-alert {
    margin-top: 25px;
    border-radius: 14px;
    overflow: hidden;
    display: none;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.2);
    animation: pop 0.5s ease;
}

.nl-alert-content {
    padding: 16px;
    color: #86efac;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nl-progress {
    height: 4px;
    background: #22c55e;
    animation: progress 3s linear forwards;
}