@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap');

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

:root {
    /* margins */
    --mb: 12px;
    --ms: 5px;
    --mn: 8px;

    /* padding */
    --pb: 15px;
    --pn: 10px;
    --ps: 5px;

    /* color */
    --primary-color: #292927;
    --secondary-color: rgb(29, 21, 14);
    --tertiary-color: #3B3333;
    --quaternary-color: #D4C8B4;

    /* fonts */
    --primary-font: "EB Garamond", serif;
    --secondary-font: "Playfair Display", serif;

    /* border radius */
    --border-n: 7px;
    --border-b: 12px;
    --border-s: 4px;
    /* fonts */


}

body {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    font-family: var(--primary-font);
}

#menu-icon,
#close-icon {
    display: none;
}

a {
    text-decoration: none;
}

/* Basic Styling */

/* Header navbar start  */
header {
    font-family: var(--secondary-font);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: var(--quaternary-color);
    color: var(--secondary-color);
    margin: 20px;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    z-index: 1000;
}

#header-logo h1 {
    font-size: 3rem;
    letter-spacing: 5px;
}

nav ul {
    display: flex;
    gap: 25px;
}

nav ul li {
    cursor: pointer;
    font-size: 18px;
}

.link-116 a {
    text-decoration: none;
    color: var(--secondary-color);
    text-transform: uppercase;
}

#menu.hidden {
    display: none;
}

/* Show the menu when active */
#menu.active {
    display: flex;
}

#close-icon {
    float: right;
    margin: 30px auto;
}

.link-116 {
    position: relative;
    overflow: hidden;
}

.link-116::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--secondary-color);
    width: 0;
    transition: width 0.3s ease;
}

.link-116:hover::after {
    width: 100%;
    color: #ff6d00;
}

.link-116 a:hover {
    color: #ff6d00;

}

.hidee {
    display: none;
}

/* header navbar end */


/* Home section start */

#slider img {

    border-radius: var(--border-b);
    width: calc(45vw);
}

#hometext {
    text-align: center;
   

}

#hometext h2 {
    font-size: 2.2rem;
    font-weight: 400;
}

#home {
    padding: 10vh 5vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

/* home section end */


/* contact section start*/



#contact {
    padding: 10vh 5vw;
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    display: flex;
    justify-content: space-around;
    align-items: center;

}


#contact-text h4 {
    font-size: 2rem;
    text-align: center;
    text-decoration: underline;
    margin: 5px;
}

#contact-text p {
    margin: 14px 0px;
}

.con-text {
    width: 50%;
    text-align: center;
    margin: 5px auto;

}

#socials {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    gap: 20px;
}

.icons {
    margin-right: 10px;
    font-size: 1.4rem;
    /* Adds space between the icon and text */
}

/* Ensure the underline appears only on the text of the email link */
.email-wrapper {
    display: inline;
}

.email-link,
.phone-link,
.add-link {
    color: var(--primary-color);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
    position: relative;
    top: -2px;
}

.phone-link:hover {
    text-decoration: underline;
    position: relative;
    text-decoration-skip-ink: auto;
    top: -2px;
}

.add-link span {
    text-decoration: none;
}


#input-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
}

#enquiry h3 {
    font-size: 2rem;
    text-decoration: underline;
    margin: 5px;
    text-align: center;
}

#enquiry input,
textarea,
button {
    padding: 5px;
    margin: 5px;
    width: 350px;
    border-radius: var(--border-s);
    border: none;
}

#enquiry button {
    color: var(--quaternary-color);
    cursor: pointer;
    margin-top: 20px;
}

.btn-subscribe p {
    display: inline;
    text-transform: uppercase
}

.btn-subscribe div {
    margin: 0 auto;
}

#followus {
    display: flex;
    justify-content: space-around;
    gap: 10px;
}

#social-header {
    font-size: 1.6rem;
    text-align: center;
}

/* contact section end */


/* About us  start*/
#aboutus {
    padding: 10vh 5vw;
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
    background-color: var(--quaternary-color);
    color: var(--tertiary-color);

}

#aboutus h2 {
    text-align: center;

}

.about-text {
    text-align: left;
    margin: 10px auto;
    display: flex;
    justify-content: center;
    font-family: var(--primary-font);
}




#subscription {

    margin: 5px;
    text-align: center;

}

