/* ================= NAVBAR ================= */
.custom-navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    z-index: 1000;
    padding: 12px 25px;
    border-radius: 60px;
    background: rgb(0 0 0 / 32%);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* IMPORTANT FIX */
.navbar-nav {
    margin: 0 auto; /* center menu */
}

/* REMOVE ABSOLUTE CENTER */
.center-menu {
    position: static !important;
    transform: none !important;
}

/* MENU LINK */
.nav-link {
    font-size: 16px;
    font-weight: 500;
    margin: 0 14px;
    color: #fff !important;
    position: relative;
}

    .nav-link::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -5px;
        width: 0%;
        height: 2px;
        background: #fff;
        transition: 0.4s;
    }

    .nav-link:hover::after {
        width: 100%;
    }

/* RIGHT BUTTON FIX */
.navbar-collapse .ms-auto {
    display: flex;
    align-items: center;
}

/* LOGIN BUTTON */
.btn-login {
    border-radius: 30px;
    padding: 8px 20px;
    border: 1px solid #fff;
    color: #fff;
    transition: 0.3s;
}

    .btn-login:hover {
        background: #fff;
        color: #000;
    }

/* REGISTER BUTTON */
.btn-register {
    border-radius: 30px;
    padding: 8px 22px;
    background: #fff;
    color: #000;
    border: none;
    transition: 0.3s;
}

/* ================= MOBILE ================= */
@media(max-width:991px) {

    ```
    .navbar-nav {
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
    }

    .navbar-collapse .ms-auto {
        justify-content: center;
        margin-top: 15px;
    }

    ```
}


/* HERO */
.hero {
    min-height: 850px; /* fixed */
    background: url(../images/banner1.jpg) center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
}

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        /* background: rgba(159, 95, 191, 0.23); */
    }

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

    /* TEXT ANIMATION FIXED */
    .hero-content h4 {
        animation: fadeUp 1s ease forwards;
    }

    .hero-content h1 {
        animation: fadeUp 1s ease 0.2s forwards;
        font-size: 72px;
    }

    .hero-content h2 {
        animation: fadeUp 1s ease 0.4s forwards;
        opacity: 0;
    }

    .hero-content p {
        animation: fadeUp 1s ease 0.6s forwards;
        opacity: 0;
    }

.hero-btn {
    animation: fadeUp 1s ease 0.8s forwards;
    opacity: 0;
}

/* KEYFRAME */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO BUTTON */
.hero-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background: #fff;
    border: none;
    margin-top: 15px;
}

/* FLOAT IMAGE */
.hero-img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/* MOBILE FIX */
@media(max-width:991px) {

    .center-menu {
        position: static;
        transform: none;
        text-align: center;
    }

    .nav-link {
        margin: 10px 0;
    }

    .navbar-collapse .ms-auto {
        width: 100%;
        text-align: center;
        margin-top: 15px;
    }

    .navbar-collapse .btn {
        display: inline-block;
        margin: 5px;
    }

    .hero {
        text-align: center;
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 40px; /* responsive fix */
    }
}

