@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

:root {
    /* Primary Colors (Brand Identity) */
    --IndiNova-Blue: #1E88E5;
    --Nova-Purple: #6A1B9A;
    /* Secondary Colors (Accents & Highlights) */
    --Tech-White: #F5F5F5;
    --Deep-Charcoal: #212121;
    --Highlight-Yellow: #FFC107;
    /* Gradient Options */
    --Blue-Purple-Gradient: linear-gradient(135deg, #1E88E5, #6A1B9A);
    --Dark-Theme-Gradient: linear-gradient(135deg, #212121, #1E88E5);
}

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--Tech-White);
    /* scroll-behavior: smooth; */
}

#cursor {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 50%;
    background: transparent;
    pointer-events: none;
    z-index: 111;
    border: 1px solid #fff;
    transition: all 0.2s ease-out;
    animation: moveCursor1 .5s infinite alternate;
}



/* popup follow form */

.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    z-index: 995;
}

.popup h2 {
    color: white;
}

.popup {
    background: #222;
    padding: 30px;
    border-radius: 12px;
    /* max-width: 400px; */
    width: 80%;
    animation: scaleIn 0.3s ease;
    position: relative;
}

.popup input, textarea{
    outline: 1px solid white;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    color: white;
}

.popup select ::placeholder{
    color: white;
}

.popup select {
    outline: 1px solid white;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: none;
    border-radius: 6px;
    background-color: #222;
    color: white; /* <-- FIX THIS */
}


.popup button {
    background: #8A2BE2;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.popup .close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
    color: #aaa;
}

.popup .close:hover {
    color: white;
}

.message {
    margin-top: 10px;
    color: lightgreen;
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* popup follow form end */

/* header section */
.navbar {
    position: fixed;
    z-index: 999;
    background-color: rgba(245, 245, 245, .8);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
    width: 100%;
    padding: 2%;
    display: flex;
    justify-content: flex-end;
    transition: top 0.3s;
    align-items: center;
    /* Transition effect when sliding down (and up) */
}

.navbar-nav-list {
    display: flex;
    gap: 50px;
    margin-right: 10rem;
}

.nav-list-element {
    list-style: none;
}

.nav-element-item {
    text-decoration: none;
    color: var(--IndiNova-Blue);
    font-size: 14px;
    font-family: Inter;
    transition: .3s all ease;
}

.nav-element-item:hover {
    color: var(--Deep-Charcoal);
}

#header-CTA {
    text-decoration: none;
    font-family: Poppins;
    font-size: 16px;
    background: var(--Deep-Charcoal);
    color: var(--Tech-White);
    padding: .5% 1%;
    border-radius: 10px;
    transition: .3s ease;
}

#header-CTA:hover {
    background-color: var(--Nova-Purple);
}

/* header section End */

/* herosection */
.herosection {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
}

.herosection .logo {
    height: 100vh;
    flex-basis: 50%;
    left: 0;
    color: var(--IndiNova-Blue);
    width: 220px;
    font-size: 75px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
}

.herosection .infosectionContainer {
    height: 100vh;
    flex-basis: 80%;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: center;
}

.herosection .info-sec {
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(5px);

    padding: 7% 5%;
    border-radius: 40px 0 0 40px;
    background: linear-gradient(145deg, #f0f0f0c9, #d8d8d8);
    box-shadow: 20px 20px 41px #aaaaaa,
        -20px -20px 41px #ffffff;
}

.herosection .info-sec .slogan {
    font-family: poppins;
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
}

.herosection .info-sec .heroService {
    font-family: poppins;
    font-size: 44px;
    font-weight: 700;
    line-height: 54px;
    margin-bottom: 10px;
}

.herosection .info-sec .location {
    font-family: inter;
}


.herobtn {
    background-color: var(--Nova-Purple);
    color: var(--Tech-White);
    text-decoration: none;
    font-family: Poppins;
    font-size: 14px;
    border-radius: 20px;
    padding: 1.5%;
    width: 150px;
    text-align: center;
    transition: .3s ease;
}

.herobtn:hover {
    color: var(--Nova-Purple);
    background-color: var(--Highlight-Yellow);
    font-weight: 600;
}

.hero-cta-btns {
    display: flex;
    gap: 40px;

}

.typed {
    color: var(--Nova-Purple);
}

#char2 {
    position: absolute;
    height: 55vh;
    right: -5.2%;
    bottom: -5%;
    filter: drop-shadow(10px 15px 10px rgba(0, 0, 0, .4));
}

#rocket {
    position: absolute;
    height: 40vh;
    right: 20px;
    top: 4%;
    z-index: -2;
}

#man101 {
    position: absolute;
    height: 55vh;
    left: 0;
    bottom: -2%;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    filter: drop-shadow(-10px 5px 20px rgba(0, 0, 0, .4));
}

