/* =========================================
   1. FONT DEFINITIONS
   ========================================= */

/* 1. Black (Heaviest Weight - 900) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayblack.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayblackitalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
}

/* 2. Bold (Weight - 700) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaybold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaybolditalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

/* 3. Medium (Weight - 500) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaymediu.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaymediumitalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* 4. Roman / Regular (Weight - 400) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayroman.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayromanitalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* 5. Light (Weight - 300) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaylight.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaylightitalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}

/* 6. Thin (Weight - 200) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaythin.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplaythinitalic.ttf') format('truetype');
    font-weight: 200;
    font-style: italic;
}

/* 7. X-Thin (Weight - 100) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayxthin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayxthinitalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
}

/* 8. XX-Thin (Fallback mapped to 50) */
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayxxthin.ttf') format('truetype');
    font-weight: 50; 
    font-style: normal;
}
@font-face {
    font-family: 'Neue Haas Display';
    src: url('./font/neuehaasdisplayxxthinitalic.ttf') format('truetype');
    font-weight: 50;
    font-style: italic;
}

/* =========================================
   2. GLOBAL SETUP
   ========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Neue Haas Display', sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

/* =========================================
   3. LOGO STYLES
   ========================================= */

.main-logo {
    font-size: 2.5vw;
    font-weight: 700;
    color: #0033cc;
}

.main-logo-contact {
    font-size: 2.5vw;
    font-weight: 700;
    color: #ffffff;
}

.main-logo-contact:hover {
    color: #0057f9;
}

/* =========================================
   4. PAGE 1 (HERO SECTION)
   ========================================= */

#page1 {
    min-height: 100vh;
    width: 100%;
    background-color: #F0F4F8;
    position: relative;
    padding: 0vw 2vw;
}

nav {
    padding: 2vw 0vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}

.nav-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: all ease 0.2s;
    display: block;
}

nav h3 {
    display: none;
    z-index: 100;
}

#npart {
    display: flex;
    align-items: center;
    gap: 10px;
}

#npart span {
    padding: 10px 20px;
    border: 1px solid #8b8b8bcc;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

#npart span::after {
    content: "";
    height: 100%;
    width: 100%;
    background-color: #0066cc;
    position: absolute;
    left: 0;
    bottom: -100%;
    border-radius: 50%;
    transition: all ease .3s;
}

#npart span:hover::after {
    bottom: 0;
    border-radius: 0;
}

#npart span a {
    text-decoration: none;
    color: black;
    z-index: 10;
    position: relative;
}

#npart span:hover a {
    color: white;
}

#center {
    height: 80vh;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding-bottom: 3vw;
    border-bottom: 1px solid lightgrey;
    position: relative;
    z-index: 10;
}

#left {
    width: 26vw;
    font-size: 1.6vw;
    line-height: 2vw;
}

#right {
    font-size: 7.5vw;
    line-height: 9vw;
    text-align: right;
    color: #1a202c; 
}

#page1 video {
    margin-top: 3vw;
    width: 100%;
    border-radius: 2vw;
    position: relative;
}

#heroshape {
    width: 46vw;
    height: 36vw;
    position: absolute;
    right: 0;
    top: 80vh;
}

#hero-1 {
    background-color: #0066cc;
    width: 100%;
    height: 100%;
    border-top-left-radius: 50%;
    border-bottom-left-radius: 50%;
    filter: blur(20px);
    position: absolute;
}

#hero-2 {
    background: linear-gradient(#0066cc, #00d4ff);
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    animation: shape2 5s linear infinite alternate;
}

#hero-3 {
    background: linear-gradient(#0066cc, #00d4ff);
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    filter: blur(10px);
    position: absolute;
    animation: shape 3s linear infinite alternate;
}

@keyframes shape {
    from {
        transform: translate(55%, -3%);
    }
    to {
        transform: translate(0%, 10%);
    }
}

