* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling styles */
html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* General body styles */
html,
body {
    height: 100%;
    width: 100%;
}

main {
    background-color: black;
    overflow-x: hidden;
    overflow-y: hidden;
}

/* Scrollbar styles */
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #D62929;
}

/* Font settings */
@font-face {
    font-family: "sfpro";
    src: url("../font/SFPRODISPLAYBOLD.woff2") format("woff2");
}

@font-face {
    font-family: "sf";
    src: url("../font/SFPRODISPLAYREGULAR.woff2") format("woff2");
}

:root {
    --head: "sfpro";
    --para: "sf";
}

/* Container max-width */
.container {
    max-width: 1400px !important;
}




/*-----------------------------------------------Hero section---------------------------------------------------- */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
}

.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.icon {
    cursor: pointer;
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.icon img {
    width: 60px;
    height: 60px;
}

/* Media queries for responsiveness */
@media screen and (max-width: 600px) {
    .hero {
        height: 100%;
    }

    .icon {
        top: 70%;
    }

    .icon img {
        width: 40px;
        height: 40px;
    }
}

/*--------------------------------------------------- Page 1 styles--------------------------------------------- */
.page1 {
    text-align: center;
    padding: 5rem 0rem;
}



.page1 h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

/* Image div style */
.img-div {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 20px 0;
}

.img-div div {
    flex: 1 1 30%;
    max-width: 30%;
    margin: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.img-div div img {
    width: 100%;
    height: auto;
}

.img-div h3 {
    font-size: 18px;
    margin-top: 10px;
}

/* Media queries for image div responsiveness */
@media screen and (max-width: 900px) {
    .page1 h1 {
        font-size: 28px;
    }

    .img-div div {
        max-width: 45%;
    }

    .img-div h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 600px) {
    .page1 h1 {
        font-size: 24px;
    }

    .img-div div {
        max-width: 100%;
    }

    .img-div h3 {
        font-size: 14px;
    }
}

@media screen and (max-width: 400px) {
    .page1 h1 {
        font-size: 20px;
    }

    .img-div h3 {
        font-size: 12px;
    }
}

/*------------------------------------------------ Page 2 styles------------------------------------------------- */
.page2 {
    width: 100%;
    height: 90vh;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page2 h1 {
    font-size: 40px;
    margin-bottom: 50px;
    font-family: var(--head);
}

.page2 h1 span {
    color: red;
}

.categories {
    display: flex;
    align-items: center;
    justify-items: center;
    width: 100%;
}

.categories .item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories .item h3 {
    display: none;
}

.categories a {
    width: 15%;
}

.categories a>img {
    border-radius: 20%;
    width: 100%;
}

.inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
    margin-top: 50px;
    width: 100%;
    height: 100%;

}

.box1,
.box2 {
    width: 100%;
}

.box1 video,
.box2 video {
    width: 100%;
    border-radius: 40px;
}

/* Media queries for page 2 responsiveness */
@media screen and (max-width: 600px) {
    .page2 {
        height: 100%;
    }

    .page2 h1 {
        font-size: 20px;
    }

    .categories {
        justify-content: center;
        width: 100%;
    }

    .categories .item {
        display: block;
        text-align: center;
    }

    .categories .item h3 {
        display: block;
        margin-top: 5px;
        font-family: var(--head);
    }

    .categories a>img {
        margin-top: 20px;
    }

    .inner {
        display: none;
    }
}

/*----------------------------------------------------- Page 3 styles-------------------------------------------- */
.row {
    --bs-gutter-x: 10px !important;
}

.page3 {
    margin-top: 50px;
    background-image: url(../wb\ image.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.left-side {
    display: flex;
    align-items: center;
    width: 50%;
}

.left-side h2 {
    font-size: 50px;
    text-transform: uppercase;
    font-family: var(--head);
}

.left-side h2 span {
    color: red;
}

.right-side {
    width: 50%;
    display: flex;
    justify-content: end;
    align-items: center;
}

.right-side img {
    width: 100%;
}

/* Media queries for page 3 responsiveness */
@media screen and (max-width: 600px) {
    .left-side h2 {
        font-size: 30px;
    }

    .left-side,
    .right-side {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/*----------------------------------------------- Page 4 styles (canvas)----------------------------------------- */
.page4 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.page4 h1 {
    font-size: 40px;
    position: absolute;
    z-index: 99;
    left: 50%;
    color: white;
    transform: translate(-50%);
}

.child {
    position: sticky;
    left: 0;
    top: 0;
    width: 100vw;
}

.child>canvas {
    width: 100vw;
    height: 100vh;
}

/*--------------------------------------------- Page 10 styles---------------------------------------------- */
.page10 {
    position: relative;
    height: 100vh;
    width: 100vw;
}

.page10>h1 {
    width: 55%;
    top: 50%;
    transform: translateY(-50%);
    text-align: justify;
    left: 0;
    font-size: 1.2vw;
    font-weight: 500;
    color: rgb(255, 255, 255);
    position: absolute;
}

.page10>h1>span {
    color: rgb(255, 0, 0);
    font-weight: 700;
    font-family: var(--head);
}

/*------------------------------------------------------------------------------------------------------------ Page 11 styles------------------------------------------------------------------ */
.page11 {
    padding: 10px;
    height: 100%;
    width: 100%;
    margin-top: 50px;
    font-family: var(--head);
    text-align: center;
}

.page11 h1 {
    font-size: 40px;
    padding: 20px;
    margin-bottom: 50px;
    color: #fff;
}

.page11 span {
    color: red;
}

.wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
}

.wrapper .carousel {
    white-space: nowrap;
    cursor: pointer;
}

.carousel video {
    height: 340px;
    object-fit: cover;
    margin-left: 5px;
    width: calc(25vw - 40px);
}

/* Media queries for carousel responsiveness */
@media screen and (max-width: 800px) {
    .carousel video {
        height: 240px;
        width: calc(40vw - 10px);
    }
}

@media screen and (max-width: 600px) {
    .page11 h1 {
        font-size: 24px;
    }

    .carousel video {
        height: 180px;
        width: calc(60vw - 10px);
    }
}

/* end page 11 */



/*-------------------------------------------------------------------------------------- start page 12----------------------------------------------------------------------------------------- */
.page12 {
    height: 110vh;
    width: 100%;
    margin-top: 50px;
    font-family: var(--head);
}

@media screen and (max-width:1024px) {
    .page12 {
        height: 110vh;
    }
}

.page12 h1 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #fff;
}

.page12 span {
    color: red;
}


.mic {
    display: flex;
    justify-content: center;
    gap: 50px;
}

.mic-content {
    width: 40vw;
    height: 80vh;
    background-color: #cfcfcf;
    padding: 2.5rem;
    overflow: hidden;
    border-radius: 2.5rem;
    text-align: justify;
}

.mic-content h2 {
    font-size: 2.2rem;
}

.mic-content p {
    width: 70%;
    font-size: 1.1rem;
    font-family: var(--para);
}

.mic-content img {
    width: 20rem;
    /* aspect-ratio: 1; */
}

.mic-box {
    width: 40vw;
    height: 80vh;
    padding: 2.5rem;
    background-color: #cfcfcf;
    border-radius: 2.5rem;
    text-align: justify;
}

.mic-box p {
    width: 70%;
    font-size: 1.1rem;
    font-family: var(--para);
}

.mic-box img {
    width: 20rem;
    /* aspect-ratio: 1; */
}

@media screen and (max-width: 600px) {
    .page12 {
        width: 100%;
        height: 100%;
        padding: 20px;
        font-family: var(--head);

    }

    .page12 h1 {
        font-size: 20px;
    }

    .page12 span {
        color: red;
    }


    .mic {
        display: inline;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .mic-content {
        width: 100%;
        height: 100%;
        background-color: #cfcfcf;
        padding: 60px;
        text-align: justify;
    }

    .mic-content h2 {
        font-size: 30px;
    }

    .mic-content p {
        width: 100%;
        font-size: 20px;
        font-family: var(--para);
    }

    .mic-content img {
        width: 100%;
    }

    .mic-box {
        width: 100%;
        height: 100%;
        padding: 60px;
        margin-top: 30px;
        background-color: #cfcfcf;
        text-align: justify;
    }

    .mic-box p {
        width: 100%;
        font-size: 20px;
        font-family: var(--para);
    }

    .mic-box img {
        width: 100%;
        margin-top: 80px;
    }
}

/* end page12 */

/* ---------------------------------------------------about page--------------------------------------------------------------- */
h1 {
    font-family: var(--head);
    text-transform: uppercase;

    span {
        color: #E93937;
    }
}

.about-company p {
    font-family: var(--para);
    font-size: 22px;
    text-align: justify !important;
}

.our-team img {
    width: 100%;
    height: 100%;
}

.product-quality p {
    font-family: var(--para);
    font-size: 22px;
    text-align: justify !important;
}

.content-side {
    display: flex;
    align-items: center;
}

.content p {
    width: 70%;
    text-align: justify;
}

.img-side img {
    width: 100%;
}






/* --------------------------------------------------------------------------BOLGS--------------------------------------------------------------------------------------------------------- */

.blogs-hero {
    width: 100%;
    height: 500px;
    /*background-color:grey;*/
    background-image: url(https://png.pngtree.com/thumb_back/fw800/background/20231006/pngtree-d-rendered-wooden-music-speakers-on-a-table-in-a-rustic-image_13566386.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.blogs-hero h2 {
    text-align: center;
    text-transform: uppercase;
    font-size:50px;
    font-family: var(--head);
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* .card {
    width: 100%;
}

.card img {
    width: 50%;
} */

/* .card{
    margin: 0 5px;
} */

.blog {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blogs-section {
    height: 100vh;
}

.blog-img {
    display: flex;
    justify-content: center;
    align-items: center;

}

.blog-img img {
    width: 100%;
    border-radius: 30px;
}

.blog-content {
    /* width: 50%; */
}

.blog-content h1 {
    color: white;
    font-size: 50px;
    font-weight: 900;
    font-family: var(--head);
}

.blog-content p {
    color: white;
    font-family: var(--para);
}

.blog-content a {
    font-family: var(--para);
    text-decoration: none;
}

.blog-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}



@media screen and (max-width: 600px) {
    .blog-inner {
        margin-top: 0 !important;
    }


    .card {
        margin-top: 50px;
    }
}

/* ----------------------------------------------------------------------------------contact us---------------------------------------------------------------------------------------------------- */

.contact-head {
    width: 100%;
    height: 500px;
   background-image: url(https://png.pngtree.com/thumb_back/fw800/background/20231006/pngtree-d-rendered-wooden-music-speakers-on-a-table-in-a-rustic-image_13566386.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}


.contact-head h2 {
    text-align: center;
    text-transform: uppercase;
    font-family: var(--head);
    color: #ffff;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}







.contact-hero {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 100px !important;
    margin-bottom: 100px !important;

}



.contact-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--head);
}

.contact-description {
    color: rgb(255, 255, 255);
    font-family: var(--para);
}

.form-group-container {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: var(--para);
}

.form-input,
.form-textarea {
    padding: 0.5rem;
    border: 1px solid #e5e7eb;
    display: flex;
    height: 2.5rem;
    width: 100%;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.form-input::placeholder,
.form-textarea:focus-visible {
    color: #6b7280;
}

.form-input:focus-visible,
.form-textarea:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.form-textarea {
    min-height: 120px;
}

.form-submit {
    width: 100%;
    margin-top: 1.2rem;
    background-color: #ff3030;
    color: #fff;
    padding: 13px 5px;
    border-radius: 0.375rem;
}

.contact-img{
    margin-top: 50px;
}

.contact-img img {
    width: 100%;
    border-radius: 30px;
}

.btn {
    outline: none;
    border: none;
    cursor: pointer;
    display: block;
    position: relative;
    background-color: #ff0000cb;
    font-size: 16px;
    font-family: var(--para);
    font-weight: 300px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 15px 50px;
    margin: 0 auto;
    border-radius: 20px;
     box-shadow: 0 6px 20px rgba(133, 130, 130, 0.3),
        0 6px 20px rgba(112, 110, 110, 0.15);
    z-index: 1;
}

.btn:hover {
    box-shadow: 0 4px #ef242463;
    top: 2px;
   
}

.btn:active {
    box-shadow: none;
    top: 6px;
}


.card{
    margin-top: 50px;
    margin-bottom: 50px;
    text-align: center;
    border-radius: 20px; 
    color: #fff;
    position: relative;
    background: inherit;
    border: 0.5px solid #D62929;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(133, 130, 130, 0.3),
        0 6px 20px rgba(112, 110, 110, 0.15);
    z-index: 1;
}

.card:before {
    content: '';
    position: absolute;
    background: inherit;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: -20px;
    box-shadow: inset 0 0 500px rgba(131, 124, 124, 0.4);
    filter: blur(10px);
    z-index: -1;
}


.gmap{
    width: 100%;
    height: 100%;
    margin-top: 50px;
    margin-bottom: 100px !important;
}