/* --- RESET & BASE STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* --- HEADER STYLES --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 15px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.brand-logo {
    border: 2px dashed #333;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.corporate-link {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
    font-weight: 500;
}

.top-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.top-nav a {
    text-decoration: none;
    color: #444;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.top-nav a:hover {
    color: #1a365d;
}

.parent-logo {
    font-weight: bold;
    color: #1a365d;
    letter-spacing: 0.5px;
}

/* --- MAIN CONTENT STYLES --- */
.main-content {
    flex: 1;
    
    width: 100%;
    margin: 0 auto;
    padding: 20px 40px;
}



/* Amalgamation Alert */
.alert-bar {
    background-color: #e6f4ea;
    color: #137333;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 25px;
    border: 1px solid #ceead6;
}

/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}

.right-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Card General Styles */
.card {
    border-radius: 8px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.card-large {
    min-height: 340px;
}

.card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.4;
}

/* Card Colors */
.card-yellow {
    background-color: #fce8b2;
    color: #202124;
}

.card-blue {
    background-color: #1a365d;
    color: #ffffff;
}

/* Buttons */
.btn {
    align-self: flex-end;
    padding: 8px 20px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

.btn-dark {
    background-color: transparent;
    border-color: #202124;
    color: #202124;
}

.btn-dark:hover {
    background-color: #202124;
    color: #fff;
}

.btn-light {
    background-color: transparent;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-light:hover {
    background-color: #ffffff;
    color: #1a365d;
}

/* Footer Partners */
.partners-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    flex-wrap: wrap;
    opacity: 0.6;
    border-top: 1px solid #e0e0e0;
}

.partners-section span {
    font-weight: bold;
    font-size: 1.1rem;
    color: #555;
}

/* --- FOOTER STYLES --- */
.main-footer {
    background-color: #1a365d;
    padding: 20px 40px;
    margin-top: auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    opacity: 0.8;
    transition: opacity 0.2s;
}

.footer-links a:hover {
    opacity: 1;
}


/* ==========================================================================
   ONLY BOOKING FORM & STEPPER STYLES (Header/Footer Inherited from style.css)
   ========================================================================== */

/* --- MAIN CONTENT & STEPPER --- */
.main-content {
    flex: 1;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Stepper Tracker */
.steps-container {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 30px;
    overflow-x: auto;
    gap: 15px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 0.9rem;
    white-space: nowrap;
}

.step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.step.active {
    color: #1a365d;
    font-weight: 600;
}

.step.active .step-number {
    background-color: #1a365d;
    color: #fff;
}

/* --- FORM LAYOUT --- */
.form-section {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 30px;
}

.section-title h2 {
    font-size: 1.3rem;
    color: #1a365d;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: #444;
}

.form-group input, 
.form-group select {
    padding: 10px 14px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.95rem;
    background-color: #fff;
    outline: none;
    transition: border-color 0.2s;
}

.form-group input:focus, 
.form-group select:focus {
    border-color: #1a365d;
}

/* Info Note */
.info-note {
    background-color: #fdf6e2;
    border-left: 4px solid #f3b006;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 0.88rem;
    color: #664d03;
    margin-bottom: 30px;
}

/* Captcha Components */
.captcha-container {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f0f0f0;
    padding: 8px 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.captcha-code {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 4px;
    color: #333;
    user-select: none;
}

.btn-refresh {
    background: none;
    border: none;
    color: #0066cc;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-refresh:hover {
    text-decoration: underline;
}

.captcha-input-group {
    max-width: 180px;
}

/* Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.btn-submit {
    background-color: #1a365d;
    color: #ffffff;
    border: none;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-submit:hover {
    background-color: #112542;
}

/* --- TABS SHOW/HIDE LOGIC --- */
.tab-content {
    display: none; /* Saare tabs hidden rahenge */
}

.tab-content.active {
    display: block; /* Sirf active tab dikhega */
}

.step {
    cursor: pointer; /* Tabs par pointer hand icon dikhane ke liye */
    transition: all 0.2s ease;
}

.step:hover {
    color: #1a365d;
}


/* tets  */

.summary-table{

width:100%;

border-collapse:collapse;

}

.summary-table th,
.summary-table td{

padding:15px;

border:1px solid #ddd;

text-align:left;

}

.summary-table th{

width:250px;

background:#f7f7f7;

}   

.main-content-i {
    max-width: 1400px !important;
}