:root {
    --primary-bg-color: #1a0033;
    --accent-color: #6a0dad; /* Purple */
    --text-color: #ffffff;
    --secondary-text-color: #cccccc;
    --card-bg-color: #2b0057; /* Slightly lighter purple background for card */
    --icon-webdev-color: orange;
    --icon-mobile-color: #00bcd4; /* Cyan */
    --icon-cyber-color: #4CAF50; /* Green */
}

body {
    background: radial-gradient(
        circle at center, 
        #2a0053 0%,      
        #1a0033 60%,
        #1a0033 100%
    );

    color: var(--text-color);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    min-height: 100vh;
    box-sizing: border-box;    
    font-family: 'Inter', sans-serif;
}

.container
{
    width: 60%;
    margin: auto;
}


.top
{
    margin-top: 50px;
    margin-bottom:30px ;
    display: flex;
    align-items: center;
    flex-direction: column;
}
.top h1
{
    font-size:60px;
    font-weight: bolder;
    text-align: center;
    
}

.top p{
    font-size: 20px;
    margin-top: 8px;
    color: #ffffff98;
}

.intro-text
{
    margin-top: 80px;
    width: 70%;
    margin: auto;
    background: #17033066; 
    padding: 40px;
    box-shadow: 0 5px 15px #2c065c66; 
    border-radius: 15px;
}

.intro-text h2
{
    margin-bottom: 30px;
    font-size: 50px;
    color: #ffffff;
    text-align: center;
        text-shadow: 5px 5px rgba(75, 75, 75, 0.418);
}

.intro-text p 
{
    font-size: 20px;
    word-spacing: 3px;
    letter-spacing: 1px;
    color: white;
       


}



.two-column-block
{
    margin-top: 50px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}

.column-content
{
    margin: 30px;
    background: #17033066; 
    padding: 40px;
    box-shadow: 0 5px 15px #2c065c66; 
    border-radius: 15px;
}

.column-content h2
{
    margin-bottom: 30px;
    
    font-size: 40px;
    color: #ffffff;
            text-shadow: 5px 5px rgba(75, 75, 75, 0.5);
}

.column-content p 
{
    font-size: 20px;
    color: white;

}


.team-block
{
    margin-top: 50px;
    margin: auto;
    background: #17033066; 
    padding: 40px;
    box-shadow: 0 5px 15px #2c065c66; 
    border-radius: 15px;

    margin-bottom: 80px;
}

.team-block h2
{
    font-size: 50px;
    text-align: center;
          text-shadow: 5px 5px rgba(75, 75, 75, 0.5);

}

.team-block .team-cards
{
    margin-top: 40px;
}

.team-block .line-1
{
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}
.team-block .line-2
{
    display: flex;
     justify-content: space-around;
    margin-bottom: 30px;
}
.team-block .line-3
{
    display: flex;
   justify-content: space-around; 
}

.team-block .team-member 
{
    padding: 10px;
    border: rgba(255, 255, 255, 0.062) 3px solid;
    border-radius: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-block .team-member img 
{
    width: 170px;
    height: 170px;
     border-radius: 10%;
}

.team-block .team-member h3 
{
    margin-top: 10px;
    font-size: 20px;
}





.Ready
{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 100px;
}

.Ready h2
{
    font-size: 35px;
}

.Ready p
{
    margin-top: 4px;
    margin-bottom: 9px;
    font-size: 15px;
    color: #ffffff6c;
}

.Ready .button
{
            padding: 15px 40px;
            font-size: 18px;
            font-weight: 600;
            color: white;
            background: #580db466;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px #2c065c66; 
             text-decoration: none;
}

       .button:hover {
            background: #7011e466;
            box-shadow: 0 5px 15px #2c065c66; 
        }


    
        .divider {
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.459), transparent);
            border: none;
            border-radius: 1px;
            box-shadow: 0 2px 10px rgba(255, 255, 255, 0.151);
            margin-bottom: 50px;
        }