@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin-bottom: 0px !important;
}

body {
    font-family: 'Inter', sans-serif;
    background: #000000 !important;
}

a {
    color: inherit !important;
    outline: none !important;
}

.nav-link {
    color: #D1D5DB !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.navbar-nav .nav-link.active {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #FFD700 !important;
    font-weight: bold;
}

.navbar {
    border-bottom: 1px solid #1E2939 !important;
    height: 100px;
}

.nav-parrent {
    border-bottom: 1px solid #1E2939 !important;
    background-color: black;

}

.navbar-nav {
    gap: 20px;
}

.sec1-bg {
    background-image: url(../img/sec1-bg.svg);
    width: 100%;
    padding-bottom: 50px;
    background-repeat: no-repeat;
    object-fit: cover;
    background-size: cover;
}

.trusted-box {
    border: 2px solid #FFD700;
    width: fit-content;
    height: 40px;
    border-radius: 50px;
    background-color: #382904;
    padding: 0px 20px;


}

.trusted-box p {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #C48D0E;
    font-weight: 500;
}

.sec1-head {
    font-family: 'Inter', sans-serif;
    font-size: 45px;
    color: white;
    font-weight: 900;
}

.sec1-head span {

    color: #F0AD12;
}

.sec1-para {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #D1D5DB;
    font-weight: 400;
}

.shadow-button {
    background-color: #fbbc04;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;


    box-shadow:
        0px 0px 80px 15px rgba(251, 188, 4, 0.25),

        0px 10px 40px -10px rgba(251, 188, 4, 0.7);


    transition: transform 0.2s ease, box-shadow 0.2s ease;
}


.shadow-button:hover {
    transform: scale(1.03);
    box-shadow:
        0px 0px 100px 20px rgba(251, 188, 4, 0.35),
        0px 15px 50px -10px rgba(251, 188, 4, 0.8);
}

.shadow-button .icon {
    font-size: 22px;
    font-weight: normal;
    margin-top: -2px;
    /* Triangle icon ko perfectly center karne ke liye */
}
.newclass{
    padding: 100px 0px;
}
.newclass h1{
    font-size: 96px;
}
.newclass .sec1-para {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    color: #D1D5DB;
    font-weight: 400;
}
.outline-button {
    font-size: 18px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
    color: #F0AD12;
    padding: 16px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    background-color: black;
    border: 1px solid #F0AD12;
    gap: 10px;
}

.outline-button:hover {
    transform: scale(1.03);
    box-shadow:
        0px 0px 100px 20px rgba(251, 188, 4, 0.35),
        0px 15px 50px -10px rgba(251, 188, 4, 0.8);
}

