*{
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    box-sizing: border-box;
}
body{
    background-color: black;
}
nav{
    width: 100%;
}
.navbar{
    width: 100%;
    padding: 20px 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    opacity: 0;
    animation: fadeIn 2s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.navbar h3, .navbar2 h3{
    font-weight: 300;
    font-size: 1rem;
    letter-spacing: 4px;
    cursor: pointer;
}
.navbar a{
    text-decoration: none;
}

.navbar2 {
    display: none;
    width: 100%;
    padding: 20px 40px;
    position: fixed;
    top: 0;
    left: 0;
    /* background-color: black; */
    /* border-bottom: 1px solid #fff; */
    z-index: 1000;
    animation: fadeIn 2s forwards;
}

.show-navbar2 {
    display: flex;
}

.sec1{
    height: 100vh;
    width: 100%;
    background: radial-gradient(circle, #ff2f0058 0%, #000 70%);
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    padding-left: 40px;
    animation: fadeIn 2s forwards;
    overflow: hidden;
}
.mview{
    display: none;
}

.sec1 h1{
    font-size: 10vw;
    text-align: left;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 300;
    transform: translatex(-100px);
    animation: slideIn 1s forwards;
}

@keyframes slideIn {
    0% {
        opacity: 0;
    }
    100% {
        transform: translatex(0);
        opacity: 1;
    }
}
.sec1 p{
    text-align: left;
    line-height: 1.6;
    letter-spacing: .6px;
    font-size: 1rem;
    font-weight: 300;
}
.image-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
}

.layer {
    position: absolute;
    top: 0;
    left: 25%;
    filter: contrast(5);
    width: 100%;
    opacity: 0.3;
    transition: transform 0.1s ease-in-out, opacity 0.3s ease-in-out, filter 0.3s ease-in-out;
    transform-style: preserve-3d;
}
.layer:nth-child(2) {
    opacity: 0.2;
    transform: translateZ(-10px);
}
.layer:nth-child(3) {
    opacity: 0.1;
    transform: translateZ(-20px);
}
.layer:hover {
    filter: contrast(10);
}
/* .sec1 img{
    width: 100%;
    filter: contrast(5);
    opacity: .3;
    margin-left: 25%;
    transform: translatex(200px);
    animation: carslideIn 1.5s forwards;
    transition: transform 0.1s ease-in-out, filter 0.3s ease-in-out;
    transform-style: preserve-3d;
    perspective: 1000px;
}
.sec1 img:hover {
    filter: contrast(10);
}

@keyframes carslideIn {
    0% {
        opacity: 0;
    }
    100% {
        transform: translatex(0);
        opacity: .3;
    }
} */

.sec2{
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: row;
    /* justify-content: left; */
    gap: 20px;
    padding: 40px;
    padding-bottom: 400px;
}
.s2b1{
    width: 350px;
    max-width: 350px;
    background-color: #121212;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    gap: 50px;
    flex-direction: column;
    justify-content: space-between;
}
.s2b1 h1{
    font-weight: 300;
    font-size: 1.5rem;
}
.s2b1 ul{
    margin-bottom: 0px;
    list-style: none;
    font-weight: 100;
    font-size: 0.7rem;
    line-height: 1.4;
}

.sec3{
    width: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
}
.sec3 h2{
    padding: 40px;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.s3b{
    position: relative;
    width: 100%;
    min-height: 500px;
    background-color: #000;
    border-top: 1px solid #fff;
    overflow: hidden;
    padding: 40px;
    display: grid;
    grid-template-columns: 16% 1fr 16%;
    cursor: pointer;
}
.s3b::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(150deg, #ff1900, #ff2f005f, #000);
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s ease;
}

.s3b.active::before {
    opacity: 1;
    transform: none;
}

.s3b:hover::before{
    opacity: 1;
    transform: none;
}

.s3b .num{
    position: relative;
    font-size: 7rem;
    color: #ff1900;
    font-weight: 500;
}
.s3b.active .num {
    color: #ffffff;
}

.s3b:hover .num{
    color: #ffffff;
}
.ser-des{
    position: relative;
    color: #ff1900;
}

.ser-des h1{
    font-size: 7rem;
    font-weight: 500;
}
.ser-des p{
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.sec4{
    border-top: 1px solid #fff;
    padding: 20%;
}

.sec4 h1{
    font-size: 4rem;
    font-weight: 400;
}
.s4b{
    margin-top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}
.s4b p{
    font-size: 1.3rem;
    letter-spacing: 1px;
    line-height: 1.8rem;
    font-weight: 300;
}
.bt1{
    min-width: 100px;
    cursor: pointer;
}
.bt1 a{
    position: relative;
    background-color: white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    padding: 10px 30px;
    transition: 0.5s;
}

.bt1 a::before{
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #000000;
}
.bt1 a span{
    position: relative;
    z-index: 1;
}
.bt1 a i{
    position: absolute;
    inset: 0;
    display: block;
}
.bt1 a i::before{
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 10px;
    height: 4px;
    background: #000000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.bt1 a:hover i::before{
    width: 20px;
    left: 20%;
}
.bt1 a i::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 10px;
    height: 4px;
    background: #000000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}
.bt1 a:hover i::after{
    width: 20px;
    left: 80%;
}

.sec5 {
    position: relative;
    padding: 250px 0px;
    background: radial-gradient(circle, #ff2f0058 0%, #00000000 70%);
    background-repeat: no-repeat;
    overflow: hidden;

}
.sec5 h2{
    padding: 40px;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: 4px;
}
.sec5 h1{
    padding: 40px;
    font-weight: 500;
    line-height: 10vw;
    font-size: 10vw;
    text-align: left;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
}

.s5b{
    padding: 10% 20%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: end;
    gap: 50px;
}
.s5b1{
    /* padding: 0px 100px; */
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.s5b1 h1{
    padding: 0px;
    font-size: 4rem;
    font-weight: 400;
    line-height: 4rem;
}
.s5b1 p{
    max-width: 500px;
    font-size: 1.3rem;
    letter-spacing: 1px;
    line-height: 1.8rem;
    font-weight: 300;
}
.s5b .bt1{
    margin-bottom: 10px;
}
.meshbg{
    width: 100%;
    position: absolute;
    top: 0;
    z-index: -5;
}

.bg{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* background-color: #000000; */
}

canvas {
    position: relative;
    display: block;
    /* background-color: #000000; */
}
.sec6{
    width: 100%;
    padding: 30px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.sec6 h1{
    font-weight: 500;
    line-height: 8vw;
    font-size: 8vw;
    text-align: center;
    white-space: warp;
    letter-spacing: 1px;
}

.footer{
    width: 100%;
    height: 100vh;
    padding: 60px 0px;
}
.fmsec{
    width: 100%;
    padding: 0px 40px;
    border-top: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;

}
.fsec{
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: row;
    font-weight: 300;
}
.fs1b1, .fs1b2{
    width: 50%;
    height: 100%;
    padding: 20px 0px;
    display: flex;
}
.fs1b1{
    flex-direction: row;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 30px;
}
.fs1b1 a{
    width: 80px;
    height: 80px;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    border: 1px solid #fff;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    opacity: .5;
    transition: all 1s ease;
    cursor: pointer;
}
.fs1b1 a:hover{
    font-size: 1.8rem;
    opacity: 1;
    background: linear-gradient(150deg, #ff1900, #ff2f005f, #000);
}
.fs1b2{
    flex-direction: column;
    align-items: end;
    /* gap: 10px; */
}

.fs1b2 a{
    width: 30%;
    min-width: 200px;
    text-align: end;
    padding: 10px;
    text-decoration: none;
    font-weight: 300;
    transition: all 1s ease;
    cursor: pointer;
    opacity: .5;
    /* background-color: #ff1900; */
}
.fs1b2 a:hover{
    opacity: 1;
    background: linear-gradient(150deg, #ff1900, #ff2f005f, #000);
}
.fsec h1{
    font-size: 10vw;
    font-weight: 300;
    white-space: warp;
    letter-spacing: 1px;
}

.popup-modal {
    display: none; /* Initially hidden */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    min-height: 100vh;
    max-height: 100%;
    background: linear-gradient(150deg, #ff1900, #641908, #000);
    z-index: 1000; /* Ensures it appears on top of other content */
    overflow: auto; /* If content exceeds, make it scrollable */
    /* padding: 20px; */
}

.popup-modal img{
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    mix-blend-mode: multiply;
    /* width: 100%; */
}
/* Optional: Styles for a close button within the modal */
.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 72px;
    font-weight: 100;
    cursor: pointer;
    color: #ffffff;
    z-index: 1000;
    transform: rotateX(50deg);
}



.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* background-color: #fff; */
    padding: 20px;
    width: 100%;
    height: 100%;
    /* max-width: 600px; */
    /* box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3); */
}

.popup-body {
    margin: 40px;
    color: #000;
    padding: 40px;
}

.popup-body h1{
    font-size: 10vw;
    text-align: left;
    margin: 0;
    white-space: nowrap;
    letter-spacing: 1px;
    font-weight: 300;
    margin-bottom: 20px;
}

.popup-body h2{
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 10px;
}

.popup-body h3{
    font-weight: 400;
    font-size: 1.5rem;
    /* margin-bottom: 20px; */
}

.popup-body p{
    font-size: 1rem;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: justify;
}

.popup-body p::after {
    content: "";
    display: block;
}
form{
    display: flex;
    flex-direction: column;
}
input{
    background: transparent;
    border: none;
    border-bottom: 2px solid #ffffff;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 100;
    outline: none;
}
input::placeholder{
    color: #fff;
}
input[type="text"]{
    padding: 10px 0px;    
}
.rmcont{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 10px 0px;
}
.radiocont{
    position: relative;
    font-size: 1.5rem;
    font-weight: 100;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 5px 0px;
}
.radiocont input[type="radio"]{
    cursor: pointer;
    position: absolute;
    opacity: 0;
}
.checkmark{
    height: 25px;
    width: 25px;
    border: 2px solid #fff;
    transition: all 0.5s ease;
}
label {
    cursor: pointer;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 10px;
}
.radiocont:hover input ~ .checkmark {
    background-color: #ffffff;
}

.radiocont input:checked ~ .checkmark {
    background-color: #fff;
    border: 6px double #641908;
}

.bt2 {
    width: 100%;
    cursor: pointer;
    margin: 40px 0px;
}

.bt2 button {
    cursor: pointer;
    width: 100%; 
    position: relative;
    background-color: white;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1rem;
    padding: 10px 30px;
    border: none; 
    transition: 0.5s;
}

.bt2 button::before {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #000000;
}

.bt2 button span {
    position: relative;
    z-index: 1;
}

.bt2 button i {
    position: absolute;
    inset: 0;
    display: block;
}

.bt2 button i::before {
    content: '';
    position: absolute;
    top: 0;
    left: 80%;
    width: 20px;
    height: 4px;
    background: #000000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

.bt2 button:hover i::before {
    width: 40px;
    left: 20%;
}

.bt2 button i::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 20px;
    height: 4px;
    background: #000000;
    transform: translateX(-50%) skewX(325deg);
    transition: 0.5s;
}

.bt2 button:hover i::after {
    width: 40px;
    left: 80%;
}

.consent .radiocont label{
    font-size: 1rem;
}
.error-message {
    color: #000;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
}

@media (max-width: 768px){
    .s3b .num{
        font-size: 10vw;
    }
    .ser-des h1{
        font-size: 10vw;
    }
    .sec4{
        padding: 10%;
        padding-top: 150px;
        padding-bottom: 150px;
        
    }
    .sec4 h1{
        font-size: 3rem;
    }
    .s4b{
        flex-direction: column;
        gap: 50px;
    }
    .s5b{
        padding: 100px 10%;

    }
    .s5b1{
        width: 100%;
    }
    .s5b1 h1{
        padding: 0px;
        font-size: 4rem;
        font-weight: 400;
        line-height: 4rem;
    }
    .s5b1 p{
        max-width: 700px;
        font-size: 1.5rem;
    
    }
}

@media (max-width: 430px) {
    .navbar{
        display: flex;
        position: absolute;
        right: 0;
        width: min-content;
        flex-direction: column;
        gap: 20px;
        text-align: end;
        flex-wrap: wrap;
        padding: 20px 10px;
        z-index: 10;
    }
    .navbar h3{
        font-size: 12px;
    }
    .sec1{
        padding-left: 10px;
        height: 100vh;
    }
    .sec1 h1{
        display: none;
    }
    .mview{
        display: flex;
        flex-direction: column;
    }
    .mview h1{
        display: block;
        font-size: 12rem;
        text-align: left;
        margin-block: 0;
        letter-spacing: 1px;
        font-weight: 300;
        transform: translatex(-100px);
        animation: slideIn 1s forwards;
    }
    .sec1 p{
        font-size: 12px;
        padding-left: 10px;
        padding-right: 30%;
    }
    .sec2{
        flex-direction: column;
    }
    .s2b1{
        width: 100%;
        max-width: 350px;
    }
    .s2b1 h1{
        font-size: 1rem;
    }

    .image-container{
        top: 20%;
    }
    .s3b, .ser-des{
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .ser-des{
        gap: 50px;
    }
    .s3b .num{
        display: none;
    }
    .ser-des h1{
        font-size: 10vw;
    }
    .sec4{
        padding: 10%;
        padding-top: 150px;
        padding-bottom: 150px;
        
    }
    .sec4 h1{
        font-size: 2rem;
    }
    .s4b{
        flex-direction: column;
        gap: 50px;
    }
    .s5b1 h1{
        font-size: 2rem;
        line-height: 2rem;
    }
    .s5b1 p{
        max-width: 700px;
        font-size: 1rem;
    
    }
    .sec6{
        padding: 30px 0px;
    }
    .fmsec{
        padding: 0px 20px;
    }
    .popup-body {
        margin: 0px;
        color: #000;
        padding: 20px 0px;
    }
    .popup-body p{
        text-align: left;
    }

}
@media (max-width: 350px){
    .mview h1{
        font-size: 8rem;

    }
}

::-webkit-scrollbar {
    width: 5px;
  }
  
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #000000; 
    border-radius: 10px;
  }
   
  ::-webkit-scrollbar-thumb {
    background: #ff1900; 
    border-radius: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #ff2f005f; 
  }



/* Popup Modal Styles */