#subscriptionForm {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
}

#subscription input {

    border-radius: 0;
    border: none;
    padding: 5px;
    border: none;
    height: 40px;


}

#subscription input:hover {
    border: 1px solid;
}



#subs-input {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;

    margin: 10px auto;
}

#subscription input::placeholder {
    font-family: var(--primary-font);
}

/* about us end */

/* audio portfolio start*/

#audio {
    padding: 10vh 5vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.audio-aboutus {
    margin: 10px auto;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    gap: 20px;
}


#portfolio {
    padding: 10vh 5vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

#portfolio h1 {
    font-size: 3rem;
    text-align: center;
    margin: 20px 0;
}

#music-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
}

.music {
    width: 90%;
    max-width: 900px;
    border-radius: 7px;
    background-color: #fff;
    color: #555;
    padding: 5%;
    margin: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.track {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.track img {
    width: 70px;
    cursor: pointer;
    margin-right: 20px;
}

.track div {
    flex: 1;
}

/* audio portfolio end */

/* Assets */

#assets {
    padding: 10vh 5vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;

}

.equip-div {
    display: flex;
    justify-content: center;
    align-items: center;

    height: 90vh;
}

.equip-div h1 {

    text-align: center;
}

.equip-div p {
    text-align: center;
    font-size: 1.8rem;
}

.equipeach {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20vw;
    margin: 10vh 0;
    scroll-margin-top: 20px;
}

.equipeach-even {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20vw;
    margin: 10vh 0;
    scroll-margin-top: 20px;
}

#heading-mobile {

    display: none;
}

.equipeach,
.equipeach-even p {
    line-height: 1.5;
}

.equip-home {
    text-align: center;
    margin-bottom: 10px;
}

.equip-para {
    text-align: center;
    width: 60%;
    margin: 5px auto;
}

.equip-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.equip-btn a {
    text-decoration: none;
    color: unset;
    display: inline;
}

#equip-ind {
    display: flex;
    text-align: center;

}

#equip-ind p {
    text-align: left;
    margin-top: 20px;
    /* changed */
}


#equip-ind article {
    padding: 5% 3%;
    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

#equip-ind h3 {
    font-size: 1.7rem;
    text-align: left;
    margin-bottom: 5px;

}


/* Slider Container */
.slider-container {
    width: 100%;
    /* Adjust to fit your layout */
    max-width: 350px;
    /* Match image width */
    margin-bottom: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}


/* Slick Slider Images */
.slider-container img {
    width: 100%;
    /* Ensure the images fit their container */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
}




.slider-container1 {
    width: 100%;
    /* Adjust to fit your layout */
    max-width: 600px;
    /* Match image width */
    margin-bottom: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px, rgba(17, 17, 26, 0.1) 0px 24px 80px;
}


/* Slick Slider Images */
.slider-container1 img {
    width: 100%;
    /* Ensure the images fit their container */
    height: auto;
    /* Maintain aspect ratio */
    display: block;
  

}
/* assets end */

/* showcase  start */
#showcase-home {
    gap: 10px;
    padding: 10vh 7vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

#showcase-home h1 {
    text-align: center;
}

.showcaseHome-img {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 10px;
}

.showcaseHome-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* showcase end */

/* footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;


    color: var(--quaternary-color);
    text-align: center;
    margin: 2vh 2vw;
    position: relative;
    padding: 2vh 2vw;
}

.footer-line {
    margin-bottom: 30px;
    display: none;
}

footer h4 {
    text-align: left;
    text-decoration: underline;
    text-transform: uppercase;
}

#followus-footer {

    display: flex;
    justify-content: space-evenly;

    gap: 0px;
    margin: 14px 0px;
}

.footer-links {
    color: var(--quaternary-color);
    text-align: left;
    text-decoration: none;
    position: relative;
    display: block;
    /* Keeps the block display */
    padding: 5px 0;
    /* Adds spacing to make the block links clearer */
    width: fit-content;
    /* Ensures the block width matches the text width */
}

.footer-links::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #fff;
    /* Underline color */
    left: 0;
    bottom: 0;
    /* Places underline at the bottom of the link */
    transition: width 0.3s ease-in-out;
}

.footer-links:hover::after {
    width: 100%;
    /* Expands the underline across the text */
}

#subscriptionForm-footer {
    width: 100%;
}

