/* ==about-us page== */
.hero {
    position: relative;
    min-height: 65vh;
    background-image: url("../images/about/about-image-2.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 6%;
    color: #fff;
}

#official-banner {
    background-image: url("../images/banner/official-banner.jpg");
}

#news-banner{
    background-image: url("../images/banner/news-banner.jpg");
}

#contact-banner {
    background-image: url("../images/banner/contact-banner.jpg");
}

#privacy-banner {
    background-image: url("../images/banner/privacy-banner.jpg");
}

#terms {
    background-image: url("../images/banner/terms-banner.jpg");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 14%) 0%, rgba(0, 0, 0, 0.35) 50%, rgba(0, 0, 0, 0.15) 100%);
}

.hero a {
    color: #ffffff;
    text-decoration: none;
}

.hero-content {
    position: relative;
    max-width: 680px;
    z-index: 1;
    margin-top: 6rem;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 14px;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
}

/* main */
.in-touch {
    background: #dfb441;
    color: #000;
    border-radius: 30px;
    padding: 10px 18px;
    font-weight: 600;
    gap: 6px;
    align-items: center;
}

/* vision section */
/* Vision Section */
.vision-section {
    padding: 90px 20px;
    background: #f8f8f8;
}

/* Layout wrapper */
.vision-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Left content */
.vision-content {
    flex: 1;
}

.about-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #dfb441;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #111;
}

.section-title span {
    color: #197f44;
}

.vision-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 14px;
}

/* Right icon grid */
.vision-icons {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.vision-icon-box {
    background: #ffffff;
    padding: 28px 22px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-icon-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.vision-icon-box i {
    font-size: 42px;
    color: #dfb441;
    margin-bottom: 14px;
}

.vision-icon-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    margin-bottom: 8px;
}

.vision-icon-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Center the 3rd card */
.vision-icon-box:nth-child(3) {
    grid-column: span 2;
}

/* ==contact page== */
.contact-section {
    padding: 90px 6%;
    background: #fff;
    font-family: system-ui, sans-serif;
}

.contact-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
}

.contact-info {
    align-content: center;
}

/* Left */
.contact-badge {
    display: inline-block;
    background: #dfb44166;
    color: #000;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.contact-info h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.contact-info p {
    color: #666;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Info Items */
.info-items {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.info-icon {
    width: 42px;
    height: 42px;
    background: #dfb441;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s;
}

.info-icon:hover {
    background: #198754;
    color: white;
    transform: rotateY(180deg);
}

.info-item a {
    color: black;
    text-decoration: none;
}

.info-item a:hover {
    color: #198754;
}

.info-item small {
    display: block;
    color: #777;
    font-size: 12px;
}

.info-item strong {
    font-size: 15px;
}

/* Right Form */
.contact-form {
    background: #000;
    color: #fff;
    padding: 50px;
    border-radius: 24px;
}

.contact-form h3 {
    font-size: 26px;
    margin-bottom: 10px;
}

.form-desc {
    color: #bbb;
    font-size: 14px;
    margin-bottom: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form label {
    font-size: 13px;
    color: #dfb441;
    display: block;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    background: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 14px;
    color: #fff;
    margin-bottom: 0px;
}

.contact-form textarea {
    resize: none;
}

/* Button */
.contact-form button {
    background: #dfb441;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
}

/* ==official== */
/* ================= TEAM SECTION ================= */

.team-section {
    padding: 90px 6%;
    background: #f9fafb;
}

.team-header {
    max-width: 1300px;
    margin: auto;
}

.about-tag {
    font-weight: 700;
    color: #dfb441;
    letter-spacing: 1px;
}

/* Title Row */
.team-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    flex-wrap: wrap;
    gap: 20px;
}

.team-title h2 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
}

/* Button */
.view-all-btn {
    background: #dfb441;
    padding: 14px 26px;
    border-radius: 40px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #197f44;
    color: white;
    transform: translateY(-2px);
}

.divider {
    height: 3px;
    width: 80px;
    background: #dfb441;
    margin: 30px 0 60px;
}

/* ================= GRID ================= */

.team-grid {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ================= CARD ================= */

.team-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.team-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover img {
    transform: scale(1.1);
}

/* Overlay */
.team-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.2));
}

/* ================= CONTENT ================= */

.card-content {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
}

.card-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.card-content span {
    font-size: 14px;
    opacity: 0.9;
}

/* Phone Icon */
.team-arrow {
    background: #dfb441;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.team-arrow:hover {
    background: #fff;
    transform: scale(1.15) rotate(10deg);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-title h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 70px 5%;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .team-title h2 {
        font-size: 30px;
    }

    .team-card img {
        height: 300px;
    }
}

/* news and letter */
.news-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Image Wrapper */
.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}

