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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
} 

/* Body / General */

body {
    line-height: 1.6;
    color: #1f2937;
    font-family: 'Poppins', sans-serif;
}



/* ==============================
   SERVICES SECTION
============================== */
.services-preview {
    padding: 120px 20px 90px 20px; 
    background: #ffffff;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.services-preview h1 {
    font-size: 30px;
    font-weight: 700;
    color: #0b1c2d;
    margin-bottom: 12px;
}

.services-preview h1 span {
    color: #f5b400;
    font-weight: 900;
}

.services-preview .divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0 35px;
}

.services-preview .divider::before,
.services-preview .divider::after {
    content: "";
    width: 70px;
    height: 2px;
    background: linear-gradient(to right, #f5b400, rgba(245,180,0,0.2));
}

.services-preview .divider::before {
    background: linear-gradient(to left, #f5b400, rgba(245,180,0,0.2));
}

.services-preview .divider span {
    width: 8px;
    height: 18px;
    background: #f5b400;
    border-radius: 50px;
    margin: 0 14px;
}

.services-preview h2 {
    font-size: 40px;
    font-weight: 700;
    color: #00070c;
    margin-top: -25px;
    margin-bottom: 18px;
}

.services-preview p {
    font-size: 18px;
    color: #5f6c7b;
    max-width: 700px;
    margin: -20px auto 25px auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Card */
.service-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */
.card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

/* Content */
.card-content {
    padding: 30px 20px; /* increased vertical padding */
    text-align: left;   /* LEFT ALIGN ALL TEXT INSIDE */
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 12px;
    text-align: left;   /* ENSURE LEFT ALIGN */
    margin-left: 0;
    margin-right: 0;
}

.card-content p {
    color: #666;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: left;   /* ENSURE LEFT ALIGN */
    margin-left: 0;
    margin-right: 0;
}

/* Footer */
.card-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align items to left instead of spaced */
    gap: 10px; /* Space between rating and button */
}

.rating {
    font-size: 14px;
    color: #333;
    text-align: left;
}

/* Button */
.btn {
    background: #000;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
    text-align: center;  /* Buttons keep center text */
    margin: 0;           /* Remove any auto margin */
}

.btn:hover {
    background: #222;
}

.btn.full {
    width: 100%;
    text-align: center;
}


/* ==============================
   SECTION TITLE
============================== */
#fb-why-choose-section {
    background: #f8fafc;
    padding: 80px 60px;
    text-align: center;   /* 🔥 center title + text */
}

#fb-why-choose-section h1 {
    font-size: 44px;      /* 🔥 bigger title */
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 15px;
}

#fb-why-choose-section > p {
    max-width: 820px;
    margin: 0 auto 50px;  /* center + spacing */
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

/* ==============================
   SECTION
============================== */
#fb-why-choose-section {
    background: #f8fafc;
    padding: 80px 60px;
}

/* ==============================
   GRID → 3 COLUMNS
============================== */
.fb-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 🔥 3 columns */
    gap: 32px;
}

/* ==============================
   CARD
============================== */
.fb-feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.fb-feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* ==============================
   ICON
============================== */
.fb-icon-box {
    width: 60px;
    height: 60px;
    background: #fef3c7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.fb-icon-box i {
    font-size: 26px;
    color: #d97706;
}

/* ==============================
   TEXT
============================== */
.fb-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.fb-card-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}


        #aboutSectionTFB {
            padding: 80px 60px;
            background: #f9fbfd;
            font-family: 'Poppins', sans-serif;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* WRAPPER */
        .aboutWrapperTFB {
            display: flex;
            gap: 60px;
            align-items: center;
        }

        /* LEFT CONTENT */
        .aboutContentTFB {
            flex: 1;
        }

        .aboutTitleTFB {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 25px;
            color: #1f2937;
            position: relative;
        }



        .aboutHeadingTFB {
            font-size: 34px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #0f172a;
            line-height: 1.3;
        }

        .aboutTextTFB {
            font-size: 16px;
            line-height: 1.8;
            color: #475569;
            margin-bottom: 16px;
            max-width: 520px;
        }

        #aboutBtnTFB {
            margin-top: 25px;
            padding: 14px 32px;
            border-radius: 40px;
            border: none;
            background: linear-gradient(135deg, #2d3748, #4a5568);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        #aboutBtnTFB:hover {
            background: linear-gradient(135deg, #4a5568, #2d3748);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        /* IMAGE GRID */
  .aboutImagesTFB {
    flex: 1;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 25px;
}

/* IMAGE CARD */
.imgCardTFB {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    height: 260px;               /* SAME HEIGHT */
    transition: transform 0.3s ease;
}

/* IMAGE */
.imgCardTFB img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* HOVER */
.imgCardTFB:hover {
    transform: translateY(-5px);
}

.imgCardTFB:hover img {
    transform: scale(1.15);
}

/* 🔥 OFFSET ONLY IMAGE 2 & 4 */
.aboutImagesTFB .imgCardTFB:nth-child(2),
.aboutImagesTFB .imgCardTFB:nth-child(4) {
    margin-top: 30px;   /* 👈 adjust 20–40px if needed */
}

/* GRID POSITION */
.aboutImagesTFB .imgCardTFB:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.aboutImagesTFB .imgCardTFB:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.aboutImagesTFB .imgCardTFB:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
}

.aboutImagesTFB .imgCardTFB:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .aboutImagesTFB {
        grid-template-columns: 1fr;
    }

    .imgCardTFB {
        height: 240px;
        margin-top: 0;
    }
}

        /* RESPONSIVE DESIGN */
        @media (max-width: 1200px) {
            #aboutSectionTFB {
                padding: 60px 40px;
            }
            
            .aboutWrapperTFB {
                gap: 40px;
            }
        }

        @media (max-width: 992px) {
            .aboutWrapperTFB {
                flex-direction: column;
                gap: 40px;
            }

            .aboutImagesTFB {
                width: 100%;
                max-width: 600px;
                grid-template-columns: 1fr 1fr;
            }

            .aboutImagesTFB .imgCardTFB:nth-child(4) {
                grid-column: 1 / span 2;
                grid-row: 3;
            }

            .imgWideTFB,
            .imgTallTFB {
                height: 220px;
            }

            .aboutImagesTFB .imgCardTFB:nth-child(2) {
                grid-row: 1 / span 2;
            }
        }

        @media (max-width: 768px) {
            #aboutSectionTFB {
                padding: 40px 20px;
            }

            .aboutTitleTFB {
                font-size: 36px;
            }

            .aboutHeadingTFB {
                font-size: 28px;
            }

            .aboutImagesTFB {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .aboutImagesTFB .imgCardTFB:nth-child(1),
            .aboutImagesTFB .imgCardTFB:nth-child(2),
            .aboutImagesTFB .imgCardTFB:nth-child(3),
            .aboutImagesTFB .imgCardTFB:nth-child(4) {
                grid-column: 1;
                grid-row: auto;
                height: 250px;
            }

            .imgCardTFB {
                height: 250px;
            }
        }

        @media (max-width: 480px) {
            .aboutTitleTFB {
                font-size: 32px;
            }

            .aboutHeadingTFB {
                font-size: 24px;
            }

            .aboutTextTFB {
                font-size: 15px;
            }

            #aboutBtnTFB {
                padding: 12px 28px;
                width: 100%;
            }
        }


/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 992px) {
    .fb-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .fb-cards-grid {
        grid-template-columns: 1fr;
    }
}