@font-face {
    font-family: ThunderLC;
    src: url(/fonts/thunder-bold-lc.ttf);
}

:root {
    --ThunderFont: ThunderLC;
    --ChillaxFont: 'Chillax', sans-serif;
    --AvertaFont: Averta;
}

/* --------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a,
p,
h1,
h2,
h3 {
    text-decoration: none;
    font-family: var(--ThunderFont);
    color: black;

}

ul {
    list-style: none;
}

:root {
    --primaryFont: "Lato", serif;
    --headingFont: "Bebas Neue", serif;
}

html {
    scroll-behavior: smooth;
}

video, iframe {
    pointer-events: none; /* Prevent interaction */
}

/* ------------------------------- */

body {
    overflow-x: hidden !important;
    width: 100vw;
    box-sizing: border-box;
    background-color: #FFFFFF;
}


/* header ------------------------ */
header {
    height: 11vh !important;
    width: 100vw;
    overflow-x: hidden;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0vw 4vw !important;
}



.logoContainer {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center !important;
    z-index: 10001;
    /* border: 1px solid red; */
    margin-top: 0.3vw;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;

}


.logoContainer img {
    /* position: absolute; */
    /* top: -2.5vw; */
    /* left: 3vw; */
    margin-left: -1.1vw;
    width: 17vw !important;
    margin-bottom: 0.2vw;
    transition: opacity 0.1s ease-in-out;
    /* Smooth fade */
    opacity: 1;
    /* border: 1px solid red; */
}

/* Hide logo initially (when switching) */
.logoContainer img.hidden {
    opacity: 0;
}


.menuContainer {
    width: 63%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 2vw 0 0;
}

.menuContainer nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuContainer nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuContainer nav a {
    font-size: 1vw;
    font-weight: 500;
    text-transform: uppercase;
    font-family: var(--primaryFont);
}


/* ------------------------------- Mobile Styles */


/* Button ("Menu") */
/* Menu Button */
.menuIcon {
    font-size: 6vw;
    cursor: pointer;
    position: absolute;
    top: 10vw;
    right: 8vw;
    transform: translateY(-50%);
    z-index: 1001;
    text-transform: uppercase;
}

.menuIcon p {
    font-size: 6vw;
    cursor: pointer;
    z-index: 1001;
    text-transform: uppercase;

}

/* Full-screen menu (Initially Hidden) */
#navMenu {
    position: fixed;
    top: 0;
    left: -100vw;
    /* Hide initially */
    width: 100vw;
    height: 100vh;
    /* background-color: rgba(0, 0, 0, 0.9); Dark overlay */
    background-color: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: left 0.4s ease-in-out;
    /* Smooth slide-in effect */
    z-index: 10000;
}

/* Show menu when active */
#navMenu.active {
    left: 0;
}

/* Menu items */
#navMenu ul {
    height: 80dvh;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    padding-left: 7vw;
}

#navMenu ul li {
    margin: 5px 0;
}

#navMenu ul li a {
    color: white;
    text-decoration: none;
    font-size: 13vw;
    font-weight: 600;
    /* font-weight: 500; */
    text-transform: uppercase;
    font-family: var(--AvertaFont);
    text-align: left;
}

/* .menuContainer nav a{
    
} */

/* Close button (Initially hidden) */
#closeMenu {
    position: fixed;
    top: 10vw;
    right: 8vw;
    transform: translateY(-50%);
    font-size: 5vw;
    cursor: pointer;
    color: white;
    opacity: 0;
    /* Hide initially */
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
    font-family: var(--AvertaFont);
}

#closeMenu p {
    font-size: 6vw;
    cursor: pointer;
    z-index: 1001;
    text-transform: uppercase;
}

/* Show close button with fade-in when menu is active */
#navMenu.active #closeMenu {
    opacity: 1;
    visibility: visible;
}

/* Hide elements initially on mobile */
#menuIcon,
#navMenu {
    display: none;
}


.emailContainer {
    /* border: 1px solid red; */
    height: 15dvh;
    padding-left: 7vw;
    display: flex;
    flex-direction: column;
    justify-content: end;

}

.emailContainer p {
    color: #fff !important;
    font-family: var(--AvertaFont);
    font-size: 8vw;
    font-weight: 100;
}