@keyframes shape2 {
    from {
        transform: translate(5%, -5%);
    }
    to {
        transform: translate(-20%, 30%);
    }
}

/* =========================================
   5. PAGE 2 (MARQUEE & CONTENT)
   ========================================= */

#page2 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: #F0F4F8;
}

#cnt {
    overflow-x: auto;
    white-space: nowrap;
    padding: 8vw 0vw;
}

#cnt::-webkit-scrollbar {
    display: none;
}

#cnt h1 {
    font-size: 10vw;
    display: inline-block;
}

.marquee {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 10s linear infinite;
}

.marquee div {
    background-color: #0066cc;
    height: 70px;
    width: 70px;
    border-radius: 50%;
    display: inline-block;
    margin: 1vw 2vw;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

#p2-bottom {
    height: 90vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0vw 4.5vw;
}

#p2-bottom h1 {
    display: flex;
    align-items: flex-start;
    height: 100%;
    width: 65%;
    font-size: 5vw;
    line-height: 5vw;
    position: relative;
    z-index: 5;
    color: #111;
}

#bpart {
    height: 100%;
    width: 21%;
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
}

#bpart img {
    width: 100%;
    border-radius: 10px;
}

#bpart p {
    margin-top: 3vw;
    font-weight: 300;
    font-size: 1.2vw;
    line-height: 1.5vw;
    color: #333;
}

#gooeyshape {
    height: 32vw;
    width: 32vw;
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(to top right, #0066cc, #00d4ff);
    top: 55%;
    left: 30%;
    filter: blur(20px);
    animation: gooey 6s infinite alternate ease-in-out;
    z-index: 2;
}

@keyframes gooey {
    from {
        filter: blur(20px);
        transform: translate(10%, -10%) skew(0);
    }
    to {
        filter: blur(30px);
        transform: translate(-10%, 10%) skew(-12deg);
    }
}

/* =========================================
   6. PAGE 3 (PROJECTS)
   ========================================= */

#page3 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: #F0F4F8;
    padding: 2vw 0vw;
}

.elem {
    height: 150px;
    width: 100%;
    position: relative;
    border-bottom: 1px solid #38383864;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2vw;
}

.elem h2 {
    font-size: 3vw;
    position: relative;
    z-index: 9;
}

.epart {
    width: 10%;
}

.elem h3 {
    font-size: 1.2vw;
    position: relative;
    text-transform: uppercase;
    font-weight: 300;
}

.elem h4 {
    position: relative;
    color: #666;
    text-transform: capitalize;
    font-weight: 200;
    font-size: 1.2vw;
}

.elem .overlay {
    height: 100%;
    width: 100%;
    background-color: #00d4ff;
    position: absolute;
    left: 0;
    top: -100%;
    transition: all ease 0.25s;
}

.elem:hover .overlay {
    top: 0;
}

#media {
    display: none;
}

#fixed {
    height: 30vw;
    width: 24vw;
    border-radius: 15px;
    position: fixed;
    z-index: 99;
    left: 50%;
    top: 25%;
    display: none;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

#fixed video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* =========================================
   7. PAGE 4 (PROCESS)
   ========================================= */

#page4 {
    min-height: 100vh;
    width: 100%;
    position: relative;
    background-color: #F0F4F8;
    padding: 3vw;
}

#cnt2 {
    background-color: #0b0c10;
    border-radius: 1vw;
    overflow: hidden;
    height: 110vh;
    width: 100%;
    display: flex;
    justify-content: center;
}

.cntpart1 {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    width: 45%;
    padding-top: 10vw;
}

.cntpart1 h1 {
    border-left: 6px solid #4a5568;
    padding: 1vw;
    font-size: 5vw;
    cursor: pointer;
    line-height: 3vw;
    color: #4a5568;
    transition: all 0.3s ease;
}

.cntpart1 h1:hover {
    color: white;
    border-left-color: white;
}

