/* Hero Section Start */

.hero__section__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 75vh;
    width: 100%;
    overflow: hidden;
    background-color: #00000050;
}

.hero__bg__video {
    position: absolute;
    z-index: -1;
    object-fit: cover;
}

@media (min-aspect-ratio: 16/9) {
    .hero__bg__video {
        width: 100%;
        height: auto;
    }
}

@media (max-aspect-ratio: 16/9) {
    .hero__bg__video {
        width: 100%;
        height: 100%;
    }
}

.hero__content__wrapper {
    grid-template-columns: 1fr;
    padding-top: 4rem;
}

.hero__text__wrapper {
    margin: auto 0;
}

.hero__text__wrapper h1 {
    font-size: var(--size-5xl);
}

.hero__text__wrapper p {
    font-size: var(--size-base);
    font-weight: 500;

    max-width: 50ch;
    margin-top: 18px;
    margin-bottom: 30px;
}

.hero__social__icons__wrapper {
    display: none;
}

.downwards__moving__arrow__wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 80px;
}

.top__arrow__icon,
.bottom__arrow__icon {
    font-size: 40px;
    position: absolute;
    color: transparent;
}

@keyframes downMoveArrowAnimation {
    0% {
        margin-top: 0;
        color: transparent;
    }

    /* 25% {
        margin-top: 25px;
        color: var(--clr-green);
    } */

    50% {
        margin-top: 50px;
        color: var(--clr-green);
    }

    /* 75% {
        margin-top: 75px;
        color: var(--clr-green);
    } */

    100% {
        margin-top: 100px;
        color: transparent;
    }
}

.top__arrow__icon {
    animation-name: downMoveArrowAnimation;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bottom__arrow__icon {
    animation-name: downMoveArrowAnimation;
    animation-duration: 1.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-delay: 0.8s;
}

/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .hero__section__wrapper {
        height: 100vh;
    }
    
    .hero__content__wrapper {
        display: grid;
        grid-template-columns: 2fr 1fr;
        /* border: 1px solid red; */
        width: 100%;
    }

    .hero__text__wrapper h1 {
        font-size: var(--size-5xl);
    }

    .hero__social__icons__wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-end;
        gap: 1.5rem 0;
    }

    .hero__social__icons__wrapper i {
        width: 50px;
        height: 50px;
        background-color: var(--clr-white);
        color: var(--clr-black);
        font-size: var(--size-xl);
        border-radius: 4rem;
        border: 2px solid var(--clr-white);

        display: flex;
        justify-content: center;
        align-items: center;
        margin: auto 0;

        transition: all 0.3s ease;
    }

    .hero__social__icons__wrapper i:hover {
        background: transparent;
        color: var(--clr-green);
        border-color: var(--clr-green);
        transform: scale(1.2);
    }
}

/* lg */
@media (min-width: 1024px) {
    .hero__text__wrapper h1 {
        font-size: var(--size-5xl);
    }
}

/* xl */
@media (min-width: 1280px) {
    .hero__text__wrapper h1 {
        font-size: var(--size-6xl);
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/* Hero Section End */
/* Services Section Start */

.services__section {
    text-align: center;
}

.services__section__grid {
    display: grid;
    /* grid-template-rows: repeat(2, 325px); */
    grid-template-columns: repeat(2, minmax(100px, 225px));
    gap: 20px;
    text-align: center;
    justify-content: center;
}

.services__section .service__box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--clr-black);
    border-radius: 1rem;
    padding: 1.5rem 0;
    transition: all 0.3s;
}

.services__section .service__box:hover {
    /* background-color: #0b1300; */
    background-color: #000c17;
    border: 2px solid var(--clr-blue);
    transform: scale(1.1);
}

.services__section .service__box img {
    width: 140px;
    height: 140px;
    object-fit: fill;
    padding-bottom: 20px;
}

.services__section .service__box h2 {
    font-size: var(--size-xl);
    font-weight: 500;
    text-align: center;
    color: var(--clr-green);
}

.services__section .service__box p {
    font-size: var(--size-xs);
    font-weight: 300;
    color: var(--clr-white);
}

/* xs */
/* @media (min-width: 475px) {
} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    .services__section__grid {
        display: grid;
        grid-template-rows: repeat(2, 325px);
        grid-template-columns: repeat(auto-fit, minmax(100px, 325px));
        gap: 60px;
        text-align: center;
        justify-content: center;
    }

    .services__section .service__box h2 {
        font-size: var(--size-3xl);
        font-weight: 500;
        text-align: center;
        color: var(--clr-green);
    }
    
    .services__section .service__box p {
        font-size: var(--size-base);
        font-weight: 300;
        color: var(--clr-white);
    }
}

/* lg */
/* @media (min-width: 1024px) {} */

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* Services Section End */
/* About Us Section Start */

.about__us {
    display: grid;
    align-items: center;
}