#subscriptionForm-footer input,
button {
    width: 100%;
    margin: 5px 0;
}

#subs-input-footer {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    flex-direction: column;
}

.footer-reachus {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-reachus a {
    color: var(--quaternary-color);
}

.footer-1 p {
    text-align: left;
    font-size: 1.4rem;
    margin-top: 10px;
}

.footerSubs-btn {
    margin-left: 0px;
    background-color: #ff6d00;
    color: #fff;
    padding: 0;
    width: 150px;
    cursor: pointer;
    font-family: EB Garamond, serif;
    font-size: .9rem;
    width: 100%;
    border: 1px solid #ff6d00;
}

.footer-4 h4 {
    text-decoration: underline;
    /* margin-bottom: 100px; */
}

.footerSubs-btn:hover {
    background-color: #2a2824;
    border-color: var(--quaternary-color);
}

.footer-reachus p {
    margin: 5px 0;
}

.copyright-mobile {
    display: none;

}

#copyright-mobile .line {
    border-top: 2px solid var(--quaternary-color);
    margin-top: 60px;
}

#copyright-mobile h5 {
    color: var(--quaternary-color);
    text-align: center;
}

#subs-input-footer {
    margin-bottom: 15px;
}

/* footer end */



/* Major Media Queries */


/* Extra Small Devices (Mobile Phones, Portrait) - Up to 480px */
@media screen and (max-width: 480px) {
    body {
        font-size: 1.2rem;
    }

    /* navbar */
    .link-116 a {
        /* background-color: var(--secondary-color); */
        color: white;
    }

    .link-116:hover::after {
        width: 100%;
        color: var(--quaternary-color);
    }

    .link-116 a:hover {
        color: var(--quaternary-color);

    }

    nav ul li {
        background-color: #121212;
        color: var(--quaternary-color);
    }

    nav ul {
        display: none;

        flex-direction: column;
        background-color: #121212;
        position: absolute;
        top: 0px;
        right: 1px;
        left: 1px;
        width: 100%;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        height: 100%;
        text-align: center;
        z-index: 1000;
        width: 100vw;
        text-align: center;
    }

    #menu-icon {
        display: block;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        font-size: 20px;
        margin: 10px;
    }




    #header-logo h1 {
        font-size: 1.6rem;
    }

    /* home */
    #home {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
        flex-direction: column;
    }

    #slider img {
        border-radius: var(--border-b);
        width: calc(80vw);
    }

    #hometext h2 {
        font-size: 2.2rem;
        font-weight: 400;
    }

    .button1 {
        width: 100%;
    }

    /* contact us */
    #contact {
        flex-direction: column;
    }

    .con-text {
        width: 70%;
        margin: 5px auto;
    }

    .con-text p {
        text-align: center;
        font-size: 1.2rem;
    }

    #enquiry input,
    textarea,
    button {
        width: 230px;
    }

    #socials {
        flex-direction: column;
        align-items: center;
    }

    #socials p {
        font-size: 1.2rem;
        text-align: left;

    }

    #followus {
        display: flex;
        justify-content: space-around;
        gap: 25px;

    }

    #followus .con {
        font-size: 30px;
    }

    p.contact-links {
        margin: 10px 20px;
    }

    /* assets */
    #equip-ind {
        flex-direction: column;

    }


    /* about us */
    .about-text {
        margin: 15px auto;
        text-align: justify;
        font-size: 1.2rem;
    }




    .equipeach1 {
        display: flex;
        flex-direction: column-reverse;
        justify-content: center;
    }

    .equip-para {
        font-size: 1.2rem;
    }

    .equip-div p {
        font-size: 1.6rem;
    }

    .equipeach,
    .equipeach-even p {
        font-size: 1.2rem;
    }

    #equip-ind p {
        font-size: 1.2rem;
    }

    #equip-ind article {
        padding: 20px;
    }

    .hidee {
        display: block;
    }


    .contact-links {
        margin: 10px auto;
    }

    #portfolio h1 {
        font-size: 2.2rem;
    }

    .music p {
        text-align: left;
        font-size: 13px;
    }

    .music h2 {
        font-size: 22px;
    }

    .track img {
        width: 50px;
    }

    .equipeach {
        flex-direction: column;
    }

    .equipeach-even {
        flex-direction: column-reverse;
    }

    .equipeach h3,
    p {
        text-align: center;
    }

    .equipeach-even h3,
    p {
        text-align: center;
    }

    #heading-mobile {
        display: block;
        font-size: 1.6rem;
        text-align: center;
    }

    .equipeach h3 {
        display: none;
    }

    .equipeach-even h3 {
        display: none;
    }



    .equip-para {
        width: 80%;
    }

    .equipments p {

        text-align: left;
        /* changed */
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer h4 {
        text-align: center;
    }

    .footer-line {
        display: block;
    }

    .footer-1,
    .footer-2,
    .footer-3,
    .footer-4 {
        margin-bottom: 40px;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

    .footer-1 p {
        text-align: justify;

    }

    .equip-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 60vh;
        margin-bottom: 50px;
        /* height: 90vh; */
    }

    #header-logo h1 {
        font-size: 1.4rem;
    }

    .ssss {
        display: none;
    }

    #followus-footer {
        gap: 10px;
    }

    .footer-4 {
        width: 80%;
        text-align: left;

    }
}