.cntpart1 p {
    color: #fff;
    margin-top: 3vw;
    font-size: 1.2vw;
    font-weight: 200;
    line-height: 1.5vw;
    width: 55%;
    height: 30%;
}

.cntpart2 {
    background-image: url('media/strategy.png');
    width: 55%;
    background-size: cover;
    background-position: center;
}

/* =========================================
   8. PAGE 5 (SWIPER)
   ========================================= */

#page5 {
    height: 85vh;
    width: 100%;
    background-color: #F0F4F8;
    padding: 10vw 2vw;
    position: relative;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper::selection {
    color: transparent;
}

.swiper-slide {
    width: 25%;
    border-left: 1px solid #aeadad;
    padding: 0 2vw;
}

.swiper-slide img {
    margin-bottom: 2vw;
}

.swiper-slide p {
    font-weight: 300;
    font-size: 1.3vw;
}

/* =========================================
   9. PAGE 6 (FOOTER SPACER)
   ========================================= */

#page6 {
    height: 100vh;
    width: 100%;
}

/* =========================================
   10. FOOTER - FULLY FIXED AND CLICKABLE
   ========================================= */

footer {
    position: fixed;
    height: 100vh;
    width: 100%;
    background-color: #0b0c10;
    color: #fff;
    z-index: 9;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    padding: 3vw 3vw 2vw 3vw;
}

.contact-footer {
    position: relative !important;
    height: auto !important;
    min-height: 80vh;
    bottom: auto !important;
    z-index: 1 !important;
    justify-content: space-between;
    padding-top: 5vw;
}

#foottop {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3vw;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#foottop span {
    display: flex;
    flex-direction: column;
}

#foottop span:first-child {
    gap: 1vw;
    padding-left: 5vw;
}

#foottop span:nth-child(2) {
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5vw;
    width: auto;
    padding-right: 5vw;
}

#foottop span:first-child a {
    font-size: 2.5vw;
    color: #F0F4F8;
    text-decoration: none;
    padding: 0;
    transition: color 0.3s ease;
    cursor: pointer;
}

#foottop span:first-child a:hover {
    color: #0066cc;
}

#foottop span:nth-child(2) a {
    color: #F0F4F8;
    font-size: 2vw;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.5vw;
    height: 3.5vw;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    padding: 0;
    cursor: pointer;
}

#foottop span:nth-child(2) a:hover {
    color: #0066cc;
    background-color: #F0F4F8;
    transform: translateY(-5px) scale(1.1);
}

#foottop span:nth-child(2) a i {
    font-size: 1.8vw;
    pointer-events: none;
}

footer h1 {
    font-size: 18vw;
    line-height: 1;
    margin: 2vw 0;
}

#footlow {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2vw;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#footlow span {
    display: flex;
    align-items: center;
    gap: 3vw;
}

#footlow h3 {
    font-weight: 200;
    font-size: 1.3vw;
    margin: 0;
}

#footlow a {
    text-decoration: none;
    color: #F0F4F8;
    transition: color 0.3s ease;
    cursor: pointer;
}

#footlow a:hover {
    color: #0066cc;
}

/* =========================================
   11. MAIN & FULL SCREEN MENU
   ========================================= */

#main {
    z-index: 10;
    position: relative;
}

#full-scr {
    height: 100vh;
    width: 100%;
    background-color: #00000070;
    position: fixed;
    z-index: 999;
    top: -100%;
    transition: all ease 0.8s;
    opacity: 1;
}

#full-div1 {
    height: 50%;
    width: 100%;
    background-color: #F0F4F8;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    padding-bottom: 5vw;
}

#full-div1 h1 {
    font-size: 18vw;
    padding: .5vw 5vw;
}

#full-div1 #close {
    border: 1px solid black;
    border-radius: 50%;
    padding: 1.5vw 4vw;
    margin-right: 5vw;
    margin-bottom: 5vh;
    font-size: 7.5vw;
    font-weight: 100;
    cursor: pointer;
}

