*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: "Inter", sans-serif !important;
    background: #F1F1E6 !important;
    scroll-behavior: smooth;
}

:root{
    --primary-color: #155376;
    --tea-green: #C4D5A5;
    --lemon-green: #E0E1B7;
    --asparogus-green : #698E5F;
    --background-color: #F1F1E6;
}
::selection{
    background: #1b6b99;
    color: #ffffff;
}
a{
    color: var(--primary-color) !important;
    text-decoration: none !important;
}
ul li a{
    color: var(--primary-color);
    text-decoration: none;
    font-size: 16px;
}
ul li{
    list-style: none;
}
p{
    font-size: 16px;
}
.h1{
    font-size: 60px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
}
.h2{
    font-size: 40px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
}
.h3{
    font-size: 30px !important;
    font-weight: bold !important;
    color: var(--primary-color) !important;
}
.main_button{
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 15px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 40% !important;
    /* border: 1px solid var(--primary-color);
    background: linear-gradient(to left, #ffffff00  50%, #155376 50%) right;
    background-size: 200%; */
    transition: .2s ease-out;
}
.main_button:hover{
    /* background-position: left;
    color: #ffffff; */
    background: #19648f;
}
hr{
    color: #ffffff !important;
    border-top: 2px solid #ffffff !important;
}
#preloader {
    background: var(--primary-color) url('../images/giff.gif') no-repeat center center;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 100;
}
iframe {
    height: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
  }
@media only screen and (max-width: 1000px) and (min-width: 601px) {
    .h1{
        font-size: 45px !important;
        font-weight: bold !important;
        color: var(--primary-color) !important;
    }
    .h2{
        font-size: 35px !important;
        font-weight: bold !important;
        color: var(--primary-color) !important;
    }
    .h3{
        font-size: 25px !important;
        font-weight: bold !important;
    }
    .main_button{
        width: 70% !important;
    }
}
@media only screen and (max-width: 600px) and (min-width: 100px) {
    .h1{
        font-size: 35px !important;
        font-weight: bold !important;
        color: var(--primary-color) !important;
    }
    .h2{
        font-size: 25px !important;
        font-weight: bold !important;
        color: var(--primary-color) !important;
    }
    .h3{
        font-size: 20px !important;
        /* font-weight: bold !important; */
    }
    .main_button{
        width: 100% !important;
    }
    .h4{
        font-size: 16px !important;
    }
    .h6{
        font-size: 14px !important;
        font-weight: bold !important;
    }
}
/* ============== Header starts =============== */
#header{
    width: 100%;
    height: auto;
    position: sticky;
    display: block;
    top: 0;
    padding: 10px 80px;
    background: var(--background-color);
    box-shadow: 2px 0px 15px #00000025;
    z-index: 99;
}
.nav_items ul li a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background: var(--asparogus-green);
    transition: 300ms;
}
.nav_items ul li a:hover::after{
    width: 100%;
}
.logo{
    max-width: 150px;
    max-height: auto;
    width: 100%;
    height: auto;
}
.header-dropdown-menu {
    padding: 0px !important;
    border: none !important;
    box-shadow: 2px 2px 10px #00000030;
    position: absolute;
    top: 100%;
    right: 0 !important;
    width: 200px;
}
.header-dropdown-menu li a{
    padding: 10px 20px;
}
.header-dropdown-menu li a:hover, .header-dropdown-menu li a:focus, .header-dropdown-menu li a:active{
    background: var(--tea-green) !important;
    border-radius: 5px !important;
}
.dropdown-toggle::after {
    display: none !important;
}
.bootstrap_dropdown .header-dropdown-menu{
    display: none;
}
.bootstrap_dropdown:hover .header-dropdown-menu{
    display: block;
}
.search-container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .search-icon {
    cursor: pointer;
  }

  .search-toggle {
    display: none;
  }

  .search-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    padding: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    margin-top: 10px;
  }

  .search-dropdown input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
  }
  .search-dropdown input:active {
    border: 2px solid var(--primary-color) !important;
  }

  .search-toggle:checked + .search-dropdown {
    display: block;
  }

#mobile_header{
    display: none;
    box-shadow: 2px 0px 15px #00000025;
    position: sticky;
    top: 0;
    z-index: 99 !important;
    background: var(--background-color);
}
.mobile_nav_items li{
    line-height: 50px;
}
.mobile_nav_items li a{
    font-size: 18px;
    font-weight: 600;
}
.mobile_nav_items input:focus{
    outline: none !important;
}
.hamburger_icon{
    max-width: 40px !important;
    max-width: 40px !important;
    width: 40px !important;
    height: auto !important;;
}
.hamburger_icon:focus{
    padding: 0px !important;
}
.offcanvas{
    width: 80% !important
}
.offcanvas-footer{
    padding: 2px 20px;
}
.offcanvas-body{
    margin-left: -20px;
}
@media only screen and (max-width: 1000px) and (min-width: 100px) {
    #header{
        display: none;
        padding: 10px 50px;
    }
    #mobile_header{
        display: block;
        padding: 0px 12px;
    }
}
@media only screen and (max-width: 792px) and (min-width: 576px) {
    .hamburger_icon{
        max-width: 50px !important;
        max-width: 50px !important;
        width: 50px !important;
        height: auto !important;;
    }
}
/*==================== Header end ========================= */


