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

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    color: #fff;
}

body {
    background-color: #11071F;
}

main {
    padding: 0 50px;
    /*border: 2px solid green*/
}

.main-title span {
    color: #C49EF7;
}

.main-title {
    font-size: 4.5rem;
    font-weight: 500;
}

.main-desc {
    font-size: 22px;
}

header .container {
    /*border: 2px solid red;*/
    padding: 30px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cac-logo {
    width: 300px;
}

#ga-logo {
    width: 120px;
}

main {
    height: 80vh;
}

.hero {
    display: flex;
    position: relative;
}

.cards {
    margin: 50px 0;
    margin-top: 15%;
    display: flex;
    justify-content: space-between;
    max-width: 1200px; 
    margin-bottom: 10%;
    /*border: 2px solid #C49EF7*/
}
.card-container{
    /*border: 2px solid #C49EF7*/
}
.card {
    text-align: center;
    border-radius: 17px;
    height: 477px;
    width: 350px;
    background-color: #11071F;
    box-shadow: 0px 0px 30px #C49EF7;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card:hover {
    transform: translateY(-10px); 
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.card-img {
    width: 90%;
    border-radius: 10px;
    margin-top: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.card-img:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.card-title {
    padding: 20px 20px 0;
    font-size: 32px;
    background-image: linear-gradient(90deg, #C49EF7, #999999); 
    background-clip: text; 
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent; 
}

.footer {
    margin-bottom: 0%;
    display: flex;
    height: 165px;
    width: auto;
    background-color: #0E0C12;
    color: #fff;
    text-align: center;
    align-items: center;
    justify-content: center;
    /*border: 2px solid pink*/
}
.footer .container{
    width: 100%;
}
.footer{
    margin-left: -50%;
    margin-right: -50%;
    background: linear-gradient(to right, black, #11071F);
}

.footer-text {
    font-size: 1.5rem;
}

.footer .social-icons a {
    color: #fff;
    margin: 0 5px;
}

.footer p {
    font-weight: 400;
    line-height: 65px;
    font-size: 32px;
}

.social-icon:hover {
    color: #c49ef7;
}

.hero-img {
    z-index: 500;
    height: 80vh;
    /*border: 2px solid blue*/
}
.hero-img {
    position: absolute;
    right: 0; 
    top: 60%; 
    transform: translateY(-50%); 
    max-width: 100%;
    height: auto;
    z-index: 1; 
}

.blurbg {
    position: absolute;
    top: 50%;
    margin-right: 10%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background-color: #C49EF7; 
    filter: blur(150px);
    z-index: -1;
    animation: grow-shrink 5s infinite ease-in-out;
}

@keyframes grow-shrink {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
    25% {
        transform: translate(-45%, -55%) scale(1.2) rotate(15deg);
        opacity: 0.9;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4) rotate(30deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-55%, -45%) scale(1.2) rotate(45deg);
        opacity: 0.9;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.8;
    }
}
.footer{
    width: 104dvw; margin: auto; padding: 0; margin-left: -10%;
}