/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

/* CSS Variables */
:root {
    /*--primary-font: 'Open Sans', sans-serif;*/
    /*--heading-font: 'Nunito', sans-serif;*/
    /*--primary-color: #f57c00;*/
    /*--secondary-color: #d96c00;*/
    /*--secondary-color: #FFD700;*/
    /*--text-color: #000;*/
    /*--white: #fff;*/
    /*--navbar-bg: #ffffff;*/
    /*--hero-bg-gradient: linear-gradient(90deg, #41349c, #320c58);*/
    /*--section-bg-light-grey: #f6f5fa;*/
    /*--footer-bg: #232227;*/
    /*--footer-bar-bg: #000000;*/
    /*--border-radius: 30px;*/
    /*--btn-bg-blue: #0BAD4B;*/
    /*--btn-bg-blue-hover: #078137;*/
    
    
    /*--btn-padding: 10px 20px;*/
    /*--font-size-btn: 0.8rem;*/
    /*--font-size-lg: 18px;*/
    /*--font-size-md: 16px;*/
    /*--font-size-sm: 15px;*/
    /*--font-size-nav: 14px;*/
    /*--h1-size: 55px;*/
    /*--h2-size: 42px;*/
    /*--h3-size: 26px;*/
    /*--h4-size: 24px;*/
    /*--h5-size: 22px;*/
    


--primary-font: 'Open Sans', sans-serif;
--heading-font: 'Nunito', sans-serif;
--primary-color: #f57c00;
--primary-color-hover: #d26e0a;
--secondary-color: #FFD700;
--secondary-color-hover: #E7C300;
--warning-color: #FFD700;
--warning-color-hover: #E7C300;
    --danger-color: #ff0000;
    --danger-color-hover: #ad0202;
    --accent-color: #FF4400;
--text-light: #ffffff;
--text-dark: #3a3a3a;
--lightgray: #d3d3d3;
    --hero-bg-gradient: linear-gradient(90deg, #41349c, #320c58);
    --navbar-bg: #ffffff;
    --section-bg-light-grey: #f6f5fa;
--btn-primary-bg: var(--primary-color);
--btn-primary-bg-hover: var(--primary-color-hover);
--btn-secondary-bg: var(--secondary-color);
--btn-secondary-bg-hover: var(--secondary-color-hover);
--btn-font-size: 14px;
--btn-font-weight: bold;
--btn-padding: 6px 20px;
--btn-padding-lg: 15px 20px;
--btn-border-radius: 30px;
    --footer-bg: #232227;
    --footer-bar-bg: #000000;
    --border-radius: 30px;
    --logo-size: 120px;
    --font-size-lg: 18px;
    --font-size-md: 16px;
    --font-size-sm: 15px;
    --font-size-nav: 14px;
    --h1-size: 55px;
    --h2-size: 42px;
    --h3-size: 26px;
    --h4-size: 24px;
    --h5-size: 22px;
    --font-thin: 300;
    --font-normal: 400;
    --font-bold: 600;
    --font-bolder: 700;
    --font-extra-bold: 900;

    
    
}

/*CSS reset */

* {
    /*list-style: none;*/
    margin:0;
    padding: 0;
    text-decoration: none;
    font-size: var(--font-size-md);
    font-weight: 400;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: var(--primary-font);
    font-size: var(--font-size-lg);
    color: var(--text-color);
    margin: 0;
    padding: 0;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: bold;
    color: var(--white);
}

h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); }
h3 { font-size: var(--h3-size); }
h4 { font-size: var(--h4-size); }
h5 { font-size: var(--h5-size); }

/* Responsive Typography */
@media (max-width: 992px) { /* Tablet View */
    :root {
        --h1-size: 45px;
        --h2-size: 36px;
        --h3-size: 30px;
        --h4-size: 26px;
        --h5-size: 22px;
        --font-size-lg: var(--font-size-md);
    }
}

@media (max-width: 768px) { /* Mobile View */
    :root {
        --h1-size: 36px;
        --h2-size: 30px;
        --h3-size: 26px;
        --h4-size: 22px;
        --h5-size: 20px;
        --font-size-lg: var(--font-size-sm);
    }
}

/* Header */
.top-bar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--footer-bar-bg);
    color: var(--white);
    font-weight: bolder;
    font-family: var(--heading-font);
}

