﻿/*====================================================
            GOOGLE FONT
====================================================*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');


/*====================================================
                RESET
====================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit',sans-serif;
    background: #F8F8FB;
    color: #1C1C24;
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: .35s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: auto;
    padding: 0 20px;
}


/*====================================================
                VARIABLES
====================================================*/

:root {
    --primary: #5B2C83;
    --secondary: #F4B400;
    --dark: #1C1C24;
    --white: #fff;
    --bg: #F8F8FB;
    --text: #666;
    --shadow: 0 15px 40px rgba(0,0,0,.08);
    --radius: 18px;
}


/*====================================================
                TOP BAR
====================================================*/

.top-bar {
    background: linear-gradient(90deg,#5B2C83,#7640a5);
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

    .top-left a {
        color: #fff;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .top-left i {
        color: #F4B400;
    }

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .top-right a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        background: rgba(255,255,255,.12);
    }

        .top-right a:hover {
            background: #F4B400;
            color: #1C1C24;
        }


/*====================================================
                HEADER
====================================================*/

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
}

.navbar {
    height: 88px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/*====================================================
                LOGO
====================================================*/

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 34px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 13px;
    letter-spacing: 5px;
    color: var(--secondary);
    font-weight: 700;
    margin-top: 4px;
}


/*====================================================
                NAV MENU
====================================================*/

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-menu li {
        position: relative;
    }

    .nav-menu a {
        color: #1C1C24;
        font-size: 16px;
        font-weight: 500;
        position: relative;
    }

        .nav-menu a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -8px;
            width: 0;
            height: 3px;
            background: #F4B400;
            transition: .35s;
            border-radius: 20px;
        }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: #5B2C83;
        }

            .nav-menu a:hover::after,
            .nav-menu a.active::after {
                width: 100%;
            }


/*====================================================
            HEADER BUTTON
====================================================*/

.header-btn {
    display: flex;
    align-items: center;
}

.quote-btn {
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg,#5B2C83,#7a44a6);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(91,44,131,.25);
}

    .quote-btn:hover {
        transform: translateY(-4px);
        background: linear-gradient(135deg,#F4B400,#e0a600);
    }


/*====================================================
            HAMBURGER
====================================================*/

.menu-toggle {
    width: 48px;
    height: 48px;
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

    .menu-toggle span {
        width: 26px;
        height: 3px;
        background: #1C1C24;
        border-radius: 20px;
    }


/*====================================================
            RESPONSIVE
====================================================*/

@media(max-width:992px) {

    .top-wrapper {
        justify-content: center;
        gap: 12px;
        text-align: center;
    }

    .header-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 88px);
        background: #fff;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 40px 30px;
        gap: 25px;
        box-shadow: 0 10px 30px rgba(0,0,0,.08);
        transition: .4s;
    }

        .nav-menu.active {
            left: 0;
        }
}

@media(max-width:768px) {

    .logo-main {
        font-size: 28px;
    }

    .logo-sub {
        font-size: 11px;
        letter-spacing: 3px;
    }
}

@media(max-width:576px) {

    .top-left {
        justify-content: center;
    }

        .top-left a {
            font-size: 13px;
        }
}
/*====================================================
                HERO SECTION
====================================================*/

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient( 135deg, #f8f8fb 0%, #ffffff 50%, #f4effb 100% );
    padding: 120px 0 80px;
}


/*====================================================
            HERO SHAPES
====================================================*/

.hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}

.shape-1 {
    width: 320px;
    height: 320px;
    background: #5B2C83;
    top: -100px;
    left: -100px;
    animation: float1 8s ease-in-out infinite;
}

.shape-2 {
    width: 260px;
    height: 260px;
    background: #F4B400;
    bottom: -80px;
    right: -80px;
    animation: float2 9s ease-in-out infinite;
}

.shape-3 {
    width: 180px;
    height: 180px;
    background: #7a44a6;
    top: 35%;
    right: 18%;
    animation: float3 7s ease-in-out infinite;
}


/*====================================================
            HERO LAYOUT
====================================================*/

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/*====================================================
            HERO BADGE
====================================================*/

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border-radius: 50px;
    padding: 12px 22px;
    color: #5B2C83;
    font-weight: 600;
    box-shadow: 0 12px 30px rgba(0,0,0,.08);
    margin-bottom: 25px;
}

    .hero-badge i {
        color: #F4B400;
    }


