: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;
}

main {
    text-align: center;
    padding: 20px;
    max-width: 1200px; 
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

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

.hero-section {
    min-height: 80vh; /* Ensures the intro takes up most of the screen */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    padding: 50px 0;
    overflow: hidden; 
}

.hero-section h1 {
    font-size: 8em;
    font-weight: bold;
    margin: 0;
    text-align: center;
    text-shadow: 0 0 10px rgba(106, 13, 221, 0.5); 
}

.hero-section p {
    font-size: 2em;
    color: var(--secondary-text-color);
    margin-top: 5px;
    margin-bottom: 50px;
    text-align: center;
}

/* Scroll Button Style */
.scroll-button {
    display: inline-flex;
    align-items: center;
    text-decoration: none; 
    background-color: var(--accent-color);
    color: var(--text-color);
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.3s;
    cursor: pointer;
}

.scroll-button:hover {
    background-color: #5a099d; /* Darker accent on hover */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(106, 13, 221, 0.4); 
}

/* Animations (Kept simple slide in) */
@keyframes slideInLeft {
    from { transform: translateX(-100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

.tracks-section {
    text-align: center;
    padding-top: 20px;
}

.tracks-title {
    font-size: 3em;
    font-weight: 600;
    margin-bottom: 5px;
    display: block; 
}

.tracks-subtitle {
    font-size: 1.2em;
    color: var(--secondary-text-color);
    margin-bottom: 40px;
}

.tracks-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
    gap: 30px; 
    margin: 0 auto;
    padding: 20px 0;
}

/* Simplified Card Styling */
.track-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 450px; /* Wider card size for two columns */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* The wide-card is for the single card in the bottom row */
.wide-card {
    max-width: 930px; /* Ensures it looks centered below the two top cards */
    margin-top: 20px;
}

.track-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(106, 13, 221, 0.5); /* Accent-color shadow on hover */
}

/* Icon Styling */
.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Specific icon colors */
.webdev-icon { background-color: var(--icon-webdev-color); }
.mobile-icon { background-color: var(--icon-mobile-color); }
.cyber-icon { background-color: var(--icon-cyber-color); }

.card-icon {
    font-size: 2.2em;
    color: var(--text-color);
}

.track-label {
    font-size: 1.5em;
    font-weight: bold;
    margin: 0 0 10px 0;
    color: var(--text-color);
}

.card-description {
    font-size: 1em;
    color: var(--secondary-text-color);
    margin-bottom: 25px;
}

/* Buttons inside the Card */
.buttons-row {
    display: flex;
    gap: 10px; 
    margin-top: auto; 
    padding-top: 15px;
}

.track-link {
    text-decoration: none; 
    background-color: var(--accent-color);
    color: var(--text-color);
    border: 1px solid var(--accent-color); 
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
    flex-grow: 1; 
    text-align: center;
    white-space: nowrap; 
}

.full-width-link {
    flex-grow: 1;
}

.track-link:hover {
    background-color: transparent; 
    color: var(--accent-color); 
    border-color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .track-card {
        max-width: 90%; 
        margin: 0 auto;
    }
    .wide-card {
        max-width: 90%;
    }
}

@media (max-width: 600px) {
    .hero-section h1 {
        font-size: 4em;
    }
    .buttons-row {
        flex-direction: column;
    }
}
.cyber-header {
    position: absolute;
    top: 150px;
    left: 500px;
    text-align: center;
}

.cyber-title {
    font-size: 70px;
    font-weight: bold;
    color: white;
     margin-bottom: 10px;
}

.cyber-subtitle {
    font-size:50px;
    color: #ffffff;
    margin-top: 0;
}
.intro-section {
    padding: 300px 40px 60px 40px;
    background-color: transparent;
    color: white;
    min-height: auto;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-title {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #ffffff;
    border-bottom: 3px solid #7c3aed;
    padding-bottom: 15px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
    text-align: justify;
    margin-top: 30px;
}

.intro-subsections {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.subsection {
    background-color: rgba(26, 0, 51, 0.6);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.subsection h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #ffffff;
}

.subsection ul {
    list-style: none;
    padding: 0;
}

.subsection li {
    padding: 8px 0;
    color: #b0b0b0;
    font-size: 16px;
}

.subsection li:before {
    content: "▹ ";
    color: #7c3aed;
    margin-right: 10px;
}

.subsection p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro-subsections {
        grid-template-columns: 1fr;
    }
    
    .intro-title {
        font-size: 36px;
    }
    
    .intro-text {
        font-size: 16px;
    }
}
.red-team-section {
    padding: 80px 40px;
    background-color: transparent;
    color: white;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 25px;
    margin-top: 50px;
    color: #ffffff;
    border-bottom: 3px solid #7c3aed;
    padding-bottom: 15px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
    text-align: justify;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.objective-card {
    background-color: rgba(26, 0, 51, 0.6);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.objective-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.objective-card p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

.methodologies {
    margin-bottom: 50px;
}

.method-item {
    background-color: rgba(26, 0, 51, 0.6);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.method-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #ffffff;
}

.method-item p {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
}

.comparison-table {
    background-color: rgba(26, 0, 51, 0.6);
    border-radius: 8px;
    overflow: hidden;
    border-left: 4px solid #7c3aed;
    margin-bottom: 50px;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.6;
    border-right: 1px solid rgba(124, 58, 237, 0.3);
}

.comparison-cell:last-child {
    border-right: none;
}

.comparison-cell.header {
    background-color: rgba(124, 58, 237, 0.2);
    color: #ffffff;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .objectives-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-cell {
        border-right: none;
        border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    }
    
    .section-title {
        font-size: 28px;
    }
}