/* Mobile Navigation */
@media (max-width: 768px) {
    header {
        height: 9vh !important;
        position: relative;
    }

    #menuIcon,
    #navMenu {
        display: inline-block;
    }

    .menuIcon p {
        display: block;
        /* Show menu icon */
        font-size: 5vw;
        font-weight: 600;
        font-family: var(--AvertaFont);
        top: 66%;
        right: 10%;
    }

    .logoContainer {
        padding-left: 3vw;
    }

    .logoContainer img {
        position: absolute;
        width: 50vw !important;
        top: -2.5vw !important;
        left: 3vw !important;
        margin-bottom: 0vw;
        /* border: 1px solid red; */
    }

    .menuContainer {
        position: fixed;
        top: 0;
        right: -100%;
        width: 60%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.9);
        transition: right 0.4s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .menuContainer nav ul {
        flex-direction: column;
        gap: 5vw;
        text-align: center;
    }

    .menuContainer nav ul li {
        margin: 3vw 0;
    }

    .menuContainer nav ul li a {
        font-size: 5vw;
        color: white;
        font-weight: bold;
    }

    .menuContainer.show {
        right: 0;
    }
}

/* header ------------------------ */








/* header ------------------------ */
header {
    height: 11vh;
    width: 100vw;
    overflow-x: hidden;
    /* background-color: antiquewhite; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2.3vw;
}

.logoContainer {
    width: 20%;
    height: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.logoContainer img {
    width: 13vw;
}

.menuContainer {
    width: 63%;
    height: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 2vw 0 0;
}

.menuContainer nav {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menuContainer nav ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menuContainer nav a {
    font-size: 1vw;
    font-weight: 600;
    text-transform: uppercase;
    font-family: var(--AvertaFont);
}

/* .menuContainer nav a:hover{
    transform: scale(1.2) !important;
} */
/* header ------------------------ */






/* Hero Section ------------------------ */
.heroSection {
    height: 80vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 3.5vw;
    position: relative;
    margin-bottom: 15vw;
}

.mainHeading {
    width: 100%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* overflow: hidden; */
    margin-top: 2vw;

}

.mainHeading span {
    /* transform: translate(-0.9vw, 1.8vw); */
    font-family: var(--ThunderFont);
    font-size: 33.8vw;
    font-weight: 500;
    letter-spacing: -10PX;
}

.miniHeading {
    width: 70%;
    height: 20%;
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: -100px;
}

.miniHeading span {
    font-family: var(--ThunderFont) !important;
    font-size: 5vw;
    font-weight: 600;

}

.mainCircle {
    position: absolute;
    top: 41%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 32vw;
    height: 32vw;
    border-radius: 50%;
    background-color: #ffffff;
    /* Color of the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    border: 1px solid black;
    overflow: hidden;
}

.mainCircle video {
    width: 60%;
    height: 60%;
    z-index: 12;
}

.mainCircle img {
    width: 95%;
    height: 95%;
    border-radius: 50%;
    transform: translate(-0.2vw, -0.5vw);
    z-index: 11;
    position: absolute;
    animation: circleTextAnimation 25s infinite linear;
}

@keyframes circleTextAnimation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


@media (max-width: 500px) {
    .heroSection {
        margin-bottom: 0vw;
    }

    .mainCircle {
        position: relative;
        top: 0%;
        left: 0%;
        -ms-transform: translate(0%, 0%);
        transform: translate(0%, 0%);
        width: 80vw;
        height: 80vw;
        margin-bottom: 5vw;
    }

    .mainHeading {
        width: 100%;
        height: 30%;
        margin-top: 0;
    }

    .mainHeading span {
        font-size: 42vw;
        letter-spacing: 0px;
    }

    .miniHeading {
        width: 70%;
        height: 3%;
        align-items: start;
        margin-top: -25px;
    }

    .miniHeading span {
        font-size: 7vw;
    }
}

/* Hero Section ------------------------ */





/* Section 2 ------------------------ */
.section2 {
    width: 100vw;
    height: 20vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3.5vw;
    position: absolute;
    bottom: -13%;
}

.section2 p {
    width: 25%;
    font-family: var(--AvertaFont);
    font-size: 1.4vw;
}

.s2Circle {
    width: 4vw;
    height: 4vw;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.4s;
    cursor: pointer;
}

.s2Circle img {
    width: 40%;
}

.s2Circle:hover {
    transform: scale(1.1);
}

/* Remove anchor focus outline (optional) */
.scroll-link {
    text-decoration: none;
    outline: none;
}

@media (max-width: 500px) {
    .section2 {
        height: 20vh;
        justify-content: end;
        align-items: start;
        flex-direction: column;
        padding: 0 5vw;
        bottom: -25%;
        gap: 10%;
    }

    .section2 p {
        width: 80%;
        font-size: 5vw;
    }

    .s2Circle {
        width: 10vw;
        height: 10vw;
    }

    .s2Circle img {
        width: 50%;
    }
}

/* Section 2 ------------------------ */





/* Video Section ------------------------ */
.videoSection {
    width: 100vw;
    height: 108vh;
    margin-top: 7vw;
    padding: 0 3.5vw;
}

.videoCont {
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    transition: width 0.1s linear;
}

.videoCont video {
    width: 100%;
    height: 100%;
}

@media (max-width: 500px) {
    .videoSection {
        height: fit-content;
        margin-top: 50vw;
    }
}

/* Video Section ------------------------ */




/* About Section ------------------------ */
.aboutSection {
    width: 100vw;
    display: flex;
    padding: 0 3.5vw;
    flex-direction: column;
    /* border: 1px solid red; */
}

.aboutUp {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.aboutUp h1 {
    font-size: 5vw;
    font-weight: 700;
    /* line-height: 5vw; */
    font-family: var(--ThunderFont);
    text-transform: uppercase;
    text-align: left;
}

.aboutDown {
    width: 95%;
    display: flex;
    justify-content: end;
    align-items: center;
    margin-bottom: 5vw;
}

.innerAboutDown {
    width: 75%;
    height: 100vh;
    font-size: 2vw;
    display: flex;
    justify-content: center;
    gap: 5%;
    padding: 0 5vw 0 0;
    flex-direction: column;
}

.aPara {
    font-family: var(--AvertaFont);
    font-weight: 500;
    line-height: 3.2vw;
    font-size: 2.2vw;
}

.br-mobile {
    display: flex;
}

.desktopBr {
    display: none;
}

@media (max-width: 500px) {
    .desktopBr {
        display: flex;
    }

    .br-mobile {
        display: none;
    }

    .aboutSection {
        padding: 20vw 3.5vw 0;
    }

    .aboutUp h1 {
        font-size: 9vw;
    }

    .aboutDown {
        width: 95%;
        display: flex;
        justify-content: start;
        align-items: end;
        margin-bottom: 0vw;
    }

    .innerAboutDown {
        width: 100%;
        height: 80vh;
        gap: 5%;
        padding: 0 0vw 0 0;
    }

    .aPara {
        line-height: 5vw;
        font-size: 4.7vw;
    }
}

/* About Section ------------------------ */





/* Service Section ------------------------ */
.Service-Section {
    height: 102vh;
    width: 100vw;
    background-color: #0C0C0C;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    padding: 8vw 4vw 8vw 4vw;
}

.Services-elements {
    width: 23vw;
    position: absolute;
    right: 7%;
    top: 10%;
    animation: to-and-fro 1.4s ease-in-out infinite alternate;
}

@keyframes to-and-fro {
    0% {
        transform: translateY(-4%);
    }

    100% {
        transform: translateY(4%);
    }
}


.colorwhite h1 {
    color: white !important;
    /* border: 1px solid red; */
    text-transform: uppercase;
    font-size: 6vw;
    letter-spacing: 0.1vw;
}

.horizontal-Scroll {
    /* border: 1px solid red; */
    height: 60%;
    width: 200vw;
    gap: 3vw;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-right: 8vw;

}

.Service-Box {
    height: 78%;
    width: 20%;
    border: 2px solid #767676;
    border-radius: 40px;
}

.box-white {
    background-color: #fff;
    border-color: #fff;
}

.box-white .s-inner h1 {
    color: #000 !important;
}

.s-inner {
    height: 50%;
    width: 100%;
    position: relative;

}

.s-inner img {
    width: 52%;
    float: right;
    padding: 5% 6% 0 0;
}

.s-inner h1 {
    color: white;
    font-size: 3.4vw;
    text-wrap: nowrap;
    position: absolute;
    bottom: 25%;
    left: 8%;
}

#small-font {
    font-size: 3.1vw !important;
}


/* Responsive (services) */
@media (max-width: 500px) {

    .Service-Section {
        height: 74vh !important;
        overflow-x: hidden;

    }

    .Services-elements {
        width: 53vw;
        position: absolute;
        right: 10%;
        top: 27%;
        animation: to-and-fro 1.4s ease-in-out infinite alternate;
    }

    .colorwhite h1 {
        margin: 4vw 0 0 3vw;
        font-size: 10vw;
    }

    .s-inner img {
        width: 58% !important;
        float: right;
        padding: 8% 8% 0 0;
    }

    .horizontal-Scroll {
        height: 42%;
        width: 320vw;
        margin-bottom: 3vw;
    }

    .Service-Box {
        border-radius: 20px;
    }

    .s-inner h1 {
        font-size: 5.4vw;
        bottom: 25%;
        left: 8%;
    }
}

/* Responsive (services) */

/* Service Section ------------------------ */









/* Portfolio Section ------------------------ */
.Portfolio_Section {
    min-height: 100vh;
    width: 100vw;
    overflow-x: hidden;
    /* background-color: antiquewhite; */
    padding: 7vw 4vw 4vw 4vw;
    margin-bottom: 5vw;
    overflow-y: hidden;
    position: relative;
}

.page-Main-Heading-Container {
    height: 15vh;
    width: 100%;
    /* border: 1px solid red; */
    display: flex;
    justify-content: start;
    align-items: center;
}

.Page-Main-Heading {
    font-size: 6vw;
}


/* row 1 */
.Projects-row {
    height: 68vh;
    width: 100%;
    /* border: 1px solid blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3vw;
    margin-top: 3vw;
}

.left-Project {
    height: 90%;
    width: 58%;
    border-radius: 30px;
    background-color: gray;

}

.right-Project {
    height: 90%;
    width: 42%;
    background-color: wheat;
    border-radius: 30px;

}

/* row inverted */
.Projects-row2 {
    flex-direction: row-reverse;
}

.protfolio-1 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
}

.protfolio-2 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 30px;
}

.protfolio-3 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
}

