* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", serif;
}

body {
    background-color: black;
}

.container {
    width: 80%;
    max-width: 1140px;
    margin: auto;
}

a{
    text-decoration: none;
}


.top-header-message {
    background-color: #000000;
    color: #ffffff;
    padding: 4px;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: none;
    font-size: 0.95rem;
}

/* Section1 Starts Here ---------------------------------------- */


.section1 {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13vh;
    background: transparent;
}

.sec-1-backround {
    position: relative;
    overflow: hidden;
    background-color: black;
    background: url(/img/background.svg) no-repeat center center/cover;
    background-size: 100%;
    height: 100vh;
    top: -5%;
    display: flex
}

.sec-1-backround::after {
    content: "";
    z-index: 0;
    position: absolute;
    left: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

@keyframes wave-animation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.section1 p {
    color: white;
    font-size: var(--font-heading-size);
    background: transparent;
}

.button-primary {
    background-color: black;
    color: white;
    border-radius: 50px;
    font-size: var(--font-subheading-size);
    font-weight: 300;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 14px 25px;
    border: white 1px solid;
}

.button-primary img {
    height: 4vh;
}


/* Section2 Video CSS Starts Here --------------------------------------> */

.video-container {
    position: relative;
    margin: auto;
}

video {
    width: 100%;
    object-fit: cover;
}

/* Section3 Starts Here ----------------------------------------------> */

.section3 {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* Heading Starts Here --------------------- */
.sec-3-heading {
    color: white;
    display: flex;
    flex-direction: column;
    gap: 7vh;
    padding-top: 14vh;
    padding-bottom: 7vh;
}

.sec-3-heading h4 {
    font-size: 2.5rem;
    font-weight: 400;
    color:#0048AE;
}

.sec-3-heading p {
    font-size: var(--font-subheading-size);
}

/* Section 3 Container 1 Starts Here --------------------- */

.sec-3-box-container1 {
    width: 80%;
    max-width: 1140px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14vh;
    flex-wrap: wrap;
}

.sec-3-left-box {
    height: 75vh;
    width: 65%;
    background-color: #0048ae82;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    
}

.section3 img {
    width: 100%;
    height: 100%;
    transition: all 0.3s ease;
    object-fit: contain;
    padding: 6px;
    scale: 1.3;
}

.section3 img:hover {
    scale: 1.4;

}

/* .section3 img:hover .section3 {
    background-color: aquamarine;
} */

.sec-3-right-box {
    height: 62vh;
    width: 30%;
    background-color: orange;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Section 3 Container 2 Starts Here --------------------- */

.sec-3-box-container2 {
    width: 95%;
    max-width: 1340px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 0;
    overflow: hidden;
}

.sec3-con2-left-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 37%;
    height: 85vh;
    overflow: hidden;
}

.sec3-con2-left-top-box {
    width: 100%;
    height: 48%;
    background-color: skyblue;
    overflow: hidden;
}

.sec3-con2-left-bottom-box {
    width: 100%;
    height: 48%;
    background-color: green;
    overflow: hidden;
}

.sec3-con2-right-box {
    height: 85vh;
    width: 60%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Section 3 Container 3 Starts Here --------------------- */

.sec-3-box-container3 {
    width: 95%;
    max-width: 1340px;
    margin: auto;
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    justify-content: space-between;
    padding: 30px 0;
    overflow: hidden;
}

.sec3-con3-right-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 37%;
    height: 85vh;
    overflow: hidden;
}

.sec3-con3-right-top-box {
    width: 100%;
    height: 48%;
    background-color: skyblue;
    overflow: hidden;
}

.sec3-con3-right-bottom-box {
    width: 100%;
    height: 48%;
    background-color: green;
    overflow: hidden;
}

.sec3-con3-left-box {
    height: 85vh;
    width: 60%;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}


#model-viewer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50% );
    width: 100%;
    height: 300px;
    z-index: 10;
    --poster-color: transparent;
    background-color: transparent;
    --progress-bar-color: transparent;
    --progress-mask: transparent;
}

model-viewer::part(default-progress-bar) {
    display: none;
}

.section2 {
    position: relative;
    width: 100%;
    /* height: 100vh;
    overflow: hidden; */
}