
/* Hero Section */
.hero {
    /* background: url('../assets/images/misc/connections_pattern.png') no-repeat center center/cover; */
    padding: 100px 0;
}

#particles-js{
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 400px;
    margin: 0 auto 50px auto;
}

.hero-text {
    width: 50%;
    padding-left: 100px;
}

.hero-text h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2rem;
}

.hero-text p {
    margin: 20px 0;
    font-size: 1rem;
}

.hero .logo {
    width: 250px;
}

.hero-image {
    width: 50%;
    position: relative;
}

.layered-images {
    position: relative;
}

.morphing-shape svg {
    width: 100%;
}

.morphing-shape svg path {
    d: path('m 19.248308,-98.673405 c 84.324582,-20.885925 65.56399,71.96163 364.908362,82.762753 C 496.96631,-11.84019 274.13004,103.88467 171.98314,203.03436 -3.6785171,373.54185 -169.04816,277.10172 -92.833612,171.65164 -34.223573,90.559077 -86.577414,-72.461947 19.248308,-98.673405 Z');
    animation: morph 10s infinite;
}

.cross-shape {
    position: absolute;
    top: 35%;
    left: 20%;
    width: 60%;
}

.team-image {
    position: absolute;
    top: 25%;
    left: 10%;
    width: 65%;
    border-radius: 10px;
}

.dots {
    position: absolute;
    top: 65%;
    right: 18%;
    width: 100px;
}

@keyframes morph {
    0%, 100% {
        d: path('m 152.87648,-54.859695 c 70.14316,-17.3734 54.53766,59.8593596 303.53928,68.843986 C 550.25345,17.370196 364.89305,113.63283 279.92488,196.10785 133.80542,337.93995 -3.7529082,257.7188 59.644127,170.00297 108.39733,102.54829 64.848177,-33.056394 152.87648,-54.859695 Z');
    }
    50% {
        /* d: path('m 19.248308,-98.673405 c 84.324582,-20.885925 65.56399,71.96163 364.908362,82.762753 C 496.96631,-11.84019 274.13004,103.88467 171.98314,203.03436 -3.6785171,373.54185 -169.04816,277.10172 -92.833612,171.65164 -34.223573,90.559077 -86.577414,-72.461947 19.248308,-98.673405 Z'); */
        d: path('M 28.560249,14.890613 C 42.339964,-15.686236 71.822253,33.630233 187.02124,23.525729 221.39924,20.510315 213.00968,93.38416 173.1473,154.30348 119.72084,235.952 114.76497,198.33297 44.918798,131.48504 10.690145,98.725701 9.8746318,56.353539 28.560249,14.890613 Z');
    }
}


/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--background-color);
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    width: 50%;
}

.about-text h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2rem;
}

.about-text p {
    margin: 20px 0;
    font-size: 1rem;
}

.about-images {
    position: relative;
    width: 50%;
    height: 100px;
}

.about-images .team-image{
    position: absolute;
    width: 75%;
    height: 250%;
    object-fit: cover;
    border-radius: 10px;
    top: -90%;
    left: 20%;
    z-index: 2;
}

.about-images .rectangle {
    position: absolute;
    width: 55%;
    height: 180%;
    border-radius: 10px;
}

.about-images .gold {
    background-color: var(--accent-color);
    top: 20%;
    left: 15%;
    z-index: 1;
}

.about-images .deep-blue {
    background-color: var(--primary-color);
    top: 40%;
    right: 0%;
    z-index: 0;
}

.about-images .dots {
    position: absolute;
    width: 18%;
    bottom: -10%;
    right: 1%;
    z-index: 3;
}

/* Services Section */
.services {
    padding: 50px 0;
    text-align: center;
    background: url('../assets/images/backgrounds/services_background_pattern.svg') no-repeat center center/cover;
}

.services h2 {
    font-family: var(--font-primary);
    color: var(--primary-color);
    font-size: 2rem;
}

.services p {
    width: 60%;
    margin: 20px auto 20px auto;
    font-size: 1rem;
}

.service-boxes {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin: 20px auto 40px auto;
}

.service-box {
    width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.16);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.4px);
    -webkit-backdrop-filter: blur(9.4px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-box img {
    max-width: 50px;
    margin-bottom: 10px;
}

.service-box h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.service-box:hover {
    transform: scale(1.05);
}

/* Full Width Banner */
.banner {
    width: 100%;
    padding: 30px 0;
    background-color: var(--primary-color);
    color: var(--background-color);
    text-align: center;
}

.banner h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
}

.banner p {
    margin: 20px 0;
    font-size: 1rem;
}

/* Career Growth Section */
.career-growth {
    padding: 50px 0;
    background-color: var(--background-color);
}

.career-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    height: 400px;
    max-width: 1200px;
    margin: 0 auto;
}

.career-text {
    width: 50%;
    padding: 20px;
}

.career-text p {
    margin: 20px 0;
    font-size: 1rem;
}

.career-images {
    width: 50%;
    height: 90%;
    position: relative;
}

.career-images .team-image{
    position: absolute;
    width: 50%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    top: -20px;
    left: 180px;
    z-index: 2;
}

.career-images .rectangle {
    position: absolute;
    border-radius: 10px;
    width: 45%;
    height: 100%;
}

.career-images .deep-blue {
    background-color: var(--primary-color);
    top: 0;
    left: 140px;
}

.career-images .dots {
    position: absolute;
    width: 100px;
    bottom: 10px;
    left: 110px;
    z-index: 3;
}

@media only screen and (min-width: 600px) {
    
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-content,
    .about-content,
    .career-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image,
    .about-images,
    .career-images {
        width: 100%;
        padding: 0 20px;
    }

    .hero-text,
    .about-text,
    .career-text {
        width: 100%;
        padding: 0 20px;
    }

    .hero-content {
        margin: 0 auto 100px auto;
    }

    .hero-text {
        width: 90%;
    }
    
    .hero-image {
        height: 100%;
        margin-top: 25px;
    }
    .morphing-shape svg {
        display: none;
    }
    
    .cross-shape {
        top: 0;
        left: 20%;
    }
    
    .team-image {
        top: 5%;
        left: 10%;
    }
    
    .dots {
        top: 100px;
        right: 5%;
        width: 50px;
    }
    
    .about-images{
        margin: 20px 0;
        height: 150px;
    }

    .about-images .team-image{
        width: 50%;
        height: 120%;
        top: 0;
        left: 25%;
    }
    
    .about-images .rectangle {
        width: 40%;
        height: 80%;
    }
    
    .about-images .gold {
        top: 30px;
    }
    
    .about-images .deep-blue {
        top: 30%;
        right: 10%;
    }
    
    .about-images .dots {
        width: 10%;
        top: 10px;
        right: 18%;
    } 

    .career-growth {
        padding: 20px 0;
    }

    .career-content {
        width: 90%;
        height: 600px;
    }

    .career-images {
        width: 100%;
        height: 100%;
    }
    
    .career-images .team-image{
        width: 230px;
        height: 300px;
        top: 0%;
        left: 15%;
    }
    
    .career-images .rectangle {
        width: 230px;
        height: 300px;
    }
    
    .career-images .deep-blue {
        top: 15px;
        left: 20%;
    }
    
    .career-images .dots {
        width: 100px;
        top: 50%;
        left: 10%;
    }
    

}