.protfolio-4 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
}

.protfolio-5 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
}

.protfolio-6 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: 30px;
}



/* responsiveness for portfolio */
@media (max-width: 500px) {
    .Projects-row {
        height: 70vh;
        /* width: 100%; */
        /* border: 1px solid blue; */
        /* display: flex; */
        flex-direction: column;
        /* justify-content: space-between; */
        /* align-items: center; */
        /* gap: 1vw; */
        /* margin-top: 3vw; */
        margin-bottom: 5vw !important;
    }

    .Page-Main-Heading {
        font-size: 10vw;
    }

    .left-Project {
        height: 42% !important;
        width: 100%;
        border-radius: 35px;
        border: none;
    }

    .right-Project {
        height: 55%;
        width: 100%;
        border-radius: 35px;

    }

}

/* responsiveness for portfolio */






/* Portfolio Section ------------------------ */



/* footer ----------------------------------- */
.LineBreak {
    width: 100%;
    height: 2.5px;
    background-color: black;
    border-radius: 20px;
    margin-bottom: 2vw;
}

footer {
    width: 100%;
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    /* background-color: gainsboro; */
    /* border: 1px solid red; */
    padding: 0 4vw;
}

.Footer-inner-row {
    height: 90%;
    width: 100%;
    /* border: 1px solid blue  ; */
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 3vw;
    padding: 2.7vw 3.5vw;

}

