/* --- About Us Hero Section --- */
.fb-about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    /* Reduced Height */
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?auto=format&fit=crop&q=80&w=2072');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.fb-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.fb-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    /* Desktop par text left mein rahega */
    display: flex;
    justify-content: flex-start;
}

.fb-hero-box {
    text-align: left;
    /* Text left alignment */
}

.fb-hero-title {
    font-size: 48px;
    /* Desktop font size reduced */
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 1px;
}

.fb-hero-title span {
    color: #FFB400;
}

.fb-hero-line {
    width: 60px;
    height: 4px;
    background: #FFB400;
    margin: 10px 0 25px 0;
    /* Margin adjusted for left alignment */
    border-radius: 5px;
}

/* --- SMALLER GOL (ROUND) BUTTON --- */
.fb-hero-btn {
    display: inline-block;
    background-color: #FFB400;
    color: #000000;
    padding: 10px 30px;
    /* Smaller Padding */
    font-size: 15px;
    /* Smaller Font Size */
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fb-hero-btn:hover {
    background-color: #ffffff;
    transform: translateY(-2px);
}

/* --- RESPONSIVE ADJUSTMENTS --- */

/* Tablet & Mobile (Iske niche center ho jayega) */
@media (max-width: 992px) {
    .fb-hero-container {
        justify-content: center;
        /* Center for Tablet/Mobile */
    }

    .fb-hero-box {
        text-align: center;
        /* Center text */
    }

    .fb-hero-line {
        margin: 10px auto 25px auto;
        /* Line centered */
    }

    .fb-hero-title {
        font-size: 38px;
    }
}

@media (max-width: 480px) {
    .fb-about-hero {
        height: 300px;
    }

    .fb-hero-title {
        font-size: 25px;
        margin-top: 50px;
    }

    .fb-hero-btn {
        padding: 8px 25px;
        font-size: 14px;
    }
}






/* --- About Details Section --- */
.fb-about-details {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fb-details-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Profile Grid Logic */
.fb-profile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}

.fb-section-heading {
    font-size: 36px;
    font-weight: 800;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.fb-section-heading span {
    color: #FFB400;
}

.fb-accent-line {
    width: 50px;
    height: 5px;
    background: #FFB400;
    margin-bottom: 25px;
}

.fb-profile-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.fb-profile-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 20px 20px 0px #FFB400; /* Creative Yellow Shadow */
}

/* --- GOL (PILL) BUTTON --- */
.fb-round-btn {
    display: inline-block;
    background: #000;
    color: #FFB400;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #000;
    transition: 0.3s;
    margin-top: 10px;
}

.fb-round-btn:hover {
    background: #FFB400;
    color: #000;
}

/* Vision Banner */
.fb-vision-banner {
    background: #000;
    color: #fff;
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.fb-vision-banner h3 {
    color: #FFB400;
    font-size: 28px;
    margin-bottom: 20px;
}

.fb-vision-banner p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* --- RESPONSIVE FIXES --- */

@media (max-width: 992px) {
    .fb-profile-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .fb-accent-line {
        margin: 0 auto 25px;
    }

    .fb-profile-image {
        order: -1; /* Image comes first on mobile */
    }
    
    .fb-profile-image img {
        box-shadow: 10px 10px 0px #FFB400;
    }

    .fb-vision-banner {
        padding: 40px 20px;
    }
}






.fb-corp-layout {
    background-color: #f8f9fa;
    padding: 60px 20px;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.fb-wrapper {
    max-width: 1140px;
    margin: 0 auto;
}

.fb-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.fb-item {
    display: flex;
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.fb-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fb-icon-area {
    min-width: 65px;
    height: 65px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-right: 25px;
}

.fb-item-title {
    margin: 0 0 12px 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.fb-item-text {
    margin: 0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Color Themes */

.fb-white-card {
    background: #ffffff;
    border: 1px solid #eef0f2;
}
.fb-white-card .fb-item-title { color: #008148; } /* Screenshot Green */
.fb-white-card .fb-item-text { color: #4a4a4a; }
.fb-white-card .fb-icon-area { background: #f0fdf4; }

.fb-black-card {
    background: #000000;
}
.fb-black-card .fb-item-title { color: #ffd700; }
.fb-black-card .fb-item-text { color: #e0e0e0; }
.fb-black-card .fb-icon-area { background: rgba(255, 215, 0, 0.15); }

.fb-yellow-card {
    background: #ffd700;
}
.fb-yellow-card .fb-item-title { color: #000000; }
.fb-yellow-card .fb-item-text { color: #1a1a1a; }
.fb-yellow-card .fb-icon-area { background: rgba(0, 0, 0, 0.08); }

/* Responsive Adjustments */
@media (max-width: 992px) {
    .fb-main-grid {
        grid-template-columns: 1fr;
    }
    .fb-corp-layout {
        padding: 40px 15px;
    }
}

@media (max-width: 500px) {
    .fb-item {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
    .fb-icon-area {
        margin: 0 auto 20px auto;
    }
}








.delhi-hq-section {
    /* background: #000; */
    padding: 80px 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: #fff;
    overflow: hidden;
}

.del-container {
    max-width: 1200px;
    margin: 0 auto;
}

.del-header {
    text-align: center;
    margin-bottom: 60px;
}

.del-main-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.del-yellow { color: #FFD700; text-shadow: 0 0 20px rgba(255, 215, 0, 0.5); }
.del-tagline { color: #888; font-size: 18px; }

/* Layout Grid */
.del-layout-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.del-side-panel {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 280px;
}

/* Glassmorphism Cards */
.del-glass-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: 0.4s;
    cursor: default;
}

.del-glass-card:hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.08);
    transform: translateY(-5px);
}

.del-zone {
    color: #FFD700;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
}

.del-glass-card p {
    margin: 10px 0 0;
    color: #ccc;
    font-size: 15px;
}

/* Map Styling */
.del-map-area {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.del-map-inner {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.del-india-svg {
    width: 100%;
    filter: invert(1) brightness(0.2) contrast(1.5);
    opacity: 0.6;
}

/* Delhi HQ Styling */
.del-hq-point {
    position: absolute;
    top: 25%; /* Delhi approximate position */
    left: 30%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.del-hq-label {
    background: #FFD700;
    color: #000;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 900;
    border-radius: 4px;
    white-space: nowrap;
    box-shadow: 0 0 15px #FFD700;
}

.del-hq-glow {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    margin: 5px auto 0;
    box-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

.del-hq-pulse {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: del-ping 2s infinite;
}

@keyframes del-ping {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

/* Responsive */
@media (max-width: 1024px) {
    .del-layout-wrapper {
        flex-direction: column;
    }
    .del-side-panel {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .del-glass-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .del-glass-card { width: 100%; }
    .del-map-inner { max-width: 300px; }
}