/* Small Devices (Mobile Phones, Landscape) - Up to 768px */
@media screen and (max-width: 768px) and (min-width: 481px) {
    body {
        font-size: 1.5rem;
    }

    #slider img {
        border-radius: var(--border-b);
        width: calc(80vw);
    }

    .link-116 a {
        /* background-color: var(--secondary-color); */
        color: white;
    }

    #home {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
        flex-direction: column;
        z-index: 90;
    }

    #hometext h2 {
        font-size: 2.2rem;
        font-weight: 400;

    }

    .button1 {
        width: 100%;
    }

    nav ul {
        display: none;
        flex-direction: column;
        background-color: #121212;
        position: absolute;
        top: 0px;
        right: 1px;
        left: 1px;
        width: 100%;
        padding: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        height: 100%;
        text-align: center;
        z-index: 1000;
    }


    #menu-icon {
        display: block;
    }

    nav ul.show {
        display: flex;
    }

    #header-logo h1 {
        font-size: 1.8rem;
    }

    #contact {
        flex-direction: column;
    }

    .con-text {
        width: 70%;
        margin: 5px auto;
    }

    .con-text p {
        text-align: center;
        font-size: 1.2rem;
    }

    #enquiry input,
    textarea,
    button {
        width: 260px;
    }

    .equip-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
        /* height: 90vh; */
    }


    #socials,
    #equip-ind {
        flex-direction: column;

    }

    #socials {
        flex-direction: column;
        align-items: center;
    }

    #socials p {
        font-size: 1.2rem;
        text-align: left;
    }

    #followus {
        display: flex;
        justify-content: space-around;
        gap: 25px;

    }

    .contact-links {
        margin: 10px auto;
    }


    /* portfolio */
    #portfolio h1 {
        font-size: 2.5rem;
    }

    .music p {
        text-align: left;
        font-size: 18px;
    }

    .music h2 {
        font-size: 22px;
    }

    .equipments p {

        text-align: left;
        /* changed */
    }

    .equipeach {
        flex-direction: column;
    }

    .equipeach-even {
        flex-direction: column-reverse;
    }

    .equipeach h3,
    p {
        text-align: center;
    }

    .equipeach-even h3,
    p {
        text-align: center;
    }

    #heading-mobile {
        display: block;
        font-size: 1.6rem;
        text-align: center;
    }

    .equipeach h3 {
        display: none;
    }

    .equipeach-even h3 {
        display: none;
    }



    .equip-para {
        width: 80%;

    }

    .about-text {
        text-align: justify;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer h4 {
        text-align: center;
    }

    .footer-line {
        display: block;
    }

    .footer-1,
    .footer-2,
    .footer-3,
    .footer-4 {
        margin-bottom: 40px;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

    .footer-1 p {
        text-align: justify;
    }

    .ssss {
        display: none;
    }

    .footer-4 {
        width: 60%;
        text-align: left;

    }

}

/* Medium Devices (Tablets and Small Laptops) - 768px to 1024px */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: 1.5rem;
    }

    #hometext h2 {
        font-size: 1.8rem;
        font-weight: 400;
    }

    #header-logo h1 {
        font-size: 1.2rem;
    }

    .link-116 a {
        font-size: .9rem;
    }

    nav ul {
        display: flex;
        gap: 8px;
    }

    /* .button1 {
        width: 90%;
    } */

    #menu {
        display: flex !important;
    }

    #menu-icon,
    #close-icon {
        display: none;
    }


    #home {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
        background-color: var(--quaternary-color);
        color: var(--secondary-color);
    }

    .equip-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 40vh;
        /* height: 90vh; */
    }

    .equipments p {
        font-size: 1.7rem;
        text-align: left;
        /* changed */
    }

    .con-text p {
        text-align: center;
        font-size: 1.5rem;
    }

    .about-text {
        text-align: center;
    }

    #enquiry input,
    textarea,
    button {
        width: 260px;
    }

    #socials {
        flex-direction: column;
        align-items: center;
    }

    #socials p {
        text-align: justify;
        font-size: 1.2rem;

    }

    #followus {
        display: flex;
        justify-content: space-around;
        gap: 30px;

    }

    .follow-1024 {
        display: none;
    }

    #contact {
        align-items: flex-start;
    }

    #enquiry input,
    textarea,
    button {
        width: 330px;
    }

    footer {
        flex-direction: column;
        align-items: center;
    }

    footer h4 {
        text-align: center;
    }

    .footer-line {
        display: block;
    }

    .footer-1,
    .footer-2,
    .footer-3,
    .footer-4 {
        margin-bottom: 40px;
    }

    .footer-1 {
        width: 55%;
        text-align: center;
    }

    #subscriptionForm-footer input,
    button {
        width: 100%;
        margin: 5px 0;
        height: 30px;
    }

    .button1 {
        height: unset;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

    #heading-mobile {
        display: block;
        font-size: 2.2rem;
        text-align: center;
    }

    .equipeach h3 {
        display: none;
    }

    .equipeach-even h3 {
        display: none;
    }

    .equipeach {
        flex-direction: column;
    }

    .equipeach-even {
        flex-direction: column-reverse;
    }

    .footer-4 {
        width: 40%;
        text-align: left;

    }
}