.Footer-inner-row h1 {
    width: 100%;
    font-size: 6vw !important;
    text-wrap: nowrap;
    font-weight: 200;
    /* letter-spacing: -10px; */
    /* border: 1px solid yellow; */

}

.page-Main-Heading-Container-footer {
    width: 50%;
    align-items: start !important;
    /* border: 1px solid blueviolet; */
}

.Contact-Form-Container {
    /* border: 1px solid blue; */
    width: 45%;
}



/* Buttom Most Footer */
.ButtomMostFooter {
    max-height: 75vh;
    width: 100vw;
    background-color: #000;
    padding-top: 3vw;
    overflow-y: hidden;
}

.footerContainer1 {
    /* border: 1px solid red; */
    height: 35vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.smallContainer1 {
    height: 100%;
    width: 55%;
    /* border: 1px solid yellow; */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 4px;
    padding: 2% 0 0 4vw;
}

.smallContainer1 p {
    color: #fff !important;
    font-family: var(--AvertaFont);
    font-size: 1.8vw;
    font-weight: 200;
}

.smallContainer2 {
    height: 100%;
    width: 15%;
    /* border: 1px solid yellow; */
    padding: 2% 0 0 2%;
    display: flex;
    flex-direction: column;

}

.smallContainer2 ul,
.smallContainer3 ul {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}

.smallContainer2 a,
.smallContainer3 a {
    color: #fff;
    font-size: 1.2vw;
    font-family: var(--AvertaFont) !important;
    font-weight: 200;
    text-transform: uppercase;
}

.smallContainer3 {
    height: 100%;
    width: 15%;
    padding: 2% 0 0 2%;

    /* border: 1px solid yellow; */
}

.smallContainer4 {
    height: 100%;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: start;
    /* border: 1px solid yellow; */
    padding-top: 1.5vw;
}

.smallContainer4 video {
    width: 70%;
}

.footerContainer2 {
    /* border: 1px solid red; */
    height: 40%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
    position: relative;
}

.footerContainer2 h1 {
    text-wrap: nowrap;
    font-size: 25vw;
    color: #e1e1e1;
    height: fit-content;
    letter-spacing: 0.3vw;
    /* position: relative;
    bottom: 0em; */
    transform: scale(1, 0.8);
    /* border: 1px solid red; */
    /* line-height: 10px; */

}

/* responsiveness for footer */

/* responsiveness for footer */






/* footer ----------------------------------- */

::-webkit-scrollbar {
    display: none;
}