/* Navbar */
.navbar {
    background: var(--navbar-bg);
    padding: 0px 20px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand img {
    height: 50px;
    width: auto;
}
.navbar-nav {
    display: flex;
    align-items: center;
}
.nav-link {
    font-family: var(--heading-font);
    font-size: var(--font-size-nav);
    font-weight: bold;
    color: var(--text-color);
    margin: 0 10px;
}
.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: var(--hero-bg-gradient);
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
     height: 87vh; 
}
.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}
.hero-section h1 {
    font-size: var(--h1-size);
    font-weight: bold;
    color: var(--white);
}
.cta-buttons {
    display: flex;
    gap: 20px;
}
.hero-section img {
    max-width: 120%;
    height: auto;
}

/* Buttons */


.btn-casting-login {display: none;}

.btn-lg {
    max-width: 400px;
    width: 60%;
    padding: var(--btn-padding);
}

.btn-guest {
    font-weight: var(--font-bolder);
    border-radius: var(--border-radius);
    padding: var(--btn-padding);
    border: none;
    font-size: var(--font-size-nav);
    transition: 0.3s ease;
}

.btn-join {
    background-color: var(--secondary-color);
    color: var(--bs-black);
    font-weight: var(--font-bolder);
    border-radius: var(--border-radius);
    padding: var(--btn-padding);
    border: none;
    font-size: var(--font-size-nav);
    transition: 0.3s ease;
}

.btn-join-lg {
    background-color: var(--secondary-color);
    color: var(--bs-black);
    font-weight: var(--font-bolder);
    border-radius: var(--border-radius);
    padding: var(--btn-padding-lg);
    border: none;
    font-size: var(--font-size-lg);
    transition: 0.3s ease;
}


.btn-join:hover,
.btn-join-lg:hover {
    background-color: var(--secondary-color-hover);
    color: var(--bs-black);
}

.btn-login {
    background: var(--btn-primary-bg);
    color: var(--text-light);
    font-weight: bold;
    border: none;
    border-radius: var(--border-radius);
    padding: var(--btn-padding);
    font-size: var(--font-size-nav);
    transition: 0.3s ease;
}

.btn-login-lg {
    background: var(--btn-primary-bg);
    color: var(--text-light);
    font-weight: bold;
    border: none;
    border-radius: var(--border-radius);
    padding: var(--btn-padding-lg);
    font-size: var(--font-size-lg);
    transition: 0.3s ease;
}

.btn-login:hover,
.btn-login-lg:hover {
    background-color: var(--primary-color-hover);
}

/* Section 2: Who Cast with Us */
.section-cast {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}
.section-cast h2 {
    color: var(--text-color);
    margin-bottom: 40px;
}
.cast-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
    align-items: top;
}
.cast-item h3 {
    font-size: var(--h3-size);
    margin-bottom: 10px;
    color: var(--text-color);
}
.cast-item p {
    font-size: var(--font-size-lg);
    color: var(--text-color);
}
.find-talent-link {
    display: flex;
    justify-content: center;
    align-items: center;
}
.find-talent-link img {
    max-width: 100%;
    height: auto;
}

.overlap-img {
    padding: 0;
    margin: -120px auto 20px auto;
}

.overlap-img img {
    max-width: 70%;
    width: 100%;
}

.find-top-talent {
    transition: transform 0.3s ease-in-out;
}

.find-top-talent:hover {
    transform: rotate(2deg);
}