/*====================================================
            HERO HEADING
====================================================*/

.hero-content h1 {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
    color: #1C1C24;
}

    .hero-content h1 span {
        color: #F4B400;
    }

    .hero-content h1 strong {
        color: #5B2C83;
    }


/*====================================================
            HERO PARAGRAPH
====================================================*/

.hero-content p {
    max-width: 620px;
    font-size: 18px;
    color: #666;
    line-height: 1.9;
    margin-bottom: 40px;
}


/*====================================================
            HERO BUTTONS
====================================================*/

.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 55px;
}

.btn-primary {
    padding: 16px 34px;
    background: #5B2C83;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    box-shadow: 0 18px 35px rgba(91,44,131,.25);
}

    .btn-primary:hover {
        background: #F4B400;
        color: #1C1C24;
        transform: translateY(-5px);
    }

.btn-secondary {
    padding: 16px 34px;
    border: 2px solid #5B2C83;
    color: #5B2C83;
    border-radius: 50px;
    font-weight: 600;
}

    .btn-secondary:hover {
        background: #5B2C83;
        color: #fff;
    }


/*====================================================
            COUNTERS
====================================================*/

.hero-counter {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.counter-box {
    min-width: 170px;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    transition: .35s;
}

    .counter-box:hover {
        transform: translateY(-8px);
    }

    .counter-box h2 {
        font-size: 38px;
        color: #5B2C83;
        margin-bottom: 8px;
    }

    .counter-box span {
        color: #666;
        font-size: 15px;
    }


/*====================================================
            RESPONSIVE
====================================================*/

@media(max-width:992px) {

    .hero {
        padding: 100px 0 70px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content p {
        margin: auto auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-counter {
        justify-content: center;
    }
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 46px;
    }
}

@media(max-width:576px) {

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .counter-box {
        width: 100%;
    }
}
/*====================================================
            HERO RIGHT SIDE
====================================================*/

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 620px;
}


/*====================================================
            MAIN GLASS CARD
====================================================*/

.main-card {
    width: 420px;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 30px 70px rgba(0,0,0,.10);
    transition: .45s;
    position: relative;
    z-index: 2;
}

    .main-card:hover {
        transform: translateY(-12px);
    }

.card-icon {
    width: 95px;
    height: 95px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,#5B2C83,#7b45a8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 42px;
    margin-bottom: 25px;
    box-shadow: 0 15px 40px rgba(91,44,131,.35);
}

.main-card h3 {
    font-size: 32px;
    color: #5B2C83;
    margin-bottom: 18px;
    font-weight: 700;
}

.main-card p {
    color: #666;
    font-size: 17px;
    line-height: 1.8;
}


/*====================================================
            FLOATING CARDS
====================================================*/

.floating-card {
    position: absolute;
    background: #fff;
    padding: 16px 24px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,.08);
    font-weight: 600;
    animation: floating 5s ease-in-out infinite;
    transition: .35s;
}

    .floating-card:hover {
        transform: scale(1.06);
    }

    .floating-card i {
        width: 46px;
        height: 46px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        color: #fff;
        background: #5B2C83;
        font-size: 18px;
    }


/*====================================================
            FLOATING POSITIONS
====================================================*/

.card-1 {
    top: 20px;
    left: -20px;
}

.card-2 {
    top: 100px;
    right: -25px;
    animation-delay: 1s;
}

.card-3 {
    bottom: 120px;
    left: -35px;
    animation-delay: 2s;
}

.card-4 {
    bottom: 25px;
    right: -20px;
    animation-delay: 3s;
}


/*====================================================
            SCROLL INDICATOR
====================================================*/

.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: #5B2C83;
    font-weight: 600;
}

.mouse {
    width: 34px;
    height: 58px;
    border: 2px solid #5B2C83;
    border-radius: 25px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 6px;
    height: 12px;
    background: #F4B400;
    border-radius: 20px;
    margin-top: 8px;
    animation: wheel 1.8s infinite;
}


/*====================================================
                ANIMATIONS
====================================================*/