/* =========================================
   12. LOADER
   ========================================= */

#loader {
    height: 100%;
    width: 100%;
    background-color: #0b0c10;
    position: fixed;
    z-index: 999;
    top: 0;
    transition: all ease 0.7s;
    display: flex;
    align-items: center;
    justify-content: center;
}

#loader h1 {
    font-size: 4vw;
    color: transparent;
    background: linear-gradient(to right, #0066cc, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    position: absolute;
    opacity: 0;
    animation: load 1s 1s linear;
}

#loader h1:nth-child(2) {
    animation-delay: 2s;
}

#loader h1:nth-child(3) {
    animation-delay: 3s;
}

@keyframes load {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* =========================================
   13. CONTACT PAGE STYLES
   ========================================= */

.contact-page {
    height: auto !important;
    min-height: 100vh;
    background-color: #0b0c10 !important;
    color: #fff;
    padding-bottom: 0 !important;
}

.contact-page nav {
    background-color: transparent !important;
}

.contact-nav span a {
    color: #fff !important;
}

.contact-nav span {
    border-color: rgba(255,255,255,0.3) !important;
}

.contact-nav span:hover a {
    color: #000 !important;
}

.contact-nav span::after {
    background-color: #fff !important;
}

#contact-container {
    display: flex;
    justify-content: space-between;
    padding: 5vw 2vw 10vw 2vw;
    position: relative;
    z-index: 10;
    margin-top: 15vh;
}

#contact-left {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#contact-left h1 {
    font-size: 5vw;
    line-height: 5.5vw;
    color: #F0F4F8;
    margin-bottom: 5vw;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3vw;
}

.detail-item h4 {
    font-size: 1vw;
    color: #8899a6;
    margin-bottom: 0.5vw;
    letter-spacing: 0.05em;
}

.detail-item p {
    font-size: 1.5vw;
    color: #F0F4F8;
    font-weight: 400;
}

#contact-right {
    width: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3vw;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 3vw;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9vw;
    color: #8899a6;
    margin-bottom: 1vw;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input, 
.form-group textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #4a5568;
    padding: 1vw 0;
    font-size: 1.5vw;
    color: #F0F4F8;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.form-group input:focus, 
.form-group textarea:focus {
    border-bottom: 1px solid #0066cc;
}

.form-group textarea {
    resize: none;
}

.sleek-btn {
    width: 100%;
    padding: 1.5vw;
    background: linear-gradient(90deg, #0066cc, #00d4ff);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.3vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.sleek-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.5);
}

.sleek-btn .arrow {
    font-size: 1.5vw;
    transition: transform 0.3s ease;
}

.sleek-btn:hover .arrow {
    transform: translate(5px, -5px);
}

.centered-footlow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 2vw;
    border-top: 1px solid #333;
    padding-top: 2vw;
    margin-top: 2vw;
    width: 100%;
}

.centered-footlow span {
    display: flex;
    justify-content: center;
    gap: 5vw;
    width: 100%;
}

/* =========================================
   14. SOLUTIONS PAGE STYLES
   ========================================= */

.solutions-page #right h1 {
    font-size: 7.5vw;
}

#page4 .submit-btn {
    background: linear-gradient(90deg, #0066cc, #00d4ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.2vw;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

#page4 .submit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 102, 204, 0.5);
}

/* =========================================
   15. MOBILE RESPONSIVENESS
   ========================================= */

