/*========================

GLOBAL

========================*/

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    background: linear-gradient( rgba(2, 8, 24, 0.25), rgba(2, 8, 24, 0.55) ), url("../assets/images/ForeGround.png");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

/*========================

CONTAINER

========================*/

.container {
    width: 92%;
    max-width: 1700px;
    margin: auto;
}

/*========================

HEADER

========================*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 110px;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.10);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

    .header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
    }

/*========================

LOGO

========================*/

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 100px;
    height: 100px;
}

.logo-text {
    font-size: 30px;
    font-weight: bold;
}

/*========================

MENU

========================*/

.nav-menu {
    display: flex;
    list-style: none;
    gap: 45px;
}

    .nav-menu a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        transition: .3s;
    }

        .nav-menu a:hover {
            color: #7C7CFF;
        }

/*========================

SOCIAL

========================*/

.social-icons {
    display: flex;
    gap: 20px;
}

    .social-icons img {
        width: 28px;
        cursor: pointer;
    }



/*================================================

HERO

================================================*/

.hero {
    width: 100%;
    height: auto;
    min-height: auto;
}


/*================================================

HERO

================================================*/


.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding-top: 135px;
    padding-bottom: 20px;
}

/*================================================

LEFT SIDE

================================================*/

.hero-left {
    width: 700px;
}

/*================================================

SUBTITLE

================================================*/

/*========================================

HERO SUBTITLE

========================================*/

.hero-subtitle {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 18px;
    color: #8B82FF;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

    /* Prevent each item from breaking into multiple lines */

    .hero-subtitle span {
        white-space: nowrap;
    }

    /* Style the bullets */

    .hero-subtitle .dot {
        font-size: 14px;
        color: #8B82FF;
        opacity: 0.8;
    }

/*================================================

TITLE

================================================*/

.hero-title {
    font-size: 130px;
    font-weight: 800;
    line-height: 0.88;
    color: white;
}

/*================================================

GRADIENT

================================================*/

.gradient-text {
    background: linear-gradient( 90deg, #8F5CFF, #2C8CFF );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/*================================================

DESCRIPTION

================================================*/

.hero-description {
    margin-top: 20px;
    margin-bottom: 20px;
    width: 650px;
    font-size: 24px;
    line-height: 1.7;
    color: #D8D8D8;
}


/*================================================

AREAS OF EXPERTISE

================================================*/

.expertise {
    width: 100%;
    margin-top: -40px;
    padding-top: 0;
    padding-bottom: 80px;
}

/*================================================

HEADER

================================================*/

.expertise-header {
    text-align: center;
    margin-bottom: 8px;
}

.expertise-small {
    color: #ffffff;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 2px;
}

.expertise-header h2 {
    margin-top: 10px;
    font-size: 54px;
    font-weight: 700;
}

/*================================================

GRID

================================================*/

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 22px;
}

/*================================================

CARD

================================================*/

.expertise-card {
    background: linear-gradient( 180deg, rgba(60,70,150,.18), rgba(5,10,30,.08) );
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

    .expertise-card:hover {
        transform: translateY(-8px);
        border-color: #5E7CFF;
        box-shadow: 0 0 25px rgba(94,124,255,.25);
    }

    /*================================================

ICON

================================================*/

    .expertise-card img {
        width: 120px;
        display: block;
        margin: 0 auto 25px auto;
    }

    /*================================================

TITLE

================================================*/

.expertise-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 350px;
    padding: 30px 20px;
}

    /*================================================

DESCRIPTION

================================================*/

    .expertise-card p {
        margin-top: 14px;
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255,255,255,.75);
        text-align: center;
        padding: 0 15px;
    }

    /*================================================

LINK

================================================*/

    .expertise-card a {
        color: #5EA8FF;
        text-decoration: none;
        font-size: 20px;
        font-weight: bold;
    }