/* ================= JOIN BUTTON ================= */
.join-btn {
    padding: 15px 40px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    background: linear-gradient(45deg, #f00488, #8325c5);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .join-btn:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    }

    .join-btn:active {
        transform: scale(0.95);
    }

    .join-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        transform: skewX(-25deg);
        transition: 0.5s;
    }

    .join-btn:hover::before {
        left: 125%;
    }

/* RESPONSIVE BUTTON */
@media(max-width:600px) {
    .join-btn {
        width: 90%;
        font-size: 16px;
        padding: 12px;
    }
}
/*****************************ABOUT US ****************************************/

/* SECTION */
.about {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 10%;
    gap: 50px;
    flex-wrap: wrap;
}

/* LEFT IMAGE */
.about-img {
    flex: 1;
    animation: slideLeft 1s ease;
}

    .about-img img {
        width: 100%;
        border-radius: 20px;

    }

/* RIGHT CONTENT */
.about-content {
    flex: 1;
    animation: slideRight 1s ease;
}

    /* HEADING */
    .about-content h2 {
        color: #0a58ca;
        font-size: 36px;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

        /* ANIMATED LINE */
        .about-content h2::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -6px;
            width: 0%;
            height: 3px;
            background: linear-gradient(45deg,#f00488,#8325c5);
            animation: lineGrow 2s ease forwards;
        }

@keyframes lineGrow {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

/* BUILD SMART INCOME */
.about-content h4 {
    color: #000;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* NEXT GENERATION */
.about-content h6 {
    color: #555;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

/* TEXT */
.about-content p {
    color: #444;
    line-height: 1.6;
}

/* FEATURES GRID */
.features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 20px;
}

/* BOX */
.feature-box {
    background: linear-gradient(135deg,#0d6efd,#0a58ca);
    color: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    animation: fadeUp 1s ease;
}

    .feature-box i {
        font-size: 22px;
        background: #fff;
        color: #0d6efd;
        padding: 10px;
        border-radius: 50%;
    }

    /* HOVER */
    .feature-box:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

/* BUTTON */
.about-btn {
    margin-top: 30px;
}

.know-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #f00488, #8325c5);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.4s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

    /* BUTTON HOVER */
    .know-btn:hover {
        transform: scale(1.08);
        box-shadow: 0 12px 30px rgba(0,0,0,0.3);
    }

    /* SHINE EFFECT */
    .know-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255,255,255,0.3);
        transform: skewX(-20deg);
    }

    .know-btn:hover::before {
        animation: shine 0.7s;
    }

@keyframes shine {
    100% {
        left: 100%;
    }
}

/* ANIMATION */
@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width:768px) {

    .about {
        flex-direction: column;
        text-align: center;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .feature-box {
        justify-content: center;
    }

    .about-btn {
        text-align: center;
    }
}

/****************************************WHY CHOOSE US ***********************************/
/* SECTION */
.mlm-why {
    padding: 80px 20px;
    text-align: center;
    font-family: sans-serif;
}

    /* TITLE */
    .mlm-why h2 {
        font-size: 38px;
        color: #0a1f44;
    }

/* SUB */
.sub {
    color: #4a6fa5;
}

/* LINE */
.line {
    width: 100px;
    height: 3px;
    margin: 15px auto 50px;
    background: linear-gradient(90deg,#007bff,#00c6ff);
    animation: move 2s infinite alternate;
}

@keyframes move {
    from {
        width: 60px;
    }

    to {
        width: 140px;
    }
}

/* GRID */
.mlm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 25px;
}

/* CARD */
.mlm-card {
    padding: 30px;
    border-radius: 15px;
    background: rgba(255,255,255,0.6); /* light glass */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0,123,255,0.2);
    transition: 0.4s;
}

/* TOP */
.top {
    font-size: 12px;
    color: #007bff;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

/* TEXT */
.mlm-card h3 {
    color: #0a1f44;
    margin-bottom: 10px;
}

.mlm-card p {
    color: #555;
    font-size: 14px;
}

/* HOVER */
.mlm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,123,255,0.3);
}

/* HIGHLIGHT */
.highlight {
    background: linear-gradient(135deg,#007bff,#00c6ff);
    color: #fff;
    box-shadow: 0 10px 40px rgba(0,123,255,0.5);
}

    .highlight h3,
    .highlight p,
    .highlight .top {
        color: #fff;
    }

/************************BENEFIT*****************************************/

/* SECTION */
.mlmX-features {
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(0,20,60,0.9),rgba(0,20,60,0.9)), url('https://images.unsplash.com/photo-1556761175-4b46a572b786');
    background-size: cover;
}

    /* TITLE */
    .mlmX-features h2 {
        font-size: 34px;
    }

.mlmX-sub {
    color: #a9d6ff;
    margin-bottom: 50px;
}

/* TIMELINE */
.mlmX-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

    .mlmX-timeline::before {
        content: '';
        position: absolute;
        left: 50%;
        width: 2px;
        height: 100%;
        background: linear-gradient(#00c6ff,#007bff);
        transform: translateX(-50%);
    }

/* ITEM */
.mlmX-item {
    width: 50%;
    padding: 10px 25px;
    position: relative;
}

.mlmX-left {
    left: 0;
    text-align: right;
}

.mlmX-right {
    left: 50%;
    text-align: left;
}

/* DOT */
.mlmX-item::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #00c6ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00c6ff;
}

.mlmX-left::before {
    right: -6px;
}

.mlmX-right::before {
    left: -6px;
}

/* CARD */
.mlmX-card {
    background: rgba(255,255,255,0.06);
    padding: 18px 20px;
    border-radius: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,123,255,0.15);
    transition: 0.4s;
    max-width: 260px;
}

/* ICON */
.mlmX-icon {
    font-size: 22px;
    margin-bottom: 8px;
    color: #f00488;
    transition: 0.3s;
}

.mlmX-card:hover .mlmX-icon {
    transform: scale(1.2);
}

/* TEXT */
.mlmX-card h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.mlmX-card p {
    font-size: 13px;
    color: #cce6ff;
}

/* HOVER */
.mlmX-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(0,123,255,0.4);
}