/* Section 3: How This Works */
.section-how-it-works {
    padding: 80px 0;
    background: var(--section-bg-light-grey);
    text-align: center;
}
.section-how-it-works h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}
.section-how-it-works p {
    font-size: var(--font-size-md);
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-color);
}
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
    align-items: start;
}
.how-it-works-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.how-it-works-item img,
.who-this-for img {
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.how-it-works-item h3 {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}
.how-it-works-item p {
    font-size: var(--font-size-md);
    color: var(--text-color);
    max-width: 250px;
}

/* Section: Mission and Vision styling */

.section-mission-vision {
    padding: 80px 0;
    background: var(--section-bg-light-grey);
    text-align: center;
}

.section-mission-vision h2 {
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-mission-vision p {
    font-size: var(--font-size-md);
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--text-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr; /* Full width boxes by default */
    gap: 40px 0; /* Only vertical spacing needed now */
    max-width: 700px;
    margin: auto;
    text-align: center;
    align-items: start;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: repeat(2, 1fr); /* 2-column layout on tablets and up */
        gap: 40px 60px;
        max-width: 1200px;
    }
}

.mission-vision-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.mission-vision-grid > .mission-vision-item {
    width: 100%;
}

.mission-vision-item .card {
    width: 100%;
}


.mission-vision-item img {
    background: var(--white);
    border-radius: 50%;
    padding: 5px;
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.mission-vision-item h3 {
    font-size: var(--font-size-lg);
    font-weight: bold;
    color: var(--text-color);
    margin-bottom: 10px;
}

.mission-vision-item p {
    font-size: var(--font-size-md);
    color: var(--text-color);
    max-width: 90%;
    margin: 10px auto; /* Ensures p is centered inside the item */
}


/* Animated Checkmark styling */
.ani-check-mark img {
    width: 50px;
    height: 50px;
}

/* Join Now Page Styles */
.join-now {
    background: #f6f5fa;
    padding: 60px 0;
    text-align: center;
}

.join-now h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 42px;
    font-weight: bold;
    color: #232227;
    margin-bottom: 15px;
}

.join-now p {
    font-family: var(--primary-font);
    font-size: var(--font-size-md);
    color: var(--text-color);
    max-width: 70%;
    margin: 0 auto;
    line-height: 1.6;
}

.join-form {
    max-width: 900px;
    margin: 20px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: #232227;
    margin-bottom: 8px;
}

.form-label {
    text-align: left;
    width: 100%;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    transition: border 0.3s ease;
}

.form-group input:focus {
    border-color: #f57c00;
    outline: none;
}

.btn-container {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.btn-container .btn {
    flex: 1;
    padding: 10px;
    font-size: 18px;
}

.btn-primary {
    display: block;
    width: 100%;
    background: #f57c00;
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: #d96c00;
    transform: translateY(-3px);
}

.btn-primary:active {
    transform: translateY(0px);
}

/* Footer Section */
.footer {
    background: #232227;
    padding: 50px 0 0;
    color: #ffffff;
    text-align: center;
}


.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #232227;
    border-radius: 50%;
    font-size: 18px;
    transition: 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: #f57c00;
    color: #ffffff;
}

/* Right Section: Disclaimer */
.footer-right {
    text-align: left;
    font-size: 16px;
}

.footer-right strong {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.footer-right p {
    margin: 0;
    line-height: 1.5;
}

/* Footer Bottom Bar */

.footer-bottom,
.footer-bottom .powered-by {
    font-size: 80%;
    color:#ffffff;
}

.footer-bottom a,
.powered-by a {
    color:rgb(138, 138, 138);
    transition: color 0.3s ease-in-out;
    font-size: inherit;
}
.footer-bottom a:hover,
.powered-by a:hover {
    color: #ffffff;
}


.bg-gradient-newsletter {
    background: linear-gradient(135deg, #1f1c2c, #928dab);
}
.bg-glass {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}
.text-custom-muted {
    color:rgb(138, 138, 138);
}
.small-text {
    font-size: 0.8rem;
}
.footer-link {
    color:rgb(138, 138, 138);
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-link:hover {
    color: #ffffff;
}

.badge {
    background-color: var(--lightgray);
    border-radius: var(--border-radius);
    color: var(--text-dark);
}



#searchig_text{
    width: 500px;
    float: left;
    margin-right: 10px;
    border-radius: 50px;
}

.form-control {
    border-radius: 30px;
}

.top-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mobile-top-bar {
background-color: #fff;
border-bottom: 1px solid #eee;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
padding: 15px 25px;
}

.mobile-logo img {
height: 50px;
}

.search-icon {
background-color: var(--primary-color);
color: var(--bs-body-bg);
padding: 8px;
border-radius: 0.5rem;
}

.search-icon i {
font-size: 22px;
}


/* ✅ Scrollable Buttons */
.mobile-button-scroll {
background-color: #fff;
padding: 10px 0;
border-bottom: 1px solid #eee;
}

.button-scroll-wrapper {
display: flex;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
padding: 0 15px;
gap: 12px;
}

.button-scroll-wrapper::-webkit-scrollbar {
display: none;
}

.scroll-btn {
font-weight: var(--font-bolder);
flex-shrink: 0;
transition: background-color 0.3s;
}

.scroll-btn:hover {
background-color: var(--secondary-color-hover);
}


/* ✅ Stylish Toggler */
.stylish-toggler {
background-color: #f8f9fa;
border-radius: 8px;
padding: 10px 15px;
font-weight: 600;
color: #333;
transition: background-color 0.3s ease;
}

.stylish-toggler:hover {
background-color: #e9ecef;
}

/* ✅ Dropdown Box Styling */
.dropdown-box {
background-color: #fff;
border: 1px solid #ddd;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 10px;
width: 100%;
}

/* ✅ Full-width Nav Items without individual borders */
.dropdown-box .dropdown-item {
background-color: #fff;
border: none;
padding: 12px 15px;
border-radius: 4px;
color: #333;
font-size: 16px;
font-weight: 700;
transition: background-color 0.3s;
}

.dropdown-box .dropdown-item:hover {
background-color: var(--primary-color);
color: #fff;
}

/* Optional: Style the search collapse box */
#mobileSearchCollapse {
background-color: #f8f9fa;
border-radius: 0px;
box-shadow: 0 2px 8px rgba(0,0,0,0.1);
margin-bottom: 5px;
}

/* Mobile Bottom Scrollable Navigation */
.mobile-scroll-nav {
background: #fff;
border-radius: 20px;
padding: 10px;
box-shadow: 0 0 15px rgba(0,0,0,0.1);
position: fixed;
bottom: 20px;
left: 10px;
right: 10px;
z-index: 999;
border: 1px solid var(--bs-dark-border-subtle);
}

.scroll-wrapper {
display: flex;
overflow-x: auto;
-webkit-overflow-scrolling: touch;
scrollbar-width: none;
}
.scroll-wrapper::-webkit-scrollbar {
display: none;
}

.scroll-item {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
color: #333;
text-decoration: none;
padding: 10px;
min-width: 70px;
}

.scroll-item i {
font-size: 20px;
margin-bottom: 5px;
}

.scroll-item.active, .scroll-item:hover {
color: var(--primary-color);
font-weight: bold;
}

.scroll-item span {
font-size: 12px;
}

/* Desktop Nav stays original */
.desktop-nav {
display: flex;
}

@media (max-width: 991.98px) {
.desktop-nav {
    display: none !important;
}
}




/*RESPONSIVE */ 


/* Responsive Navbar */
@media (max-width: 992px) {
    .navbar-nav {
        flex-direction: column;
        text-align: center;
    }
    .nav-link {
        margin: 10px 0;
    }
}

/* Responsive Top Bar */
@media (max-width: 768px) {
    
    .btn-join {
        width: 80%;
        padding: 10px;
        margin: 5px 0 !important;
    }
    .btn-group-cta {display: none;}
    .btn-casting-login {display: block;}
}

/* Responsive Hero Section */
@media (max-width: 992px) {
        .top-bar {
        position: relative;
        top: 0;
    }
    .hero-section {
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 90vh;
    }
    /*.hero-section .container {*/
    /*    flex-direction: column;*/
    /*    text-align: center;*/
    /*}*/
    .hero-section h1 {
        font-size: var(--h2-size);
    }
    .cta-buttons {
        justify-content: center;
        align-items: center;
    }
    .hero-section img {
        display: none;
    }
    .overlap-img {
        padding: 0;
        margin: -130px auto 20px auto;
    }
    .overlap-img img {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    
    .top-bar {
        position: relative;
        top: 0;
    }

    .hero-section {
        padding: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 45vh;
    }
    .hero-section h1 {
        font-size: var(--h3-size);
    }
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .btn-lg {
        max-width: 300px;
    }
    
    .overlap-img {
        padding: 0;
        margin: -130px auto 20px auto;
    }
    .overlap-img img {
        max-width: 100%;
    }
}

/* Responsive Who Cast With Us */
@media (max-width: 992px) {
    .cast-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cast-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive How It Works */
@media (max-width: 992px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-left,
    .footer-right {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-right p {
        font-size: var(--font-size-sm);
    }
}