/* herosection End */
.ourServiceSection {
    height: 300vh;
    width: 100%;
    position: relative;
    display: flex;
    scroll-snap-type: mandatory;
    scroll-snap-align: 0;
}

.ourServiceSection .left {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
}

.ourServiceSection .left .left-title {
    width: 420px;
    font-size: 84px;
    font-family: Space Grotesk, serif;
    font-weight: 800;
    line-height: 88px;
}

.ourServiceSection .left .left-caption {
    width: 420px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 30px;
}

.ourServiceSection .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
}

.ourServiceSection .right .serviceCard p {
    font-family: poppins;
    font-size: 16px;
    font-weight: 700;
}

.ourServiceSection .right .serviceCard h1 {
    font-family: poppins;
    font-size: 35px;
    font-weight: 700;
    line-height: 54px;
}

.ourServiceSection .right .serviceCard {
    width: 350px;
    height: 350px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 175px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.ourServiceSection .right .serviceCard:nth-child(1) {
    background: var(--Nova-Purple);
    color: var(--Tech-White)
}

.ourServiceSection .right .serviceCard:nth-child(2) {
    background: var(--IndiNova-Blue);
    color: var(--Tech-White);
}


.ourServiceSection .right .serviceCard:nth-child(3) {
    background: rgb(186, 113, 245);
}

.ourServiceSection .right .serviceCard:nth-child(4) {
    background: var(--Deep-Charcoal);
    color: var(--Tech-White)
}

.ourServiceSection .right .serviceCard:nth-child(5) {
    background: var(--Highlight-Yellow);
    color: var(--Deep-Charcoal)
}

.away {
    transform-origin: bottom left;
}


/* portfolioSection */
.portfolio-container {
    height: 180vh;
    width: 100%;
    position: relative;
    display: flex;
}

.portfolio-left {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
    background: var(--Tech-White);
    z-index: 990;
}

.left-title {
    width: 420px;
    font-size: 84px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
}

.project-type {
    list-style: none;
    margin-top: 30px;
    width: 20rem;
}

.project-type-item {
    text-decoration: none;
    font-family: poppins;
    font-size: 20px;
    color: var(--IndiNova-Blue);
    transition: .3s ease;
}

.project-type-item:hover,
.project-type-item:active {
    color: var(--Highlight-Yellow);
}

.project-type-item .pti-span {
    margin-left: 10px;
}

.project-type-item:hover .pti-span {
    margin-left: 20px;
    transition: .3s all ease-in-out;
}

.portfolio-container .portfolio-right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
}



.project-card {
    /* border: 1px solid green; */
    width: 350px;
    height: 500px;
    display: grid;
    grid-template-rows: 2fr 1fr 1fr .5fr;
    justify-content: center;
    border-radius: 50px;
    background: #f5f5f5;
    box-shadow: 0 0 20px #d0d0d0,
        -0 -0 20px #ffffff;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 250px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
    box-sizing: border-box;
    padding: 35px;
    align-items: center;
}

.project-card h1 {
    color: var(--Nova-Purple);
    font-family: inter;
    font-weight: 700;
    letter-spacing: 2px;
}

.project-card h6 {
    color: var(--Highlight-Yellow);
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-family: Space Grotesk;
    font-weight: 400;
}

.project-card a {
    text-decoration: none;
    background-color: var(--Deep-Charcoal);
    color: var(--Tech-White);
    text-align: center;
    border-radius: 20px;
    font-family: poppins;
    font-weight: 500;
    padding: 1rem;
    transition: .3s all ease;
}

.project-card a:hover {
    background: var(--Nova-Purple);
}

.project-card img {
    height: 200px;
}


#view-all-project {
    display: flex;
    justify-content: center;
    align-items: center;
}

#view-all-project a {
    padding: 2rem;
    font-size: 1.3rem;
}

#view-all-project a:hover {
    background: var(--Nova-Purple);
    color: var(--Highlight-Yellow);
}

/* portfolioSection end */



/* contact Section */
.contact-container {
    height: 180vh;
    width: 100%;
    position: relative;
    display: flex;
}

.contact-left {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
    background: var(--Tech-White);
    z-index: 990;
}

.contact-container .contact-right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
}

.contact-card {
    /* border: 1px solid green; */
    width: 425px;
    height: 550px;
    display: grid;
    grid-template-rows: 2fr 1fr 1fr .5fr;
    justify-content: center;
    border-radius: 50px;
    background: #f5f5f5;
    box-shadow: 0 0 20px #d0d0d0,
        -0 -0 20px #ffffff;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 250px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
    box-sizing: border-box;
    padding: 50px;
    align-items: center;
}


/* contact Section end */


/* footersection */
.footer {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: inter;
    background: var(--Blue-Purple-Gradient);
    color: var(--Tech-White);
    padding: 2rem;
    font-size: 1rem;
}

/* footersection end */