/* --- About Us Hero Section --- */
.fb-about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    /* Reduced Height */
    display: flex;
    align-items: center;
    background-image: url('../img/pagebanner4.webp');
    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;
    }
}







/* Unique Prefix: fb- */
.fb-contact-section {
    background-color: #ffffff;
    padding: 80px 5%;
    font-family: 'Segoe UI', sans-serif;
}

.fb-contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.fb-contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.fb-contact-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    color: #000;
}

.fb-text-yellow {
    color: #ffcc00;
    background: #000;
    padding: 0 15px;
}

.fb-contact-sub {
    color: #666;
    margin-top: 10px;
}

/* Flexbox Layout */
.fb-contact-flex {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Form Styling */
.fb-contact-form-box {
    flex: 1;
    background: #000;
    padding: 40px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fb-form-group {
    margin-bottom: 20px;
}

.fb-form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #ffcc00;
    font-weight: 600;
}

.fb-form-group input, 
.fb-form-group textarea {
    width: 100%;
    padding: 12px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    outline: none;
    transition: 0.3s;
}

.fb-form-group input:focus, 
.fb-form-group textarea:focus {
    border-color: #ffcc00;
}

.fb-submit-btn {
    width: 100%;
    padding: 15px;
    background: #ffcc00;
    border: none;
    border-radius: 8px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.fb-submit-btn:hover {
    background: #fff;
    color: #000;
}

/* Map Styling */
.fb-map-box {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 4px solid #000;
    min-height: 450px;
}

.fb-location-tag {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffcc00;
    color: #000;
    padding: 15px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- Responsive View --- */

/* Tablet (Side by Side still, but smaller) */
@media (max-width: 992px) {
    .fb-contact-flex {
        gap: 20px;
    }
}

/* Mobile (Stacked) */
@media (max-width: 768px) {
    .fb-contact-flex {
        flex-direction: column;
    }
    .fb-contact-form-box {
        order: 1; /* Form stays on top */
    }
    .fb-map-box {
        order: 2;
        min-height: 300px;
    }
    .fb-contact-section {
        padding: 40px 15px;
    }
}







/* Unique Prefix: fb-details- */
.fb-details-section {
    background-color: #111111; /* Dark Theme */
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

.fb-details-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
.fb-details-main-title {
    font-size: clamp(28px, 6vw, 45px);
    font-weight: 900; /* Extra Bold */
    text-transform: uppercase;
    margin-bottom: 60px;
    display: inline-block;
    position: relative;
}

.fb-white-text { color: #ffffff; }
.fb-yellow-text { color: #ffcc00; }

.fb-bold-underline {
    width: 60%;
    height: 7px;
    background-color: #ffcc00;
    margin: 12px auto 0;
    border-radius: 50px;
}

/* Grid System */
.fb-details-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
}

/* Circle Card Design */
.fb-details-circle {
    background-color: #ffffff;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 25px;
    border: 2px solid #000;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

/* Hover Effect - Only Circle and Shadow, No Text Zoom */
.fb-details-circle:hover {
    transform: scale(1.08); /* Only Circle Size Increases */
    box-shadow: 0 0 45px rgba(255, 204, 0, 0.7);
}

/* Icon & Content (Zoom removed from here) */
.fb-details-icon {
    font-size: 45px;
    color: #ffcc00; /* Yellow Color */
    margin-bottom: 15px;
}

.fb-details-circle h3 {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.fb-details-circle p {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* --- Responsive Layout --- */

@media (max-width: 992px) {
    .fb-details-circle {
        width: 230px;
        height: 230px;
    }
}

@media (max-width: 600px) {
    .fb-details-section {
        padding: 50px 10px;
    }
    .fb-details-circle {
        width: 250px;
        height: 250px;
    }
    .fb-details-main-title {
        margin-bottom: 40px;
    }
}