/* CSS Reset & Variables */
:root {
    --primary-blue: #0A3A6A;
    --secondary-blue: #1A5A9A;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #F4F6F9;
    --white: #FFFFFF;
    --border-color: #DDDDDD;
    --accent-orange: #F37021; /* India saffron color */
    --accent-green: #138808;  /* India green color */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Mukta', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styling */
.main-header {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 15px 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--accent-orange);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-emblem {
    height: 70px;
    object-fit: contain;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px;
    border-radius: 4px;
}

.header-titles h1 {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.header-titles p {
    font-size: 14px;
    font-weight: 400;
    color: #E2E8F0;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .logo-india {
    height: 60px;
    object-fit: contain;
}

.mobile-break {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background-color: #FFD600;
    border: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    border-radius: 2px;
    padding: 0 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 3px;
    background-color: #000;
    border-radius: 1px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.intro-section {
    text-align: center;
    max-width: 800px;
}

.intro-section h2 {
    font-size: 28px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.intro-section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-orange);
}

.intro-section p {
    font-size: 16px;
    color: var(--text-light);
}

/* Form Styling */
.form-section {
    width: 100%;
    max-width: 600px;
}

.form-card {
    background-color: var(--white);
    padding: 35px 40px;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-blue);
}

.form-card h3 {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 25px;
    font-size: 22px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.required {
    color: #E53E3E;
}

.form-group input, 
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background-color: #FAFAFA;
}

.form-group input:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--secondary-blue);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 90, 154, 0.1);
}

/* Intl Tel Input Full Width */
.iti {
    width: 100%;
}

.btn-submit {
    width: 100%;
    background-color: var(--secondary-blue);
    color: var(--white);
    border: none;
    padding: 14px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.1s;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: var(--primary-blue);
}

.btn-submit:active {
    transform: scale(0.98);
}

/* Pre-Footer Cards */
.pre-footer-cards {
    background-color: var(--white);
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
}

.cards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 250px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
}

.card img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Footer Styling */
.main-footer {
    background-color: #2D3748;
    color: #A0AEC0;
    padding: 40px 0;
    font-size: 14px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-text {
    flex: 1;
}

.footer-text p {
    line-height: 1.8;
}

.last-updated {
    margin-top: 15px;
    font-weight: 600;
    color: #E2E8F0;
}

.footer-logo img {
    height: 60px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-logo img:hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        align-items: center;
        padding: 0 10px;
        gap: 5px;
    }

    .header-left {
        flex-direction: row;
        gap: 10px;
        flex: 1;
        align-items: center;
    }

    .logo-emblem {
        height: 55px;
        padding: 0;
        background-color: transparent;
    }

    .header-titles h1 {
        font-size: 15px;
        line-height: 1.2;
        margin-bottom: 2px;
    }

    .header-titles p {
        font-size: 11px;
    }

    .header-right {
        flex-direction: column;
        align-items: flex-end;
        justify-content: center;
        gap: 10px;
    }

    .header-right .logo-india {
        height: 25px;
    }

    .mobile-break {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