@media (max-width: 768px) {
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html, body {
        max-height: fit-content;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .main-logo {
        font-size: 6.5vw;
    }

    .main-logo-contact {
        font-size: 6.5vw;
    }

    #page1 {
        min-height: 100vh;
        width: 100%;
        padding: 0 0vw;
    }

    #full-div1 {
        height: 70%;
        padding-bottom: 8vw;
    }

    nav {
        padding: 8vw 5vw;
        background-color: #F0F4F8;
    }

    .nav-logo {
        height: 38px;
    }

    #npart {
        display: none;
    }

    nav h3 {
        display: block;
        padding: 3vw 5vw;
        border: 1px solid #ababab;
        border-radius: 50px;
        font-size: 4vw;
        font-weight: 200;
        z-index: 100;
    }

    #center {
        height: 65vh;
        width: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        border-bottom: 1px solid #0000003c;
        padding: 7vw 5vw;
        padding-bottom: 10vw;
        flex-direction: column-reverse;
        position: relative;
        z-index: 9;
    }

    #left {
        display: flex;
        align-items: flex-start;
        width: 100%;
    }

    #left h3 {
        font-size: 6.5vw;
        line-height: 6vw;
    }

    #center h1 {
        margin-top: 5vw;
        font-size: 20vw;
        text-align: right;
        line-height: 17vw;
    }

    #page1 video {
        position: relative;
        border-radius: 15px;
        margin-top: 4vw;
        height: 70vh;
        object-fit: cover;
        object-position: center;
        width: 92%;
        margin-left: 4%;
    }

    #page2 {
        min-height: 100vh;
        width: 100%;
        background-color: #F0F4F8;
        padding: 4vw 0;
        position: relative;
    }

    .marquee {
        display: inline-flex;
        align-items: center;
        overflow-x: auto;
        white-space: nowrap;
    }

    .marquee::-webkit-scrollbar {
        display: none;
    }

    #cnt {
        white-space: nowrap;
        display: inline-block;
    }

    #page2 .marquee h1 {
        font-size: 20vw;
        display: inline-block;
    }

    .marquee div {
        height: 30px;
        width: 30px;
        border-radius: 50%;
        display: inline-block;
        background-color: #0066cc;
        margin: 3vw;
    }

    #p2-bottom {
        height: 100vh;
        width: 100%;
        padding: 10vw 4vw;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        position: relative;
        flex-direction: column;
        z-index: 9;
    }

    #p2-bottom h1 {
        font-size: 10vw;
        width: 100%;
        line-height: 9.5vw;
    }

    #bpart {
        width: 90%;
    }

    #bpart img {
        width: 100%;
        border-radius: 10px;
    }

    #bpart p {
        font-weight: 300;
        margin-top: 5vw;
        font-size: 4.8vw;
        line-height: 6vw;
    }

    #page2 #gooeyshape {
        height: 50vh;
        width: 50vh;
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(to top right, #0066cc, #00d4ff);
        top: 35%;
        left: 10%;
        filter: blur(20px);
        animation: gooey 6s infinite alternate ease-in-out;
    }

    .elem {
        height: 85vh;
        width: 100%;
        position: relative;
        border-bottom: none;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        align-items: flex-start;
        padding: 0vw 4vw 1vw 4vw;
    }

    #media {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 70%;
        border-radius: 10px;
    }

    #media img {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        object-position: center;
    }

    #media video {
        width: 100%;
        height: 100%;
        border-radius: 10px;
        object-fit: cover;
        object-position: center;
    }

    .elem h2 {
        margin-top: -15vw;
        font-size: 8vw;
    }

    .epart {
        margin-top: -20vw;
        width: 10%;
    }

    .elem h3 {
        font-size: 4vw;
        position: relative;
        text-transform: uppercase;
        font-weight: 300;
    }

    .elem h4 {
        position: relative;
        color: #888888;
        text-transform: capitalize;
        font-weight: 200;
        font-size: 4vw;
    }

    .elem .overlay {
        display: none;
    }

    #fixed {
        display: none;
    }

    #cnt2 {
        background-color: black;
        border-radius: 1vw;
        overflow: hidden;
        height: 95vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 10px;
    }

    .cntpart1 {
        display: flex;
        flex-flow: column;
        justify-content: flex-start;
        align-items: flex-start;
        height: 70%;
        width: 150%;
        padding-top: 15vw;
        padding-left: 15vw;
    }

    .cntpart1 h1 {
        border-left: 3px solid darkgray;
        padding: 1vw;
        font-size: 10vw;
        cursor: pointer;
        line-height: 8vw;
        color: darkgray;
    }

    .cntpart1 p {
        color: #fff;
        margin-top: 5vw;
        font-size: 5vw;
        font-weight: 200;
        line-height: 5vw;
        width: 55%;
        height: 30%;
    }

    .cntpart2 {
        height: 60%;
        width: 100%;
        background-size: cover;
        background-position: center;
    }

    #page5 {
        height: 60vh;
        width: 100%;
        background-color: #F0F4F8;
        padding: 10vw 2vw;
        position: relative;
    }

    .swiper {
        width: 100%;
        height: 100%;
    }

    .swiper-slide {
        width: 30%;
        border-left: 1px solid #aeadad;
        padding: 0 4vw;
    }

    .swiper-slide img {
        margin-bottom: 2vw;
    }

    .swiper-slide p {
        width: 180%;
        font-weight: 300;
        font-size: 4.5vw;
    }

    #page6 {
        height: 100vh;
        width: 100%;
    }

    footer {
        position: fixed;
        height: 100vh;
        width: 100%;
        background-color: #0b0c10;
        color: #fff;
        z-index: 9;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: space-evenly;
        flex-direction: column;
        padding: 5vw 3vw 3vw 3vw;
    }

    #foottop {
        width: 100%;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 6vw;
        padding-bottom: 5vw;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #foottop span {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    #foottop span:first-child {
        width: 100%;
        gap: 0;
    }

    #foottop span:first-child a {
        font-size: 10vw;
        padding: 2vw 0;
        padding-left: 5vw;
    }

    #foottop span:nth-child(2) {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 5vw;
        padding-right: 0;
        gap: 6vw;
    }

    #foottop span:nth-child(2) a {
        width: 14vw;
        height: 14vw;
        font-size: 8vw;
    }

    #foottop span:nth-child(2) a i {
        font-size: 7vw;
    }

    footer h1 {
        font-size: 23vw;
    }

    #footlow {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2vw;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 4vw;
    }

    #footlow span {
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }

    #footlow span:first-child {
        order: 2;
    }

    #footlow span:last-child {
        order: 1;
    }

    #footlow h3 {
        font-weight: 200;
        font-size: 5vw;
        padding: 2vw 5vw;
    }

    #loader h1 {
        font-size: 10vw;
    }

    #contact-container {
        flex-direction: column;
        padding-top: 15vw;
        margin-top: 5vh;
    }

    #contact-left {
        width: 100%;
        margin-bottom: 10vw;
    }

    #contact-left h1 {
        font-size: 12vw;
        line-height: 12vw;
    }

    .detail-item h4 {
        font-size: 3.5vw;
    }

    .detail-item p {
        font-size: 4.5vw;
    }

    #contact-right {
        width: 100%;
        padding: 6vw;
    }

    .form-group label {
        font-size: 3.5vw;
    }

    .form-group input, 
    .form-group textarea {
        font-size: 4.5vw;
        padding: 2vw 0;
    }

    .sleek-btn {
        width: 100%;
        padding: 4vw;
        font-size: 4vw;
        border-radius: 10px;
    }

    .sleek-btn .arrow {
        font-size: 5vw;
    }

    .centered-footlow span {
        flex-direction: column;
        gap: 2vw;
    }

    #page4 .submit-btn {
        font-size: 4vw;
        padding: 4vw 8vw !important;
    }

    #page4 h1 {
        font-size: 12vw !important;
    }

    #page4 p {
        font-size: 4.5vw !important;
        width: 100%;
    }
}

@media (max-width: 600px) {
    #loader h1 {
        font-size: 10vw;
    }
}