
/* root color */
:root {
    --primary-color: #ff7657;
    --secondary-color: #e75645;
    --accent-color: #FFD43B;
    --footer-bg: #111;
    --navbar-bg: #fff;
    --text-color: #333;
    --link-hover: #ff7657;

}

/* base css */
* {
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Qilka', Arial, sans-serif;
    overflow-x: hidden;
}

/* nav css start */

#nav-link {
    background: var(--navbar-bg);
    padding: 0;
    margin: 0;
}

/* Main nav-social */
.nav-social {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    flex-wrap: wrap;
    gap: 15px;
}

/* Social icons */
.social-ID {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-icon {
    font-size: 30px;
    color: var(--text-color);
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}

.social-icon:hover {
    color: var(--link-hover);
    transform: scale(1.5) rotate(10deg);
}

/* Button */
.button {
    position: relative;
    margin-left: 10px;
    display: inline-block;
    padding: 10px 24px;
    border: 2px solid var(--secondary-color);
    border-radius: 34px;
    background-color: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
}

.button-link {
    color: var(--secondary-color);
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    display: inline-block;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary-color);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.5s ease;
    z-index: 0;
}

.button:hover::before {
    transform: scale(3);
}

.button:hover .button-link {
    color: #ffffff;
}

.button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 12px rgba(231, 86, 69, 0.3), 0 0 24px rgba(231, 86, 69, 0.2);
}

.button:active {
    transform: scale(0.98);
}