/* Large Devices (Desktops, Laptops) - 1024px to 1200px */
@media screen and (min-width: 1025px) and (max-width: 1200px) {
    body {
        font-size: 1.3rem;
    }

    #menu {
        display: flex !important;
    }

    #hea #menu-icon,
    #close-icon {
        display: none;
    }

    #home {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }

    .con-text p {
        text-align: center;
        font-size: 1.2rem;
    }

    .about-text {
        font-size: 1.6rem;
        margin: 0 4vw;
        text-align: center;
    }

    .ssss {
        display: none;
    }

    footer {
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: nowrap;
    }

    .footer-1 {
        width: 25%;
    }

    #subs-input-footer {
        margin-bottom: 15px;
    }

    .copyright {
        display: none;
    }

    .copyright-mobile {
        display: block;
    }

    .equip-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh;
        /* height: 90vh; */
    }

    .footer-4 {
        width: 25%;
        text-align: left;
    }

}

/* Extra Large Devices (Wide Screens) - Above 1200px */
@media screen and (min-width: 1201px) {
    body {
        font-size: 1.3rem;
    }

    #menu {
        display: flex !important;
    }

    #menu-icon,
    #close-icon {
        display: none;
    }

    .error-message {
        color: red;
        font-size: 13px;
        margin-top: 5px;
        font-family: var(--secondary-font);
    }

    .error-message-footer {
        color: red;
        font-size: 11px;
        margin-top: 2px;
        font-family: var(--secondary-font);
    }

    #home {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 50px;
    }

    .con-text p {
        text-align: center;
        font-size: 1.4rem;
    }

    #aboutus h2 {
        font-size: 3rem;
        margin-bottom: 7vh;
    }

    .about-text {
        font-size: 1.8rem;
        margin: 0 4vw;
        text-align: center;
    }

    .equip-home {
        font-size: 3rem;
    }

    .equip-para {
        font-size: 1.8rem;
    }

    .equip-div {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 65vh;
        /* height: 90vh; */
    }

    #contact-text h4 {
        font-size: 3rem;
    }

    #contact-text p {
        font-size: 1.4rem;
    }

    .ssss {
        display: none;
    }

    #social-header {
        font-size: 2rem;
    }


    #showcase-home h1 {
        font-size: 3rem;
        text-align: center;
    }

    .equip-div h1,
    #audio h1 {
        font-size: 3rem;
    }

    .footer-1 {
        width: 25%;
    }

    #socials p {
        word-wrap: break-word;
    }

    .footer-4 {
        width: 25%;
        text-align: left;
    }
}