@keyframes floating {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes wheel {

    0% {
        opacity: 0;
        transform: translateY(0);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

@keyframes float1 {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(40px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float2 {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-35px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float3 {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(0);
    }
}


/*====================================================
            RESPONSIVE
====================================================*/

@media(max-width:992px) {

    .hero-image {
        min-height: auto;
        margin-top: 20px;
    }

    .main-card {
        width: 100%;
        max-width: 420px;
    }

    .floating-card {
        position: relative;
        inset: auto;
        margin: 15px auto;
        width: fit-content;
        animation: none;
    }

    .scroll-down {
        display: none;
    }
}

@media(max-width:576px) {

    .main-card {
        padding: 35px 25px;
    }

        .main-card h3 {
            font-size: 26px;
        }

    .card-icon {
        width: 80px;
        height: 80px;
        font-size: 34px;
    }

    .floating-card {
        width: 100%;
        justify-content: center;
    }
}
/*====================================================
                    FOOTER
====================================================*/

.main-footer {
    position: relative;
    background: #1C1C24;
    color: #fff;
    margin-top: 120px;
    overflow: hidden;
}


/*====================================================
                FOOTER WAVE
====================================================*/

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-98%);
    line-height: 0;
}

    .footer-wave svg {
        display: block;
        width: 100%;
        height: 120px;
    }


/*====================================================
                FOOTER WRAPPER
====================================================*/

.footer-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding: 100px 0 60px;
}


/*====================================================
                FOOTER LOGO
====================================================*/

.footer-logo {
    display: inline-flex;
    flex-direction: column;
    color: #fff;
    margin-bottom: 22px;
}

    .footer-logo span {
        font-size: 34px;
        font-weight: 800;
        color: #fff;
    }

.footer-logo {
    font-size: 13px;
    letter-spacing: 5px;
    color: #F4B400;
    font-weight: 700;
}

.footer-column p {
    color: #cfcfcf;
    line-height: 1.9;
    margin-bottom: 28px;
}


/*====================================================
                FOOTER TITLE
====================================================*/

.footer-column h3 {
    color: #F4B400;
    margin-bottom: 28px;
    font-size: 22px;
}


/*====================================================
                FOOTER LINKS
====================================================*/

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

    .footer-column ul li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

        .footer-column ul li a {
            color: #d7d7d7;
            transition: .35s;
        }

            .footer-column ul li a:hover {
                color: #F4B400;
                padding-left: 8px;
            }


/*====================================================
            CONTACT ICONS
====================================================*/

.footer-contact i {
    color: #F4B400;
    min-width: 20px;
    margin-top: 4px;
}


/*====================================================
            SOCIAL ICONS
====================================================*/

.footer-social {
    display: flex;
    gap: 14px;
}

    .footer-social a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(255,255,255,.08);
        color: #fff;
        transition: .35s;
    }

        .footer-social a:hover {
            background: #5B2C83;
            transform: translateY(-6px);
        }


/*====================================================
            NEWSLETTER
====================================================*/

.newsletter {
    margin-top: 10px;
    padding: 45px;
    border-radius: 24px;
    background: linear-gradient(135deg,#5B2C83,#7643a4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,.25);
}

.newsletter-text h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: #e6e6e6;
}

.newsletter-form {
    display: flex;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 55px;
    overflow: hidden;
}

    .newsletter-form input {
        flex: 1;
        border: none;
        outline: none;
        padding: 18px 24px;
        font-size: 16px;
    }

    .newsletter-form button {
        border: none;
        padding: 0 35px;
        background: #F4B400;
        color: #1C1C24;
        cursor: pointer;
        font-weight: 700;
        transition: .35s;
    }

        .newsletter-form button:hover {
            background: #ffd64f;
        }


/*====================================================
            FOOTER BOTTOM
====================================================*/

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 0;
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 60px;
}

    .footer-bottom p {
        color: #cfcfcf;
    }

    .footer-bottom strong {
        color: #F4B400;
    }

.footer-links {
    display: flex;
    gap: 25px;
}

    .footer-links a {
        color: #d7d7d7;
    }

        .footer-links a:hover {
            color: #F4B400;
        }


/*====================================================
            RESPONSIVE
====================================================*/

@media(max-width:1100px) {

    .footer-wrapper {
        grid-template-columns: repeat(2,1fr);
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
    }
}

@media(max-width:768px) {

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .newsletter {
        padding: 35px 25px;
    }

    .newsletter-text h2 {
        font-size: 28px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 18px;
    }

        .newsletter-form input {
            width: 100%;
        }

        .newsletter-form button {
            width: 100%;
            padding: 18px;
        }

    .footer-bottom {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media(max-width:480px) {

    .footer-logo span {
        font-size: 28px;
    }

    .newsletter-text h2 {
        font-size: 24px;
    }
}