/* =================== Footer Starts =====================*/
#footer{
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: url("../images/footer_bg.webp");
    background-position:bottom;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: -2px 0px 10px #00000030;
}
.footer-items ul li a{
    line-height: 35px;
    font-weight: 600;
    display: inline-block;
}
.footer-items ul li{
    line-height: 35px;
    font-weight: 600;
    color: var(--primary-color);
}
.footer-items ul li a::after{
    content: '';
    width: 0px;
    height: 2px;
    display: block;
    background: var(--asparogus-green);
    transition: 300ms;
}
.footer-items ul li a:hover::after{
    width: 100%;
}

@media only screen and (max-width: 1000px) and (min-width: 601px) {
    #footer{
        padding:30px;
    }
}
@media only screen and (max-width: 600px) and (min-width: 100px) {
    #footer{
        padding:20px;
    }
}
/*==================== Footer Ends ====================*/


/*================ Register Login Starts ================*/

#main-container {
    width: 100%;
    height: auto;
    padding: 80px;
    background: var(--background-color);
}

.toggle-password {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #3b3b3b;
}


.register_and_login_form input, .register_and_login_form select, .register_and_login_form label, .register_and_login_form textarea {
    padding: 20px;
    background: #A5A59D50;
    border-radius: 0px;
    border: 1px solid #ccc;
    position: relative;
}

.input_container {
    margin-bottom: 20px !important;
}

.custom-select-wrapper {
    position: relative;
}

.custom-select-wrapper::after {
    content: '\25BC';
    font-size: 16px;
    color: #929292;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.register_and_login_form select {
    padding-right: 40px;
}

.register_and_login_form input:focus, .register_and_login_form select:focus {
    outline: none;
    border: 2px solid var(--primary-color);
    background: #A5A59D50;
}

.register_and_login_form input::placeholder, .register_and_login_form select::placeholder {
    color: #929292;
}

.accordion-header a:active, .accordion-header a:focus {
    background: #ffffff !important;
}

@media only screen and (max-width: 1000px) and (min-width: 601px) {
    #main-container {
        padding: 50px;
    }
}

@media only screen and (max-width: 600px) and (min-width: 100px) {
    #main-container {
        padding: 50px 20px;
    }
}


/*================== Register Login Ends ====================*/

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
select.form-select:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  box-shadow: inset 0 -1px 0 #ddd;
}
label {
    cursor: pointer; /* Change cursor to pointer for better UX */
}


.file-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.file-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80%;
}


/* ================== Verify OTP Starts ================ */
.verify_otp_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.verification-code {
    max-width: 100%;
    position: relative;
    margin: 10px auto;
    text-align: center;
}

.control-label {
    display: block;
    margin: 40px auto;
    font-weight: 900;
}

.verification-code--inputs input[type=text] {
    border: 2px solid #e1e1e1;
    width: 80px;
    height: 60px;
    padding: 10px;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
    border-radius: 12px;
    font-size: 20px;
}
.verification-code--inputs input:focus{
    outline: none !important;;
    border: 2px solid var(--primary-color) !important;
}

input[type="date"] {
    text-align: start;
    text-align-last: start;
    direction: ltr;
}

/* Apply a specific fix for iOS devices */
@supports (-webkit-touch-callout: none) {
    input[type="date"] {
        text-align: left;
    }
}

@media only screen and (max-width: 1000px) and (min-width: 601px) {
    .verification-code--inputs input[type=text] {
        width: 60px;
        height: 60px;
    }
}
@media only screen and (max-width: 600px) and (min-width: 100px) {
    .verification-code--inputs input[type=text] {
        width: 60px;
        height: 60px;
    }
}
/* ================== Verify OTP Ends ================ */

/* ================== Home page Starts ================ */
.home_banner{
    width: 100%;
    height: auto;
    padding: 50px 100px;
    background: url("../images/home_banner_waves.webp") !important;
    background-position:bottom !important;
    background-repeat: no-repeat !important;
    background-size: 100% !important;
}
.home_banner_singer{
    width: 70% !important;
    height: auto;
}
.button1{
    background: var(--primary-color);
    color: #ffffff !important;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease-out;
    width: 30%;
    border: 2px solid var(--primary-color);
}
.button1:hover{
    background:#1a6591;
    border: 2px solid #1a6591;
}
.button2{
    color: var(--primary-color) !important;
    padding: 15px 40px;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: .2s ease-out;
    width: 30%;
    background: linear-gradient(to left, #ffffff00  50%, #155376 50%) right;
    background-size: 200%;
    transition: .5s ease-out;
}
.button2:hover{
    background-position: left;
    color: #ffffff !important;
}
.cards {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 10px;
}

.card_img {
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: auto;
    transition: 200ms;
    aspect-ratio: 1/1;
}

.card_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(100%, -50%);
    background: #1552768f;
    text-align: center;
    color: #ffffff !important;
    padding: 10px;
    border-radius: 10px; /* Optional, for better visuals */
    width: 80%; /* Optional, adjust as needed */
    transition: 200ms ease-in-out transform;
}