@media screen and (min-width: 1600px) {
    .equipments h3 {
        font-size: 2rem;
    }

    .equipments p {
        font-size: 1.6rem;
    }

    .footer-4 {
        width: 25%;
        text-align: left;
    }
}

/* //buttonsss */
/* Home contact us button*/
.button {
    font-family: var(--secondary-font);
    margin: 0 auto;
    line-height: 1;
    text-decoration: none;
    display: inline-flex;
    border: none;
    cursor: pointer;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--clr);
    border-radius: 10rem;
    padding: 0.75rem 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: background-color 0.3s;
    width: 150px;
    border: 2px solid;
    font-size: 1rem;
    color: #000;

}

.button__icon-wrapper {
    flex-shrink: 0;
    width: 25px;
    height: 25px;
    position: relative;
    color: var(--clr);
    background-color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.button:hover {
    background-color: #3b3333;
    color: #fff;
    border-color: #3b3333;
}

.button:hover .button__icon-wrapper {
    color: #3b3333;


}

.button__icon-svg--copy {
    position: absolute;
    transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
    transition: transform 0.3s ease-in-out;
    transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
    transition: transform 0.3s ease-in-out 0.1s;
    transform: translate(0);
}



/* equipments button */
.button1 {
    display: inline-block;
    padding: 8px 16px;
    border: 1px solid #4f4f4f;
    border-radius: 7px;
    transition: all 0.2s ease-in;
    position: relative;
    overflow: hidden;
    font-size: 16px;
    cursor: pointer;
    color: var(--quaternary-color);
    z-index: 1;
    background-color: #2a2824;

    border: 2px solid #3B3333;
    text-align: center;
}

.button1:before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%) scaleY(1) scaleX(1.25);
    top: 100%;
    width: 140%;
    height: 180%;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button1:after {
    content: "";
    position: absolute;
    left: 55%;
    transform: translateX(-50%) scaleY(1) scaleX(1.45);
    top: 180%;
    width: 160%;
    height: 190%;
    background-color: #3b3333;
    border-radius: 50%;
    display: block;
    transition: all 0.5s 0.1s cubic-bezier(0.55, 0, 0.1, 1);
    z-index: -1;
}

.button1:hover {
    color: #000;
    border: 2px solid #3B3333;
}

.button1:hover:before {
    top: -35%;
    background-color: var(--quaternary-color);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

.button1:hover:after {
    top: -45%;
    background-color: var(--quaternary-color);
    transform: translateX(-50%) scaleY(1.3) scaleX(0.8);
}

/* subscribe button */
.btn-subscribe {
    padding: 0;
    margin: 0;
    border: none;
    background: none;
    cursor: pointer;
    background-color: none;

}

.btn-subscribe {
    --primary-color: #111;
    --hovered-color: #ff6d00;
    position: relative;
    display: flex;
    font-weight: 600;
    font-size: 20px;
    gap: 0.5rem;
    align-items: center;
}

.btn-subscribe p {
    margin: 0 auto;
    position: relative;
    font-size: 20px;
    color: var(--primary-color);
    background-color: none;
}

.btn-subscribe::after {
    position: absolute;
    content: "";
    width: 0;
    left: 0;
    bottom: -7px;
    background: var(--hovered-color);
    height: 2px;
    transition: 0.3s ease-out;
}

.btn-subscribe p::before {
    position: absolute;
    content: "Subscribe";
    width: 0%;
    inset: 0;
    color: var(--hovered-color);
    overflow: hidden;
    transition: 0.3s ease-out;
}

.btn-subscribe:hover::after {
    width: 100%;
}

.btn-subscribe:hover p::before {
    width: 100%;
}

.btn-subscribe:hover svg {
    transform: translateX(4px);
    color: var(--hovered-color);
}

.btn-subscribe svg {
    color: var(--primary-color);
    transition: 0.2s;
    position: relative;
    width: 15px;
    transition-delay: 0.2s;
}

/* showcase btn */
.animated-button {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 12px 30px;
    border: 4px solid;
    border-color: transparent;
    font-size: 14px;
    border-radius: 100px;
    font-weight: 600;
    color: #111;
    box-shadow: 0 0 0 2px #ffffff;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    width: unset;
}

.animated-button svg {
    position: absolute;
    width: 24px;
    fill: rgb(29, 21, 14);
    z-index: 9;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
    right: 16px;
}

.animated-button .arr-2 {
    left: -25%;
}

.animated-button .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background-color: rgb(29, 21, 14);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
    position: relative;
    z-index: 1;
    transform: translateX(-12px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);

}

