/* --- About Us Hero Section --- */
.fb-about-hero {
    position: relative;
    width: 100%;
    height: 400px;
    /* Reduced Height */
    display: flex;
    align-items: center;
    background-image: url('../img/images.jpg');
    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;
    }

    .fb-hero-btn {
        padding: 8px 25px;
        font-size: 14px;
    }
}








/* Prefix 'fb-' to keep it separate from other styles */
.fb-partner-section {
    background-color: #ffffff;
    padding: 80px 20px;
    font-family: 'Arial', sans-serif;
    color: #333;
}

.fb-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Style matches your 'Why Choose Fastball?' image */
.fb-header {
    text-align: center;
    margin-bottom: 60px;
}

.fb-main-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.fb-text-black { color: #000000; }
.fb-text-yellow { color: #FFB400; }

.fb-title-underline {
    width: 60px;
    height: 5px;
    background-color: #FFB400;
    margin: 15px auto 0;
}

/* Grid Layout: Desktop 3, Tablet 2, Mobile 1 */
.fb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Modern Black Card */
.fb-card-1 {
    background: #111111;
    padding: 40px 30px;
    border-radius: 4px;
    color: #ffffff;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.fb-card-1:hover {
    transform: translateY(-10px);
    border-color: #FFB400;
    background: #000000;
}

.fb-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.fb-number {
    font-size: 1rem;
    font-weight: bold;
    color: #000;
    background: #FFB400;
    padding: 5px 12px;
    border-radius: 20px;
}

.fb-icon {
    font-style: normal;
    font-size: 1.5rem;
    color: #FFB400;
}

.fb-card-1 h3 {
    color: #FFB400;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.fb-card-1 p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1024px) {
    .fb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fb-grid {
        grid-template-columns: 1fr;
    }
    
    .fb-main-title {
        font-size: 1.8rem;
    }
    
    .fb-card-1 {
        padding: 30px 20px;
    }
}








.fb-modern-opp {
    background-color: #fdfdfd;
    padding: 80px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.fb-n-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Heading with Yellow Line */
.fb-n-head {
    text-align: center;
    margin-bottom: 70px;
}

.fb-n-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.fb-n-blk { color: #000000; }
.fb-n-ylw { color: #FFB400; }

.fb-n-line {
    width: 60px;
    height: 5px;
    background-color: #FFB400; /* Yellow Line */
    margin: 0 auto;
    border-radius: 50px;
}

/* Layout Logic */
.fb-n-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fb-n-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fb-n-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 66%; /* To keep 2 cards centered and sized like the ones above */
    margin: 0 auto;
}

/* Card Design */
.fb-n-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid #eeeeee;
    text-align: left;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden;
}

.fb-n-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.fb-n-card h3 {
    font-size: 1.4rem;
    color: #000;
    margin-bottom: 15px;
    font-weight: 700;
}

.fb-n-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Persistent Yellow Design Line at Bottom of Card */
.fb-n-footer-line {
    width: 40px;
    height: 4px;
    background-color: #FFB400;
    transition: width 0.4s ease;
}

/* Hover State */
.fb-n-card:hover {
    background-color: #000000;
    border-color: #000000;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.fb-n-card:hover h3 { color: #FFB400; }
.fb-n-card:hover p { color: #bbbbbb; }
.fb-n-card:hover .fb-n-footer-line {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .fb-n-row-top, .fb-n-row-bottom {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 600px) {
    .fb-n-row-top, .fb-n-row-bottom {
        grid-template-columns: 1fr;
    }
    .fb-n-title { font-size: 1.8rem; }
    .fb-n-card { padding: 30px 20px; }
}







.fb-benefits-section {
    background-color: #ffffff;
    padding: 90px 20px;
    font-family: 'Arial Black', Gadget, sans-serif;
}

.fb-b-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Section */
.fb-b-header {
    text-align: center;
    margin-bottom: 70px;
}

.fb-b-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: -1px;
}

.fb-b-blk { color: #000000; }
.fb-b-ylw { color: #FFB400; }

.fb-b-underline {
    width: 60px;
    height: 5px;
    background-color: #FFB400;
    margin: 15px auto 20px;
}

.fb-b-intro {
    font-family: Arial, sans-serif;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
}

/* Grid Layout Logic */
.fb-b-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.fb-b-row-top {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.fb-b-row-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 66%; /* To keep bottom 2 centered */
    margin: 0 auto;
}

/* Card Styling */
.fb-b-card {
    background-color: #111111; /* Sleek Black */
    padding: 45px 30px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    border-right: 0px solid #FFB400;
}

.fb-b-card:hover {
    transform: skew(-2deg) translateY(-10px); /* Unique industrial tilt */
    background-color: #000000;
    border-right: 8px solid #FFB400;
}

.fb-b-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
}

.fb-b-card h3 {
    color: #FFB400;
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.fb-b-card p {
    color: #bbbbbb;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive View */
@media (max-width: 1024px) {
    .fb-b-row-top, .fb-b-row-bottom {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

@media (max-width: 650px) {
    .fb-b-row-top, .fb-b-row-bottom {
        grid-template-columns: 1fr;
    }
    .fb-b-title { font-size: 1.8rem; }
    .fb-b-card { padding: 35px 25px; }
}