
body {
    margin: 0;
    padding: 0;
     font-family: 'Poppins', sans-serif;
    background: #0f172a; 
    color: #ffffff;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Banner Section */
.fb-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(rgba(55, 65, 85, 0.85),rgba(55, 65, 85, 0.85)),
    url("images/banner-bg.jpg") center/cover no-repeat;
    display: flex;
      align-items: flex-start; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 37px;
}

.fb-hero-overlay {
    position: absolute;
    inset: 0;
   background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.25)
);
}

.fb-hero::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: #ffffff;
    clip-path: polygon(0 0%, 100% 40%, 100% 100%, 0% 100%);
    z-index: 3;
      width: 100%;
}

.fb-hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    padding: 10px 20px 20px;
    max-width: 900px;
}

.fb-logo-box {
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.fb-logo-box img {
    height:220px; 
    width: auto;
    object-fit: contain;
    max-width: 100%;
    height: auto;
   
}


.fb-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
      margin-top:-60px;  
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fb-hero-tagline {
    font-size: 18px;
    color: #facc15;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.fb-hero-desc {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
    font-style: italic;
}

/* Contact Section */

.fb-info-section {
    padding: 80px 20px;
    background: #f8fafc;
}

.fb-info-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 50px;
    color: #0f172a;
}

/* Layout */
.fb-info-wrapper {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Card */
.fb-info-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.fb-info-card:hover {
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Rows */
.info-row {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    background: #fff3c4;
    color: #f59e0b;
    padding: 12px;
    border-radius: 12px;
    font-size: 24px;
    height: 42px;
    width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-row h4 {
    margin: 0 0 5px;
    font-size: 15px;
}

.info-row p {
    margin: 0;
    color: #475569;
    font-size: 13px;
}

.info-row a {
    color: #f59e0b;
    font-size: 14px;
    text-decoration: none;
}

/* Right card */
.info-line {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
}

.info-highlight {
    margin-top: 20px;
    background: #fffbe6; /* lighter shade inside */
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    color: #92400e;
    border: 1.5px solid #f9e79f; /* subtle outline */
}

/* Responsive */
@media (max-width: 768px) {
    .fb-info-wrapper {
        grid-template-columns: 1fr;
    }

    .fb-info-title {
        font-size: 28px;
    }
}


/* Banner Section */
.fb-bottom-hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    background: linear-gradient(rgba(55, 65, 85, 0.85),rgba(55, 65, 85, 0.85)),
    url("images/banner-bg.jpg") center/cover no-repeat;
    display: flex;
      align-items: flex-start; 
    justify-content: center;
    text-align: center;
    overflow: hidden;
    max-width: 100%;
    padding-top: 37px;
}

.fb-bottom-overlay{
    position: absolute;
    inset: 0;
   background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.05),
    rgba(0, 0, 0, 0.25)
);
}


.fb-hero-content-bottom {
    position: relative;
    z-index: 2;
    padding: 20px;
    padding: 10px 20px 20px;
    max-width: 900px;
        overflow: hidden;
        max-width: 100%;
}

.fb-logo-box-bottom {
    margin-bottom: 10px;
    background: transparent;
    padding: 0;
}

.fb-logo-box-bottom img {
    height:220px; 
    width: auto;
    object-fit: contain;
}


.fb-hero-title-bottom {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
      margin-top:-60px;  
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fb-hero-tagline-bottom {
    font-size: 18px;
    color: #facc15;
    font-weight: 500;
    margin-bottom: 15px;
    font-style: italic;
}

.fb-hero-desktop {
    font-size: 16px;
    color: #e5e7eb;
    line-height: 1.6;
    max-width: 650px;
    margin: auto;
    font-style: italic;
}
.book-court-btn {
    background-color: gold;
    color: black;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.4);
    text-decoration: none;
}

.book-court-btn:hover {
    background-color: #e6b800; 
}

/* =========================
   RESPONSIVE FIX (ALL DEVICES)
========================= */

/* Large screens */
@media (min-width: 1200px) {
    .fb-hero {
        min-height: 90vh;
    }

   .fb-bottom-hero{
    min-height: 90vh;;
   }

    .fb-hero-title {
        font-size: 52px;
    }

    .fb-hero-title-bottom{
        font-size: 52px;
    }

    .fb-logo-box img {
        height: 230px;
    }

    .fb-logo-box-bottom img{
        height: 230px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .fb-hero {
        min-height: 75vh;
        padding-top: 40px;
    }

    .fb-bottom-hero{
        min-height:  75vh;
        padding-top: 40px;
    }

    .fb-logo-box img {
        height: 170px;
    }

    .fb-logo-box-bottom img{
        height: 170px;
    }

    .fb-hero-title {
        font-size: 40px;
    }

    .fb-hero-title-bottom{
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .fb-hero {
        min-height: 65vh;
        padding-top: 30px;
    }

    .fb-bottom-hero {
        min-height:  65vh;
        padding-top: 30px;
    }

    .fb-logo-box img {
        height: 120px;
    }

    .fb-logo-box-bottom img{
        height: 120px;
    }

    .fb-hero-title {
        font-size: 28px;
        margin-top: -30px;
        letter-spacing: 1px;
    }

    .fb-hero-title-bottom{
        font-size: 28px;
        margin-top: -30px;
        letter-spacing: 1px;
    }

    .fb-hero-tagline {
        font-size: 15px;
    }

    .fb-hero-tagline-bottom{
        font-size: 15px;
    }

    .fb-hero-desc {
        font-size: 14px;
        padding: 0 10px;
    }
     
    .fb-hero-desktop {
        font-size: 14px;
        padding: 0 10px ;
    }
    .fb-hero::after {
        height: 80px;
        clip-path: polygon(0 0%, 100% 30%, 100% 100%, 0% 100%);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .fb-logo-box img {
        height: 95px;
    }

    .fb-logo-box-bottom img {
        height: 95px;
    }

    .fb-hero-title {
        font-size: 24px;
    }

    .fb-hero-title-bottom{
        font-size: 24px;
    }
    .fb-hero-desc {
        font-size: 13px;
    }
}