.animated-button:hover {
    box-shadow: 0 0 0 12px transparent;
    color: #212121;
    border-radius: 12px;
}

.animated-button:hover .text {
    color: #fff;
}

.animated-button:hover svg {
    color: #fff;
}

.animated-button:hover .arr-1 {
    right: -25%;
}

.animated-button:hover .arr-2 {
    left: 16px;
}

.animated-button:hover .text {
    transform: translateX(12px);
}

.animated-button:hover svg {
    fill: #fff;
}

.animated-button:active {
    scale: 0.95;
    box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
    width: 220px;
    height: 220px;
    opacity: 1;
}

/* end */


.btn-portfolio {
    --color: #d4c8b4;
    --color2: rgb(10, 25, 30);
    /* padding: 0.8; */
    background-color: #3B3333;
    border-radius: 6px;
    border: 2px solid var(--color);
    transition: .9s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    font-weight: 300;
    font-size: 17px;
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    text-transform: uppercase;
    color: var(--color);
    width: 300px;

}

.btn-portfolio::after,
.btn-portfolio::before {
    content: '';
    display: block;
    height: 100%;
    width: 100%;
    transform: skew(90deg) translate(-50%, -50%);
    position: absolute;
    inset: 50%;
    left: 25%;
    z-index: -1;
    transition: .9s ease-out;
    background-color: var(--color);
}

.btn-portfolio::before {
    top: -50%;
    left: -25%;
    transform: skew(90deg) rotate(180deg) translate(-50%, -50%);
}

.btn-portfolio:hover::before {
    transform: skew(45deg) rotate(180deg) translate(-50%, -50%);
}

.btn-portfolio:hover::after {
    transform: skew(45deg) translate(-50%, -50%);
}

.btn-portfolio:hover {
    color: var(--color2);
    border: 2px solid var(--color2);
}

.btn-portfolio:active {
    filter: brightness(.7);
    transform: scale(.98);
}

/* showcase slick */
.carousel-container {

    margin: 20px 0px;
    /* Aligns images vertically if needed */
    display: block;
    position: relative;
    /* Required for Slick's positioning */
    margin: 0 auto;
    /* overflow: hidden;    */
}

.carousel-container img {
    width: 100%;
    /* Ensure images resize properly */
    /* max-height: 200px; Optional: Set a max height */
    object-fit: cover;
    /* Optional: Crop the image if necessary */
    cursor: pointer;
    /* Show pointer cursor on hover for clickable images */
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* Smooth interaction effects */

}

.carousel-container .slick-slide {

    padding: 0px 15px;
}


.carousel-container .slick-slide {
    transition: opacity 0.3s ease-in-out;
    /* Smooth opacity change */

}

.carousel-container img:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
}



/* showcase and asset design css */
#showcase {
    gap: 10px;
    padding: 10vh 5vw;

    background-color: var(--quaternary-color);
    color: var(--tertiary-color);
    margin: 20px;
    border-radius: var(--border-b);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.glightbox-container {
    animation: customFadeIn 0.6s ease-in-out;
}

@keyframes customFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery {
    /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); */
    display: flex;
    justify-content: space-around;


}

.gallery a {
    margin: 7px;
}

.gallery img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.glightbox img {
    transition: transform 0.3s ease, filter 0.3s ease;
}

.glightbox img:hover {
    transform: scale(1.1);
    filter: brightness(0.8);
}