/* MOBILE */
@media(max-width:768px) {
    .mlmX-item {
        width: 100%;
        left: 0 !important;
        text-align: center;
    }

    .mlmX-timeline::before {
        left: 8px;
    }

    .mlmX-item::before {
        left: 0;
    }

    .mlmX-card {
        margin: auto;
    }
}
/******************************HOW IT WORK *********************************/

/* SECTION */
.howPro {
    width: 100%;
    padding: 80px 5%;
    box-sizing: border-box;
    background: #fff;
}

/* WRAPPER */
.howPro-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT */
.howPro-left {
    flex: 1;
    min-width: 300px;
}

/* RIGHT */
.howPro-right {
    flex: 1;
    text-align: center;
}

    .howPro-right img {
        width: 100%;
        max-width: 100%;
    }

/* TITLE */
.howPro h2 {
    font-size: 34px;
    color: #0a1f44;
}

.howPro-sub {
    color: #6c8db8;
    margin-bottom: 40px;
}

/* STEP CONTAINER (SAME DESIGN) */
.howPro-container {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* STEP */
.howPro-step {
    max-width: 200px;
}

/* CIRCLE */
.circle {
    width: 55px;
    height: 55px;
    line-height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg,#007bff,#00c6ff);
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
}

/* TEXT */
.howPro-step h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.howPro-step p {
    font-size: 13px;
    color: #555;
}

/* LINE */
.line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg,#007bff,#00c6ff);
}

/* MOBILE FIX */
@media(max-width:900px) {
    .howPro-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .howPro-container {
        justify-content: center;
    }

    .line {
        display: none;
    }
}
/*******************Support********************/

/* SECTION (FULL WIDTH BANNER) */
.ctaZ {
    width: 100%;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(rgba(10,31,68,0.9), rgba(10,31,68,0.9)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f');
    background-size: cover;
    background-position: center;
}

/* CONTENT */
.ctaZ-content {
    max-width: 800px;
    margin: auto;
}

/* TITLE */
.ctaZ h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.ctaZ p {
    color: #cce6ff;
    margin-bottom: 30px;
}

/* BUTTON */
.ctaZ-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    background: linear-gradient(45deg,#f00488,#8325c5);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

    /* HOVER */
    .ctaZ-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 0 25px rgba(240,4,136,0.5);
    }
    /****************************TESTIMONIAL---------------------*/
/* SECTION */
.testiS {
    padding: 80px 0;
    text-align: center;
    background: #f7faff;
}

    /* TITLE */
    .testiS h2 {
        font-size: 34px;
        color: #0a1f44;
    }

.sub {
    color: #6c8db8;
    margin-bottom: 40px;
}

/* SLIDER */
.slider {
    overflow: hidden;
    width: 100%;
}

/* TRACK */
.slide-track {
    display: flex;
    gap: 20px;
    animation: scroll 18s linear infinite;
}

/* CARD (🔥 3 TA FIT HOBE) */
.card {
    flex: 0 0 calc(100% / 3 - 20px);
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    /* IMAGE */
    .card img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        margin-bottom: 10px;
    }

    /* TEXT */
    .card h3 {
        font-size: 16px;
        margin: 5px 0;
    }

.stars {
    color: #f00488;
    margin-bottom: 10px;
}

.card p {
    font-size: 13px;
    color: #555;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* MOBILE */
@media(max-width:768px) {
    .card {
        flex: 0 0 80%;
    }
}

/********************************FOOTER****************************/

ul {
    margin: 0px;
    padding: 0px;
}

.footer-section {
    background: #000a3b;
    position: relative;
}

.footer-cta {
    border-bottom: 1px solid #373636;
}

.single-cta i {
    color: #df0992;
    font-size: 30px;
    float: left;
    margin-top: 8px;
}

.cta-text {
    padding-left: 15px;
    display: inline-block;
}

    .cta-text h4 {
        color: #fff;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .cta-text span {
        color: #fff;
        font-size: 15px;
    }

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-pattern img {
    position: absolute;
    top: 0;
    left: 0;
    height: 330px;
    background-size: cover;
    background-position: 100% 100%;
}

.footer-logo {
    margin-bottom: 30px;
}

    .footer-logo img {
        max-width: 200px;
    }

.footer-text p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #fff;
    line-height: 28px;
}

.footer-social-icon span {
    color: #fff;
    display: block;
    font-size: 20px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.footer-social-icon a {
    color: #fff;
    font-size: 16px;
    margin-right: 15px;
}

.footer-social-icon i {
    height: 40px;
    width: 40px;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
}

.facebook-bg {
    background: #3B5998;
}

.twitter-bg {
    background: #55ACEE;
}

.google-bg {
    background: #DD4B39;
}

.footer-widget-heading h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
}

    .footer-widget-heading h3::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -15px;
        height: 2px;
        width: 50px;
        background: #df0992;
    }