/* .about__us__text__wrapper p {
    max-width: 50ch;
} */


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {
    .about__us {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* .about__us__text__wrapper {
        width: 520px;
    } */
/* 
    .about__us__text__wrapper p {
        max-width: 50ch;
    } */

}

/* lg */
@media (min-width: 1024px) {

    /* .about__us {
        justify-content: space-between;
    } */
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */


/* About Us Section End */
/* Our Work Section Start */

.portfolio__section {
    text-align: center;
}

.portfolio__mini__grid {
    display: grid;
    gap: 4rem;
}

.portfolio__card {
    border-radius: 1rem;
    overflow: hidden;
    text-align: start;
    padding-bottom: 2rem;
    /* background-color: #0a0a0a; */
    background-color: #000c17;
    border: 2px solid var(--clr-black);
    /* box-shadow: 0px 0px 25px #ffffff25; */

    transition: all 0.3s;
}

.portfolio__card:hover {
    background-color: #000c17;
    border: 2px solid var(--clr-blue);
    box-shadow: 0px 0px 25px #ffffff25;
}

.portfolio__card__text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 1rem;
    padding-top: 1.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.portfolio__card__heading {
    font-size: var(--size-2xl);
    color: var(--clr-green);
    font-weight: 500;
}

.portfolio__card__description {
    font-size: var(--size-sm);
    color: var(--clr-white);
    font-weight: 300;
    text-align: justify;

    padding-bottom: 0.5rem;
}

/* .portfolio__card__service__name {
    font-size: var(--size-base);
    color: var(--clr-white);
    font-weight: 400;
    background-color: var(--clr-blue);
    padding: 8px 20px 8px 20px;
    border-radius: 1rem;

    transition: all 0.3s;
}

.portfolio__card__service__name:hover {
    cursor: pointer;
    opacity: 0.8;
} */




/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .portfolio__mini__grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 4rem 1rem;
    }

    .portfolio__card__description {
        font-size: var(--size-xs);
    }
}

/* lg */
@media (min-width: 1024px) {

    .portfolio__mini__grid {
        display: grid;
        gap: 4rem 2rem;
    }

    .portfolio__card__description {
        font-size: var(--size-sm);
    }
}

/* xl */
/* @media (min-width: 1280px) {} */

/* 2xl */
/* @media (min-width: 1536px) {} */








/* Contact Us Section Start */

.contact__us__section__wrapper {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 9rem;
}

.contact__us {
    background-color: #000c17;
    border-radius: 38px;
    padding: 90px 90px 90px 90px;

    overflow: hidden;
}

.contact__us .section__heading {
    text-align: center;
}

.contact__us__grid {
    display: grid;
    gap: 3.5rem;
    align-items: center;
    justify-content: center;
    justify-items: center;
}

.contact__us__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* border: 2px solid green; */
}

.contact__details__box {
    width: 175px;
    text-align: center;
    padding: 1.5rem;
    border: 2px solid #000c17;
    border-radius: 1rem;
    transition: all 0.3s;
}

.contact__details__box:hover {
    cursor: pointer;
    background-color: #000c17;
    border: 2px solid var(--clr-blue);
    transform: scale(1.1);

}

.contact__details__box .fa-solid {
    font-size: var(--size-4xl);
    padding-bottom: 20px;
    color: transparent;
    -webkit-text-stroke: 3px var(--clr-white);
    transition: -webkit-text-stroke 0.3s;
}

.contact__details__box:hover .fa-solid {
    -webkit-text-stroke: 3px var(--clr-blue);
}

.contact__details__box h2 {
    font-size: var(--size-1xl);
    font-weight: 600;
    color: var(--clr-green);
}


.contact__details__box p {
    font-size: var(--size-xs);
    font-weight: 300;
    color: var(--clr-white);
}


/* .contact__us__googlemap {
    border: 2px solid green;
} */

.contact__us__googlemap__iframe {
    width: 100%;
    height: 350px;
    border-radius: 1.5rem;
}


/* xs */
/* @media (min-width: 475px) {} */

/* sm */
/* @media (min-width: 640px) {} */

/* md */
@media (min-width: 768px) {

    .contact__details__box {
        width: 235px;
    }

    .contact__details__box .fa-solid {
        font-size: var(--size-7xl);
    }

    .contact__details__box h2 {
        font-size: var(--size-2xl);
    }
    
    
    .contact__details__box p {
        font-size: var(--size-base);
    }

    .contact__us__googlemap {
        width: 100%;
    }

    .contact__us__googlemap__iframe {
        height: 450px;
        border-radius: 1.5rem;
    }
    
}

/* lg */
@media (min-width: 1024px) {

    .contact__us__grid {
        grid-template-columns: 1fr 375px;
        gap: 0rem;
        align-items: center;
    }

    .contact__details__box {
        width: 200px;
    }

    .contact__us__googlemap__iframe {
        width: 100%;
        height: 350px;
        border-radius: 1.5rem;
    }
}

/* xl */
@media (min-width: 1280px) {

    .contact__us__grid {
        grid-template-columns: 1fr 550px;
    }

    .contact__details__box {
        width: 235px;
    }

    .contact__us__googlemap__iframe {
        width: 550px;
        height: 450px;
        border-radius: 1.5rem;
    }
}

/* 2xl */
/* @media (min-width: 1536px) {} */


/* Contact Us Section End */

