/* Custom Styles */
:root {
    --primary-color: #0d2e59; /* Defence Blue */
    --accent-color: #ffc107;  /* Warning/Highlight Yellow */
    --text-dark: #212529;
    --light-bg: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4b85 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.hero-title {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-weight: 300;
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Buttons */
.btn-cta {
    background-color: var(--accent-color);
    color: #000;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    border: none;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    background-color: #ffca2c;
    color: #000;
}

/* Cards and Sections */
.section-padding {
    padding: 60px 0;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.info-card {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.info-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(13, 46, 89, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Mentor Section */
.kalam-connection {
    background: linear-gradient(45deg, #d32f2f, #b71c1c);
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    font-weight: 600;
}

.mentor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.stat-badge {
    background-color: #e3f2fd;
    color: #0d47a1;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    padding: 10px 0;
    display: flex;
    align-items: start;
}

.benefit-list li i {
    color: #28a745;
    margin-right: 10px;
    margin-top: 4px;
}

footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}