.cards:hover .card_content {
    transform: translate(-50%, -50%);
}
.cards:hover .card_img{
    transform: scale(1.02);
    filter: blur(2px);
}

@media only screen and (max-width: 1740px) and (min-width: 1261px) {
    .button1, .button2{
        width: 40%;
        padding: 15px 30px;
    }
}
@media only screen and (max-width: 1260px) and (min-width: 1000px) {
    .button1, .button2{
        width: 49%;
        padding: 15px 30px;
    }
}
@media only screen and (max-width: 999px) and (min-width: 100px) {
    .button1, .button2{
        width: 49%;
        padding: 15px;
        font-size: 14px;
    }
}
/* ================== Home page ends ================ */

/* ================== About Us Starts ================ */
.about_us{
    padding: 100px 10px 100px 100px !important;
}
.banner_section{
    padding: 150px 10px 100px 100px !important;
}
.mission_vision_container, .featured_artist_container{
    width: 100% !important;
    height: auto !important;
    background: var(--primary-color) !important;
}

@media only screen and (max-width: 1000px) and (min-width: 601px) {
    .about_us, .banner_section{
        padding: 50px !important;
    }
}
@media only screen and (max-width: 600px) and (min-width: 100px) {
    .about_us, .banner_section{
        padding: 50px 20px !important;
    }
}

/* ================== About Us End ================ */


/* ================== Artist page starts ================ */
.artist_name{
    background: #ffffff;
    color: #000000;
    padding: 20px 50px 50px 20px;

}
.artist_image{
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}
.artist_image:hover {
    filter: contrast(110%);
    transition: filter 0.1s ease-in-out;
}
.artist_container:hover .artist_image {
    filter: contrast(110%);
    transition: filter 0.1s ease-in-out;
}

@media only screen and (max-width: 767px) and (min-width: 100px) {
    .particular_artist_content{
        margin-top: 10px !important;
    }
}
@media only screen and (max-width: 3000px) and (min-width: 767px) {
/* Make the sidebar sticky */
.particular_artist_sidebar {
    position: -webkit-sticky;
    position: sticky;
    top: 20px; /* Adjust as necessary */
    height: calc(100vh - 40px); /* Adjust height considering the padding/margin */
    overflow-y: auto; /* Make it scrollable if content exceeds the viewport */
    background-color:var(--background-color); /* Optional: Background color */
}

/* Ensure the right column content is scrollable */
.col-md-8 {
    max-height: 100vh;
    overflow-y: auto;
    padding-left: 15px; /* Optional: Add padding if needed */
}

}
/* ================== Artist page end ================ */


/* ================== My  profile start ================ */
.my_profile_image_container{
    position: relative;
}
.my_profile_image{
    border-radius: 50%;
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
}
.edit_profile_image{
    position: absolute;
    bottom: 0%;
    right: 10%;
}
.edit_profile{
    position: relative;
    width: 20%;
}
.profile_detail{
    color: #A5A59D;
}
.profile_details h5 {
    margin-bottom: 10px;
}
@media only screen and (max-width: 1200px) and (min-width: 900px) {
    .edit_profile_image{
        position: absolute;
        bottom: 20%;
        right: 10%;
    }
    .edit_profile{
        position: relative;
        width: 50%;
    }
}
@media only screen and (max-width: 899px) and (min-width: 768px) {
    .edit_profile_image{
        position: absolute;
        bottom: 30%;
        right: 10%;
    }
    .edit_profile_image{
        width: 40%;
    }
    .edit_profile{
        position: relative;
        width: 60%;
    }
}
@media only screen and (max-width: 767px) and (min-width: 100px) {
    .edit_profile{
        position: relative;
        width: 30%;
    }
}
/* ================== My profile end ================ */

/* ================== Submission end ================ */
.link_status_under_review{
    background: #15537630;
    font-weight: bold;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
}
.link_status_approved{
    background: #15762230;
    font-weight: bold;
    color: #157622;
    padding: 10px 20px;
    border-radius: 8px;
}
.link_status_rejected{
    background: #76151530;
    font-weight: bold;
    color: #761515;
    padding: 10px 20px;
    border-radius: 8px;
}
/* ================== Submission end ================ */


#laravel-notify .notify {
    z-index: 1000 !important;
    padding: 0 !important;
}

input[type="date"].mobile{
    &:before{
      content: 'DD-MM-YYYY';
    }
}

.disclamier, .terms_conditions, .privacy_policy{
    color: #155376 ;
}