/* Responsive mobile layout */
@media (max-width: 768px) {
    .nav-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .social-ID {
        justify-content: flex-start;
        gap: 16px;
    }

    .btn-wrap {
        width: 100%;
    }

    .button {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}


/*  NAV-SOCIAL END  */


/*  NAVBAR START  */
#navbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: var(--navbar-bg);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* Logo */
.logo-img-nav {
    width: 70px;
    transition: transform 0.3s ease;
}

.logo-img-nav:hover {
    transform: scale(1.1) rotate(-4deg);
}

/* Nav links */
.nav-link {
    transition: all 0.3s ease;
}

.nav-ul {
    display: flex;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-a {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0%;
    background: var(--link-hover);
    transition: width 0.3s ease;
}

.nav-a:hover {
    color: var(--link-hover);
    text-decoration: none;
}

.nav-a:hover::after {
    width: 100%;
}

/* Hamburger menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.bar {
    height: 3px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.4s ease;
}

.hamburger.open .top-bar {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open .mid-bar {
    opacity: 0;
}

.hamburger.open .bottom-bar {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive styles */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
    }

    .nav-link {
        height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: height 0.5s ease, opacity 0.4s ease;
        width: 100%;
    }

    .nav-link.active {
        height: 230px;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-ul {
        flex-direction: column;
        padding-top: 12px;
        gap: 16px;
    }

    .nav-li {
        opacity: 0;
        transform: translateY(-10px);
    }
}


/*  ANIMATIONS  */
@keyframes slideDown {
    from {
        transform: translateY(-15px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* nav css end */

/* home page css */

/* Hero Section */

/* Hero Section */

.hero-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10vh 5vw;
    position: relative;
    gap: 40px;
    flex-wrap: wrap;
}

.text-of-hero {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
}

.hero-img {
    flex: 1;
    max-width: 50%;
    padding-left: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.5s;
}

.hero-img img {
    width: 100%;
    cursor: pointer;
    height: auto;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.hero-img img:hover {
    transform: scale(1.05);

}

/* Hero Text */
.hero-heading h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.6;
    color: #333;
}

/* CTA Button */
.hero-btn {
    background-color: var(--primary-color);
    color: var(--navbar-bg);
    border: none;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    text-transform: uppercase;
    cursor: pointer;
    outline: none;
    display: inline-block;
    animation: pulse 2s infinite;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn:active {
    background-color: var(--secondary-color);
    transform: translateY(0);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Background Decorative Images */
.bg-img1,
.bg-img2 {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
    pointer-events: none;
}

.bg-img1 {
    top: 40vh;
    left: -25vw;
    transform: rotate(30deg);
    background-image: url(/website/other\ code\ and\ img/);
    position: fixed;
}

.bg-img2 {
    top: 1vh;
    left: 80vw;
    transform: rotate(140deg);
    background-image: url(/website/IMGs/Main-Page/bg.png);
    position: fixed;
}

/* Animation Keyframes */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 118, 87, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 118, 87, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 118, 87, 0);
    }
}

/* Responsive */

@media (max-width: 1024px) {
    .hero-page {
        flex-direction: column;
        text-align: center;
        padding: 8vh 5vw;
    }

    .text-of-hero,
    .hero-img {
        max-width: 100%;
        padding: 0;
    }

    .hero-heading h1 {
        font-size: 28px;
    }

    .hero-text {
        font-size: 1.2rem;
        margin: 15px 0;
    }

    .hero-img img {
        width: 85%;
        margin-top: 4vh;
    }
}

@media (max-width: 768px) {
    .hero-heading h1 {
        font-size: 25px;
        line-height: 1.3;
    }

    .hero-text {
        font-size: 20px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 12px 28px;
    }

    .hero-img img {
        width: 90%;
    }

    .bg-img1,
    .bg-img2 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-heading h1 {
        font-size: 30px;
    }

    .hero-text {
        font-size: 15px;
    }

    .hero-btn {
        font-size: 15px;
        padding: 10px 24px;
    }

    .hero-img img {
        width: 95%;
    }
}

/* HERO END  */

/* Feature Section Start */

/* Keyframes for animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Feature Heading Styling */
.feature-text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5vh;
}

.feature-section-text {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 5px;
    transition: transform 0.3s ease;
    text-decoration: underline;
}

.feature-section-text:hover {
    transform: scale(1.1);
}

.feature-section-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.feature-section-text:hover::after {
    width: 100%;
}

/* Highlighted "T" letter */
.span-feature {
    color: var(--secondary-color);
    font-size: 50px;
}

/* Box Container */
.feature-deatails {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

/* Feature Box */
.feature-box {
    flex: 1 1 0;
    max-width: 350px;
    text-align: center;
    width: 100%;
    max-width: 500px;
    height: auto;
    background-color: var(--navbar-bg);
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

.img-about {
    transition: transform 0.4s ease;
    width: 100%;
    height: auto;
    display: block;
}

.img-about:hover {
    transform: scale(1.1);
}


.box1 {
    animation-delay: 0.3s;
    animation-range: entry 5vh cover 30vh;
}

.box2 {
    animation-delay: 0.6s;
    animation-range: entry 5vh cover 30vh;
}

.box3 {
    animation-delay: 0.9s;
    animation-range: entry 5vh cover 30vh;
}

@media (prefers-reduced-motion: no-preference) {
    .feature-box {
        animation-play-state: running;
    }
}

/* Hover effect on box */

.img-about:hover {
    transform: scale(10px);
}

/* Feature Image */
.img-about-to-enroll {
    display: block;
    margin: 0 auto;
    width: 120px;
    height: auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover effect on image */
.feature-box:hover .img-about-to-enroll {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* Feature Title */
.feature-box .feature-text {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease, transform 0.3s ease;
}

/* Hover effect on title */
.feature-box:hover .feature-text {
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Feature Description */
.feature-describ {
    font-size: 18px;
    color: var(--text-color);
    transition: font-size 0.3s ease;
    margin-top: 10px;
}

/* Hover effect on description */
.feature-box:hover .feature-describ {
    font-size: 20px;
    color: var(--text-color);
}

/* Responsive Fix */
@media (max-width: 768px) {
    .feature-deatails {
        flex-direction: column;
        gap: 20px;
    }
}

.vertical-carousel {
    display: flex;
    flex-direction: column;
    animation: scrollVertical 12s linear infinite;
}

@keyframes scrollVertical {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}


/* Feature Section End */

/* about section start */

.section-about {
    padding-top: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.about-section-text {
    text-align: center;
    font-size: 45px;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    padding-bottom: 10px;
    letter-spacing: 5px;
    transition: transform 0.3s ease;
    text-decoration: underline;
}

.about-section-text:hover {
    transform: scale(1.1);
}

.about-section-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

.about-section-text:hover::after {
    width: 100%;
}

.span-about {
    color: var(--secondary-color);
    font-size: 50px;
}

.ul-about-cha {
    font-size: 20px;
    padding-left: 0;
    margin: 0;
}

.li-about-cha {
    list-style: none;
    margin-bottom: 3vh;
    display: flex;
    align-items: center;
    color: var(--text-color);
    opacity: 1;
    transform: translateX(-50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.li-about-cha.visible {
    opacity: 1;
    transform: translateX(0);
}

.i-icon-about {
    width: 35px;
    text-align: center;
    margin-right: 10px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.i-icon-about:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.li-about-cha:hover {
    color: var(--secondary-color);
    transform: scale(1.05);
}

.i-icon-about {
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.i-icon-about:hover {
    transform: scale(1.2);
    color: var(--primary-color);
}

.description-about {
    margin-left: 2vw;
}

.description-text {
    font-weight: 700;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease, margin-left 0.3s ease;
}

.description-text:hover {
    color: var(--secondary-color);
    margin-left: 1vw;
}

.rating-star {
    margin-left: 2vw;
}

.star-rating {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.star-rating:hover {
    transform: scale(1.2);
}

.hero2-img {
    width: 30vw;
    transition: 0.3s ease;
}

.hero2-img:hover {
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
    .section-about {
        flex-direction: column;
        padding-top: 10vh;
    }

    .about-text-section,
    .about-img-section {
        max-width: 100%;
        width: 100%;
        margin-bottom: 3rem;
    }

    .about-section-text {
        font-size: 32px;
        letter-spacing: 3px;
    }

    .span-about {
        font-size: 36px;
    }

    .ul-about-cha {
        font-size: 18px;
    }

    .description-text {
        font-size: 24px;
        margin-left: 0;
        text-align: center;
    }

    .rating-star {
        margin-left: 0;
        text-align: center;
    }

    .hero2-img {
        width: 70vw;
    }
}

@media (max-width: 480px) {
    .about-section-text {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .span-about {
        font-size: 30px;
    }

    .ul-about-cha {
        font-size: 16px;
    }

    .description-text {
        font-size: 20px;
    }

    .hero2-img {
        width: 90vw;
    }
}


/* about section end */


/* Statistics Section */

.Statistics-section {
    padding-top: 10vh;
}

.Statistics-heading {
    text-align: center;
    color: var(--text-color);
    font-weight: 800;
    font-size: 30px;
    margin-bottom: 40px;
}

.statistic {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.img-client {
    height: 180px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
}

.img-client:hover {
    transform: scale(1.1);
}

.statistic-text {
    max-width: 600px;
}

.statistic-heading-client {
    position: relative;
    display: inline-block;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 10px;
    transition: color 0.4s ease;
}

.statistic-heading-client::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -5px;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #FFD43B, #e0b200);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.statistic-heading-client:hover {
    color: var(--accent-color);
}

.statistic-heading-client:hover::after {
    width: 80%;
}

.rating-star i {
    color: var(--accent-color);
    margin: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .statistic {
        flex-direction: column;
        text-align: center;
    }

    .statistic-text {
        margin-top: 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .statistic {
        flex-direction: column;
        text-align: center;
    }

    .statistic-text {
        margin-top: 15px;
    }
}

/*  SECTION END */

/* home end */

/* tournament page strat */

/*HERO/LANDING*/
.section-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay);
    z-index: 0;
}

.landing-section {
    position: relative;
    margin-top: 100px;
    width: 100vw;
    padding: 40px 10px 15vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white);
    overflow: hidden;
    z-index: 1;
}

.content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 90vw;
    max-width: 1300px;
    animation: contentRise .9s ease-in-out forwards;
}

.text-container {
    max-width: 45%;
    color: var(--primary);
    user-select: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.highlight-text {
    color: var(--accent-color);
}

.hero-subtext {
    font-size: 1.25rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-group {
    display: flex;
    gap: 5vw;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 650px;
    margin: auto;
}

.image-group-one,
.image-group-two {
    display: flex;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.tournament-image {
    width: 200px;
    border-radius: 8px;
    transform: scale(1.5);
    transition: transform .3s, box-shadow .3s;
    cursor: pointer;
    user-select: none;
}

/* for tab */
@media (max-width: 992px) {
    .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        max-width: 90%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtext {
        font-size: 1.1rem;
    }

    .btn-group {
        justify-content: center;
        gap: 20px;
    }

    .image-container {
        max-width: 80%;
    }

    .tournament-image {
        width: 150px;
        transform: scale(1.2);
    }
}

/* For mobiles */
@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtext {
        font-size: 1rem;
    }

    .btn-group {
        flex-direction: column;
        gap: 15px;
    }

    .image-container {
        gap: 15px;
    }

    .image-group-one {
        flex-direction: column;
        gap: 15px;
    }

    .tournament-image {
        width: 100%;
        max-width: 250px;
        transform: scale(1);
    }
}

/* tournament page css end */

/* gallery page end */

.adjust-images {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.hight-light-img {
    height: 300px;
    transition: transform 0.4s ease-in-out;
}

.hight-light-img:hover {
    transform: rotate(5deg);
}

.gallery-a {
    text-decoration: none;
}

/* Responsive breakpoints */
@media (max-width: 600px) {
    .adjust-images {
        flex-direction: column;
    }

    .imges-box {
        margin-bottom: 10px;
    }
}

/* inner gallery css */



/* inner gallery css end */

/* Main section container */
#img-section {
    padding: 60px 20px;
    background: #f8f9fa;
    /* light background, adjust if dark theme */
}

/* Gallery wrapper */
.section-wrapper {
    margin-bottom: 50px;
}

/* Section titles */
.gallery-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    color: #343a40;
}

/* Gallery grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns */
    gap: 20px;
    margin-bottom: 30px;
}

/* Gallery items */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Images */
.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease-in-out;
    cursor: pointer;
}

/* Hover zoom effect */
.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

/* Responsive breakpoints */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2 columns for tablets */
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobiles */
    }

    .gallery-title {
        font-size: 20px;
    }
}


/* gallery page css */

/* winners page css start */

.section-heading {
    font-size: 50px;
    font: bolder;
    text-align: center;
    margin-top: 10vh;
    color: var(--primary-color);
}

.careers-section {
    padding: 40px 20px;
    background-color: var(--background-color);
}

.career-wrapper {
    max-width: 1000px;
    margin: auto;
    padding: 20px;
}

.warap-heading {
    margin-left: 10vw;
}

.career-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 12px;
    gap: 10px;
}

.career-heading {
    font-size: 32px;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    cursor: pointer;
}

/* Smooth underline animation on hover */
.career-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    height: 2px;
    width: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.career-heading:hover::after {
    width: 100%;
}

.career-whatsapp-btn {
    padding: 10px 18px;
    background-color: #25D366;
    color: white;
    text-decoration: none;
    font-size: 14px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.career-whatsapp-btn:hover {
    background-color: #1ebe5b;
}


/*  Subheading */
.career-subheading {
    font-size: 16px;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 30px;
}


/*  Jobs Table */
.career-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    background-color: var(--background-color);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    animation: fadeUp 0.7s ease-in;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.career-table th,
.career-table td {
    padding: 16px;
    text-align: center;
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    font-weight: bold;
}

.career-table thead th {
    color: var(--primary-color);
    font-weight: 600;
}

.career-table tbody tr:hover {
    background-color: var(--table-row-hover-background);
    transform: scale(1.005);
}


/* Scrollable wrapper for mobile */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* Keep table structure */
.career-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
}

/* Table cell adjustments on smaller screens */
@media (max-width: 768px) {

    .career-table th,
    .career-table td {
        padding: 10px 6px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {

    .career-table th,
    .career-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
}

/* winners page css end */

/* Careers page css start */

/*  Form Inputs */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 6px;
    font-size: 14px;
    color: #333;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 10px;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    border-radius: 4px;
    transition: border 0.3s;
}

.form-input:hover,
.form-textarea:hover,
.form-select:hover {
    border-color: var(--footer-link-hover);
}


/*  Dropzone */
.form-dropzone {
    display: block;
    padding: 25px;
    border: 2px dashed var(--border-color);
    border-radius: 6px;
    text-align: center;
    color: var(--text-color);
    background-color: var(--background-color);
    cursor: pointer;
    transition: background 0.3s, border 0.3s;
    font-size: 15px;
    margin-top: 8px;
    position: relative;
}

.form-dropzone:hover {
    background-color: var(--background-color);
    border-color: var(--footer-link-hover);
    color: var(--text-color);
}

.form-file {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    cursor: pointer;
}


/*  Submit Button */
.form-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: var(--button-text-color);
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-btn:hover {
    background-color: var(--primary-hover-color);
}


/*  Responsive Styling */
@media (max-width: 768px) {
    .career-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .career-heading {
        font-size: 26px;
    }

    .career-whatsapp-btn {
        font-size: 13px;
        padding: 8px 15px;
    }

    .career-table th,
    .career-table td {
        font-size: 13px;
        padding: 12px;
    }

    .form-dropzone {
        font-size: 14px;
    }
}


/* Careers page css end */

/* home page css start */

.contact-container {
    width: 90vw;
    max-width: 1200px;
    height: auto;
    min-height: 70vh;
    margin: 10vh auto;
    display: flex;
    flex-wrap: wrap;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.25);
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--background-color);
    animation: slideIn 1.2s ease forwards;
    opacity: 0;
}

/* Left CTA Section */
.contact-left {
    flex: 1 1 400px;
    min-width: 300px;
    background-color: var(--primary-color);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.contact-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
}

.contact-desc {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.6;
    max-width: 85%;
}

.contact-link {
    background-color: var(--danger-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-link:hover,
.contact-link:focus {
    background-color: var(--secondary-color);
    transform: scale(1.05);
    outline: none;
}

/* Right Form Section */
.contact-right {
    flex: 1 1 400px;
    min-width: 300px;
    background-color: var(--background-color);
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form {
    width: 100%;
}

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: var(--text-color);
    font-size: 15px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 24px;
    border-radius: 6px;
    border: 2px solid var(--primary-color);
    font-size: 15px;
    color: var(--text-color);
    background-color: #fdfdfd;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--danger-color);
}

.form-button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 14px 40px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(231, 86, 69, 0.4);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-family: inherit;
}

.form-button:hover,
.form-button:focus {
    background-color: var(--link-hover);
    transform: scale(1.05);
    outline: none;
}

.contact-us-btn-and-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.social-item .social-link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--background-color);
    color: var(--primary-color);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-item .social-link:hover,
.social-item .social-link:focus {
    background-color: var(--danger-color);
    color: #fff;
    transform: translateY(-4px) scale(1.1);
    outline: none;
}

/* Animation */
@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */

@media (max-width: 1024px) {
    .contact-container {
        height: auto;
    }

    .contact-left,
    .contact-right {
        flex: 1 1 100%;
        min-width: auto;
        padding: 40px 30px;
    }

    .contact-title {
        font-size: 2.5rem;
    }

    .contact-desc {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .contact-link {
        padding: 12px 28px;
    }
}

@media (max-width: 600px) {
    .contact-container {
        flex-direction: column;
        margin: 6vh auto;
    }

    .contact-left,
    .contact-right {
        padding: 30px 24px;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-desc {
        font-size: 1rem;
    }

    .form-button {
        width: 100PX;
        padding: 14px 0;
    }

    .contact-us-btn-and-icon {
        flex-direction: column;
        gap: 20px;
    }

    .social-list {
        margin-top: 10px;
        justify-content: flex-start;
    }
}

/* registeration css */

.h1-register {
    font-size: 30px;
    color: #e75645;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.tournament-img {
    width: 100px;
    height: auto;
}


/* WHATSAPP CONTACT API  */

.whatsapp-button {
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 9999;
    background-color: #25D366;
    padding: 15px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
}

.whatsapp-button i {
    color: var(--navbar-bg);
    font-size: 24px;
}

/* whats app api css end */

/* footer css start */

.footer {
    background-color: var(--footer-bg);
    margin-top: 10vh;
    color: var(--navbar-bg);
    padding: 40px 20px;
    font-family: sans-serif;
    margin-bottom: -10vh;
    text-align: center;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
    margin: 10px;
}

.footer-logo-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.logo-img-nav {
    max-width: 100px;
    margin-bottom: 10px;
    display: block;
}

.footer-p {
    font-size: 18px;
    margin-top: 10px;
    transition: color 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.footer-p:hover {
    color: var(--secondary-color);
}

/* Footer links */

.footer-list {
    list-style: none;
    padding: 0;
    font-size: 13px;
    margin: 0;
}

.footer-item {
    text-decoration: none;
    margin: 5px 0;
    text-transform: uppercase;
}

.footer-link {
    text-decoration: none;
    color: var(--navbar-bg);
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--accent-color);
    text-decoration: none;
    transform: translateX(5px);
}

.footer-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

/* Footer bottom */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: var(--text-color);
    text-align: center;
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid var(--text-color);
}

.socail-ID {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--navbar-bg);
}

.socail-ID a {
    color: var(--navbar-bg);
    font-size: 22px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.socail-ID a:hover {
    color: var(--accent-color);
}

.footer-bottom p {
    margin: 0;
    user-select: none;
    color: var(--navbar-bg);
}

.footer-bottom .social-icon {
    color: var(--text-color);
}

.footer-bottom .social-icon {
    color: var(--navbar-bg);
}



/* Responsive Styles */

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer-column {
        max-width: 100%;
        text-align: center;
        margin: 0;
        padding: 0 10px;
    }

    .footer-logo-column {
        margin-bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        padding-top: 15px;
    }

    .socail-ID {
        justify-content: center;
    }

    .footer-bottom p {
        font-size: 11px;
    }
}

/* footer css end */