/* Date Tag */
.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #dfb441;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 14px;
    border-radius: 30px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

details {
    color: #dfb441;
    font-weight: 700;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
    .news-image img {
        height: 220px;
    }

    .news-card-content h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .news-image img {
        height: 200px;
    }

    .news-card-content {
        padding: 20px;
    }
}

/* ===privacy-policy=== */
.policy-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url("snow-cricket.jpg") center / cover no-repeat;
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.policy-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.policy-hero p {
    font-size: 1.05rem;
    max-width: 720px;
    margin: auto;
    line-height: 1.7;
    color: #e5e7eb;
}

/* ==============================
   Content Container
   ============================== */
.policy-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Last Updated */
.policy-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Headings */
.policy-container h2 {
    font-size: 1.45rem;
    color: #198754;
    margin-top: 45px;
    margin-bottom: 15px;
    position: relative;
}

/* subtle underline */
.policy-container h2::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #198754;
    margin-top: 6px;
    border-radius: 10px;
}

/* Text */
.policy-container p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 14px;
}

/* Lists */
.policy-container ul {
    padding-left: 20px;
    margin-top: 10px;
}

.policy-container li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 10px;
}

/* Highlight keywords */
.policy-container strong {
    color: #111827;
}

/* ===terms & Conditions=== */
.terms-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url("snow-cricket.jpg") center / cover no-repeat;
    padding: 90px 20px;
    text-align: center;
    color: #ffffff;
}

.terms-hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.terms-hero p {
    font-size: 1.05rem;
    max-width: 750px;
    margin: auto;
    line-height: 1.7;
    color: #e5e7eb;
}

/* Container */
.terms-container {
    max-width: 900px;
    margin: 50px auto;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Date */
.terms-date {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 25px;
}

/* Headings */
.terms-container h2 {
    font-size: 1.45rem;
    color: #198754;
    margin-top: 45px;
    margin-bottom: 15px;
    position: relative;
}

.terms-container h2::after {
    content: "";
    width: 45px;
    height: 3px;
    background: #198754;
    display: block;
    margin-top: 6px;
    border-radius: 10px;
}

/* Text */
.terms-container p,
.terms-container li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #374151;
}

.terms-container ul {
    padding-left: 20px;
    margin-top: 10px;
}

.terms-container li {
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .terms-hero h1 {
        font-size: 2.4rem;
    }

    .terms-container {
        margin: -40px 15px 60px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .terms-hero h1 {
        font-size: 2rem;
    }

    .terms-container h2 {
        font-size: 1.3rem;
    }
}


/* ===Responsive=== */
@media (max-width: 1100px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .team-title h2 {
        font-size: 32px;
    }
}


/* ==Responsive== */
@media (max-width: 900px) {
    .about-hero {
        min-height: 60vh;
        padding: 0 8%;
    }

    .about-hero h1 {
        font-size: 38px;
    }

    .about-hero p {
        font-size: 16px;
    }
}

/* contact */

/* Responsive */
@media (max-width: 1000px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .contact-info h1 {
        font-size: 38px;
    }

    .contact-form {
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* vision section */
@media (max-width: 991px) {
    .vision-wrapper {
        flex-direction: column;
    }

    .section-title {
        font-size: 30px;
    }

    .vision-icons {
        grid-template-columns: 1fr;
    }

    .vision-icon-box:nth-child(3) {
        grid-column: span 1;
    }
}

/* news-letter */
@media (max-width: 600px) {
    .about-title {
        font-size: 2.1rem;
    }

    .newsletter-benefits {
        text-align: center;
    }
}

/* privacy-policy */
@media (max-width: 768px) {
    .policy-hero {
        padding: 70px 20px;
    }

    .policy-hero h1 {
        font-size: 2.4rem;
    }

    .policy-container {
        margin: -40px 15px 60px;
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
    }
}

/* ===thanks page=== */
.thanks-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 15px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #e4efe9);
}

.thanks-container {
    background: #ffffff;
    max-width: 560px;
    width: 100%;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    animation: fadeIn 0.7s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.check-icon {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.check-icon i {
    color: #ffffff;
    font-size: 46px;
}

.thanks-container h1 {
    font-size: 36px;
    font-weight: 700;
    color: #1f2933;
    margin-bottom: 18px;
}

.thanks-container p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #dfb441;
    color: #111;
    border: none;
}

.btn-primary:hover {
    background: #c9a032;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #197f44;
    color: #ffffff;
    border: none;
}

.btn-secondary:hover {
    background: #145f33;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .thanks-container {
        padding: 40px 25px;
    }

    .thanks-container h1 {
        font-size: 28px;
    }

    .check-icon {
        width: 85px;
        height: 85px;
    }

    .check-icon i {
        font-size: 38px;
    }
}