.glightbox {
    position: relative;
    display: block;
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    width: 100%;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glightbox:hover .overlay {
    opacity: 1;
}


/* General styling for the gallery */
.gallery {
    display: grid;
    gap: 16px;
    /* Space between items */
    padding: 16px;
    /* Default: Single-column layout for small screens */
    grid-template-columns: 1fr;
}

/* Image styling */
.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

/* Hover effect for images */
.gallery img:hover {
    transform: scale(1.05);
}

 /* Overlay for the custom alert */
 .custom-alert {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }

  /* Alert box content */
  .custom-alert-content {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 400px; /* Limit max width */
  }

  /* Alert message */
  #customAlertMessage {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
  }

  /* OK button */
  #customAlertButton {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
  }

  #customAlertButton:hover {
    background-color: #0056b3;
  }

  /* Responsive Design */
  @media (max-width: 600px) {
    .custom-alert-content {
      padding: 15px 20px;
      font-size: 16px;
    }

    #customAlertButton {
      padding: 8px 15px;
      font-size: 14px;
    }
  }

    /* Add blur effect to the rest of the page */
    .blurred {
        filter: blur(5px); /* Blur intensity */
        pointer-events: none; /* Disable interactions */
        user-select: none; /* Prevent text selection */
      }



      /* From Uiverse.io by kennyotsu */ 
.notifications-container {
    /* width: 340px; */
    height: 100px;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;

  }
  
  .flex {
    display: flex;
  }
  
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  
  .success {
    padding: 1rem;
    border-radius: 0.375rem;
    background-color: rgb(240 253 244);
  }
  
  .succes-svg {
    color: rgb(74 222 128);
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .success-prompt-wrap {
    margin-left: 0.75rem;
  }
  
  .success-prompt-heading {
    font-weight: bold;
    color: rgb(22 101 52);
    text-align: center;
    font-size: 1.2rem;
  }
  
  .success-prompt-prompt {
    margin-top: 0.5rem;
    color: rgb(21 128 61);
  }
  
  .success-button-container {
    display: flex;
    justify-content: center;
    margin-top: 0.875rem;
    margin-bottom: -0.375rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
    align-items: center;
    
  }
  
  .success-button-main {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    background-color: #ECFDF5;
    color: rgb(22 101 52);
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: bold;
    border-radius: 0.375rem;
    border: none;
    width: 100px;
    border: 2px solid #991B1B;
  }
  
  .success-button-main:hover {
    background-color: #D1FAE5;
  }
  
  .success-button-secondary {
    padding-top: 0.375rem;
    padding-bottom: 0.375rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    margin-left: 0.75rem;
    background-color: #ECFDF5;
    color: #065F46;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 0.375rem;
    border: none;
  }
  .notifications-container {
    position: fixed;
    top: 10px; /* Distance from the top */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    z-index: 9999; /* Ensure it's above other content */
    display: none;
  }
  
  .success {
    display: flex;
    align-items: center;
  }
  
  .success-button-main {
    cursor: pointer;
  }







  /* From Uiverse.io by kennyotsu */ 
.notifications-container1 {
    /* width: 320px; */
    height: auto;
    font-size: 0.875rem;
    line-height: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
   
    height: 100px;
    text-align: center;
  }
  
  .flex {
    display: flex;
    align-items: center;
  }
  
  .flex-shrink-0 {
    flex-shrink: 0;
  }
  
  .error-alert {
    border-radius: 0.375rem;
    padding: 1.5rem;
    background-color: rgb(254 242 242);
  }
  
  .error-svg {
    color: #F87171;
    width: 1.25rem;
    height: 1.25rem;
  }
  
  .error-prompt-heading {
    color: #991B1B;
    font-size: 1.2rem;
    line-height: 1.25rem;
    font-weight: bold;
    text-align: center;
  }
  
  .error-prompt-container {
    display: flex;
    flex-direction: column;
    /* margin-left: 1.25rem; */
  }
  
  .error-prompt-wrap {
    margin-top: 0.5rem;
    color: #B91C1C;
    font-size: 0.875rem;
    line-height: 1.25rem;
  }
  
  .error-prompt-list {
    padding-left: 1.25rem;
    margin-top: 0.25rem;
    list-style-type: disc;
  }
 
  .notifications-container1 {
    position: fixed;
    top: 10px; /* Adjust the distance from the top */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Align properly in the center */
    z-index: 9999; /* Ensure it's on top of other elements */
    display: none;
  }
.notifications-container1 .success-button-main
{
    background-color: rgb(254 242 242);
    color: #991B1B;
    border: 2px solid #991B1B;
}  

.notifications-container1 .success-button-main:hover
{
    background-color:#F87171 ;
}