.footer-widget ul li {
    display: inline-block;
    float: left;
    width: 50%;
    margin-bottom: 12px;
}

    .footer-widget ul li a:hover {
        color: #df0992;
    }

    .footer-widget ul li a {
        color: #fff;
        text-transform: capitalize;
    }

.subscribe-form {
    position: relative;
    overflow: hidden;
}

    .subscribe-form input {
        width: 100%;
        padding: 14px 28px;
        background: #2E2E2E;
        border: 1px solid #2E2E2E;
        color: #fff;
    }

    .subscribe-form button {
        position: absolute;
        right: 0;
        background: #df0992;
        padding: 13px 20px;
        border: 1px solid #df0992;
        top: 0;
    }

        .subscribe-form button i {
            color: #fff;
            font-size: 22px;
            transform: rotate(-6deg);
        }

.copyright-area {
    background: #4d38ff;
    padding: 25px 0;
}

.copyright-text p {
    margin: 0;
    font-size: 14px;
    color: #fff;
}

    .copyright-text p a {
        color: #df0992;
    }

.footer-menu li {
    display: inline-block;
    margin-left: 20px;
}

    .footer-menu li:hover a {
        color: #df0992;
    }

    .footer-menu li a {
        font-size: 14px;
        color: #fff;
    }
    /****************************@     Our Service    @********************************/

/* SECTION */
.servProW {
    padding: 100px 5%;
    text-align: center;
    background: #ffffff;
    position: relative;
}

    /* SOFT 3D GLOW */
    .servProW::before,
    .servProW::after {
        content: '';
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        filter: blur(100px);
        opacity: 0.15;
    }

    .servProW::before {
        background: #007bff;
        top: -100px;
        left: -100px;
    }

    .servProW::after {
        background: #f00488;
        bottom: -100px;
        right: -100px;
    }

    /* TITLE */
    .servProW h2 {
        font-size: 38px;
        color: #0a1f44;
    }

.servProW-sub {
    color: #6c8db8;
    margin-bottom: 60px;
}

/* GRID */
.servProW-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* CARD */
.servProW-card {
    padding: 30px 25px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.4s;
}

    /* ICON */
    .servProW-card i {
        font-size: 30px;
        margin-bottom: 15px;
        color: #f00488;
    }

    /* TEXT */
    .servProW-card h3 {
        margin-bottom: 10px;
        color: #0a1f44;
    }

    .servProW-card p {
        font-size: 14px;
        color: #555;
    }

    /* HOVER */
    .servProW-card:hover {
        transform: translateY(-10px) scale(1.05);
        box-shadow: 0 15px 40px rgba(0,123,255,0.2);
    }

/* MOBILE */
@media(max-width:768px) {
    .servProW {
        padding: 70px 20px;
    }
}

/******************************Contact *******************************/

/* SECTION */
.contactFinal {
    padding: 100px 5%;
    background: #fff;
    text-align: center;
}

    /* TITLE */
    .contactFinal h2 {
        font-size: 36px;
        color: #0a1f44;
    }

.sub {
    color: #6c8db8;
    margin-bottom: 50px;
}

/* WRAPPER */
.contactFinal-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
}

/* LEFT */
.contactFinal-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* INFO BOX */
.info-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

    .info-box i {
        color: #f00488;
        font-size: 20px;
    }

    .info-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(0,123,255,0.15);
    }

/* FORM */
.contactForm {
    margin-top: 20px;
}

    .contactForm form {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .contactForm input,
    .contactForm textarea {
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ddd;
        outline: none;
        width: 100%;
    }

    /* BUTTON */
    .contactForm button {
        padding: 12px;
        border: none;
        border-radius: 50px;
        background: linear-gradient(45deg,#f00488,#8325c5);
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
    }

        .contactForm button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(240,4,136,0.4);
        }

/* RIGHT MAP */
.contactFinal-right {
    flex: 1;
}

    .contactFinal-right iframe {
        width: 100%;
        height: 400px;
        border-radius: 15px;
        border: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

/* 🔥 MOBILE FIX */
@media(max-width:768px) {

    .contactFinal {
        padding: 70px 20px;
    }

    .contactFinal-wrapper {
        flex-direction: column;
        gap: 25px;
    }

    .contactFinal-left,
    .contactFinal-right {
        width: 100%;
    }

        .contactFinal-right iframe {
            height: 300px; /* 🔥 important */
        }
}