.sec1-head2 {
    color: #F0AD12;
    font-size: 36px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.sec1-para2 {
    color: #D1D5DB;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

/* Card Container */
.audio-card {

    /* width: 280px; */
    background-image: url(../img/about-card-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #2a2108;
    border-radius: 20px;
    padding: 30px 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    /* height: 284px; */

}

/* Hover Effect with Theme Color Shadow */
.audio-card:hover {
    box-shadow: 0 10px 30px -10px rgba(245, 186, 26, 0.25);
    border-color: rgba(245, 186, 26, 0.3);
    transform: translateY(-4px);
}

.sec2-head {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    color: white;
    font-weight: bold;
}

.sec2-para1 {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #D1D5DB;
    font-weight: 400;
    /* width: 73%; */
}

.sec2-para2 {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #D1D5DB;
    font-weight: 400;
    width: 80%;
}

.sec2-head2 {
    font-family: 'Inter', sans-serif;
    font-size: 72px;
    color: white;
    font-weight: bold;
}

.sec2-head2 span {
    color: #F0AD12;
}


/* Base Card Styling */
.music-card {
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

/* Icon Box Styling */
.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(60, 40, 20, 0.6);
    border: 1px solid rgba(240, 177, 43, 0.2);
    margin-bottom: 50px;
}

/* Text Styling */
.sec3-head {
    color: #ffffff;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Inter', sans-serif;



}

.sec3-para {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #D1D5DC;
    font-weight: 400;
}

.card-stats {
    color: #f0b12b;
    /* Golden Yellow */
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;

}

/* --- THEME SPECIFIC COLORS & HOVER SHADOWS --- */

/* Purple Theme */
.theme-purple {
    background: radial-gradient(circle at 10% 10%, #361730 0%, #110a13 80%);
}

.theme-purple:hover {
    box-shadow: 0 15px 35px -10px rgba(116, 42, 128, 0.45);
    transform: translateY(-4px);
    border-color: rgba(116, 42, 128, 0.3);
}

/* Teal Theme */
.theme-teal {
    background: radial-gradient(circle at 10% 10%, #132b35 0%, #0a1114 80%);
}

.theme-teal:hover {
    box-shadow: 0 15px 35px -10px rgba(32, 108, 126, 0.45);
    transform: translateY(-4px);
    border-color: rgba(32, 108, 126, 0.3);
}

/* Orange/Brown Theme */
.theme-orange {
    background: radial-gradient(circle at 10% 10%, #3d240e 0%, #110a05 80%);
}

.theme-orange:hover {
    box-shadow: 0 15px 35px -10px rgba(168, 93, 26, 0.45);
    transform: translateY(-4px);
    border-color: rgba(168, 93, 26, 0.3);
}

.sec4-bg {
    /* background-image: url(../img/sec4-bg.svg); */
    width: 100%;
    padding-bottom: 50px;
    margin-top: 50px;
    background: linear-gradient(to bottom,
            #000000 0%,
            #101828 50%,
            #000000 100%);
}

.count-box {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    transform: scale(1.03);
    box-shadow:
        0px 0px 100px 20px rgba(251, 188, 4, 0.35),
        0px 15px 50px -10px rgba(251, 188, 4, 0.8);
    background-color: #F0AD12;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.count-box h1 {
    font-size: 25px;
    color: black;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.sec4-icon {
    width: 40px;
}

.sec4-para {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #99A1AF;
    font-weight: 400;
    text-align: center;
    width: 60%;
    margin: 0 auto;
}


.sec5-bg {
    background-image: url(../img/sec5-bg.svg);
    width: 100%;
    padding-bottom: 50px;
    margin-top: 50px;
    background-size: contain;
}

.rating-para {
    color: #D1D5DC;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    margin-top: 10px;
    font-weight: 400;
}

.sec4-card-para {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #F0AD12;
    font-weight: 400;
}

.sec5-card {
    width: 100%;
    padding: 15px;
    background-image: url(../img/card-img.svg);
    border-radius: 10px;
    border: 1px solid #372A0C;

}

.sec6-bg {
    background-image: url(../img/sec6-bg.svg);
    background-size: cover;
    width: 100%;
    background-repeat: no-repeat;
    padding-bottom: 50px;
    margin-top: 40px;
}

.sec6-card {
    width: 65%;
    background-image: url(../img/card-img2.svg);
    padding: 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;

    box-shadow: 0px 25px 45px -15px rgba(251, 188, 4, 0.6), 0px 4px 15px rgba(251, 188, 4, 0.1);

}

.card-parrent {
    display: flex;
    align-items: center;
    align-items: center;
    justify-content: center;

    flex-direction: column;

}

.sec6-card-para {
    font-size: 24px;
    color: #D1D5DC;
    text-align: center;
    font-family: 'Inter', sans-serif;

}

.sec6-card-para span {
    color: #F0AD12;
}

.footer-para1 {
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    color: #99A1AF;
    font-weight: 400;
    width: 70%;
}

.footer-head {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: bold;
}

.footer {
    margin-top: 60px;
    border-top: 1px solid #1E2939;
    padding-top: 50px;
    padding-bottom: 30px;
}

/* about us /// */

.about-sec1 {
    /* background-image: url(../img/about-sec1.svg); */
    width: 100%;
    padding-bottom: 50px;
}

.para-width {
    width: 56%;
    /* margin: 0 auto; */
}

.about-card1 {
    width: 100%;
    background-image: url(../img/about-card-bg.svg);
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-card-head {
    font-size: 48px;
    color: #F0AD12;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.para-width2 {
    width: 90%;
}

.about-sec2-card {
    background-image: url(../img/about-card2-bg.svg);
    width: 100%;
    padding: 25px;
    border-radius: 25px;
    border: 1px solid #F0AD12;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-head2 {
    font-size: 30px;
    color: white;
    font-weight: bold;
    font-family: 'Inter', sans-serif;
}

.about-head3 {
    font-size: 60px;
    font-family: 'Inter', sans-serif;
    color: white;
    font-weight: bold;
    text-align: center;

}

.about-head3 span {

    color: #F0AD12;
}

.contact-form {
    width: 60%;
    display: flex;
    margin: 0 auto;
    background-image: url(../img/about-card-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 45px;
    border-radius: 25px;
    border: 1px solid #F0AD12;
    flex-direction: column;
    margin-top: 70px;
}

.contact-input {
    width: 100%;
    height: 50px;
    border-radius: 15px;
    border: 1px solid #3D2C04;
    background-color: #100C01;
    outline: none;
    padding: 0px 15px;
    color: #6A7282;
}

.contact-input::placeholder {
    color: #6A7282;

}

.contact-textarea {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    border: 1px solid #3D2C04;
    background-color: #100C01;
    outline: none;
    padding: 15px;
    color: #6A7282;
}

.content-container {
    width: 70%;
    margin: 0 auto;
}

.card-parrent {
    width: 70%;
    margin: 0 auto;
}

.navbar-toggler {
    --bs-navbar-toggler-icon-bg: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23F0AD12' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");

}
.offcanvas-body{
    background-color: black !important;
}
.offcanvas-header{
    background-color: black !important;

}
.offcanvas-title{
    color: #D1D5DB !important;
}

.btn-close {
    filter: invert(1);
}







.newsec{
    padding: 100px 0px;
}

.newsec img{
    border-radius: 20px;
}

.newsec h1{
    color: #ffffff;
    font-weight: 600;
}

.newsec p{
    color: #99A1AF;
}

.newwidthClass{
    width: 90%;
}


.mike-icon{
    width: 58px;
    height: 58px;
}



.audio-card img{
    width: 99px;
    height: 99px;
}


.newheightclass{
    height: 200px;
}



.sec7-bg{
    background-image: url(https://next-star.buildanwebsite.com/wp-content/uploads/2026/04/Section-2-scaled.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0px;
}


.sec7-bg h4{
    font-family: "Inter", Sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #fdd300;
}

.sec7-bg h5{
    font-family: "Inter", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    color: #71717A;
    margin-top: 10px;
}


.aboutbtn-1{
    background-color: transparent;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-image: linear-gradient(146deg, #F0AD12 40%, #D59A11 70%);
    box-shadow: -1px 0px 10px 0px rgba(0, 0, 0, 0.5);
    border-radius: 28px 28px 28px 28px;
    padding: 15px 30px 15px 30px;
    border : none;
}

.aboutbtn-2{
    background-color: transparent;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 500;
    fill: #FFFFFF;
    color: #FFFFFF;
    background-image: linear-gradient(146deg, #28241600 40%, #28241600 70%);
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #444444;
    border-radius: 30px 30px 30px 30px;
    padding: 15px 30px 15px 30px;
}


.lastsec{
    border: 1px solid #3a2a04;
    border-radius: 16px;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    margin: 50px auto;
}

.lastsec h4{
    color: #99A1AF;
    font-family: "Inter", Sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.lastsec h4 span{
    color: #FFD700;
}


.privacy-card{
    background-image: url(../img/about-card-bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #2a2108;
    border-radius: 20px;
    padding: 30px 24px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.privacy-card ul li{
    list-style: none;
    font-family: "Inter", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #D1D5DB;
}
.privacy-card ul li strong{
    color: #FFD700;
}

.privacy-card .sec2-para1{
    font-size: 18px;
    color: #D1D5DB;
}

.bottomnav{
    border-top: 1px solid #1e2939;
    padding-top: 30px;
    color: #D1D5DB;
    font-size: 14px;
}