@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles Start */

html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
}

a,
input,
button,
select,
textarea {
    font-family: inherit;
}

a {
    text-decoration: none;
}

a:focus,
input:focus,
button:focus,
textarea:focus {
    outline: none;
}

button {
    cursor: pointer;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
    font-family: "Cormorant Garamond", serif;
}

p,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* Global Styles end*/


/*-------------------------------------------
================ Header Start =============
-------------------------------------------*/
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.menu li a {
    display: inline-block;
    color: #fff;
    transition: .4s;
    font-size: 22px;
    font-family: "Cormorant Garamond", serif;
    position: relative;
}

.menu li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: 0.4s;
}

.menu li a:hover::after {
    width: 0;
    left: 50%;
}

.menu li a:hover {
    text-decoration: none;
}

.logos {
    gap: 40px;
}

.logos li a img {
    max-height: 45px;
}

/*social-media*/
.header .social-media {
    height: 60px;
}

.social-media li a {
    display: inline-block;
    color: #000;
    font-size: 16px;
    margin-bottom: 8px;
    border: 1px solid transparent;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    border-radius: 50%;
    transition: .4s;
}

.social-media li a:hover {
    background-color: #1f1f1f6b;
    color: #fff;
}

/*-------------------------------------------
================ Header End =============
-------------------------------------------*/


/*-------------------------------------------
================ Hero Area Start =============
-------------------------------------------*/
.hero-area {
    background-image: url(../images/bgs-04.png);
    background-position: center top;
    padding-top: 70px;
    background-attachment: fixed;
    height: 100vh;
    background-size: cover;
    color: #000000;
}

.hero-area h1 {
    color: #fff;
    font-size: 45px;
}

.hero-area .down {
    position: absolute;
    bottom: 30px;
    color: #fff;
    transition: .4s;
    height: 40px;
    width: 40px;
    border: 1px solid;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    animation: floatAnimation 3s ease-in-out infinite;
}

.hero-area .down:hover {
    background-color: #fff;
    color: #000;
    border-color: #fff;
}


@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(-10px) translateY(0);
    }

    50% {
        transform: translateY(10px) translateY(0);
    }
}


.hero-bottom-btn.button-style {
    /*    position: absolute;*/
    margin-top: 30px;
    bottom: 30px;
    border-color: #fff;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 500px;
}

.hero-bottom-btn.button-style:hover {
    border-color: #000;
}


.hero-area h2 {
    font-size: 105px;
    margin-bottom: 5px;
}

.hero-area .section-sub {
    font-size: 24px;
    max-width: 840px;
    margin: auto;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero-paragraph {
    max-width: 1020px;
    margin: 0 auto;
}




/*-------------------------------------------
================ Hero Area End =============
-------------------------------------------*/


/*Video section*/
.video-section {
    background-image: url(../images/hero-bg.jpeg);
    background-position: center top;
    padding-top: 70px;
    padding-block: 70px;
    background-size: cover;
    color: #fff;
    text-align: center;
    min-height: 536px;
}

/*Hero video */

.hero-video {
    position: relative;
    width: 100px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
    animation: pulse 2s infinite;
    /*    margin-top: 100px;*/
    margin: 0 auto;
}

.hero-video i {
    font-size: 70px;
    color: #fff;
    transition: transform 0.3s ease;
}

.hero-video:hover i {
    transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Popup Modal */
.popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 100%;
    height: auto;
}

.close-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

.close-btn:hover {
    background-color: rgba(255, 0, 0, 0.8);
}

iframe#videoFrame {
    width: 100%;
    height: 450px;
}

/*Hero video end*/

/*-------------------------------------------
================ Seciencs Start =============
-------------------------------------------*/

.seciencs {
    padding: 70px 0;
    background-image: url(../images/abstract.webp);
    background-size: cover;
    background-position: center;
}



.seciencs h3 {
    font-size: 50px;
    margin-bottom: 20px;
    margin-top: 90px;
    text-transform: uppercase;
    font-weight: 600;
}

.button-style {
    display: inline-block;
    height: 60px;
    width: 340px;
    border: 2px solid #000;
    text-align: center;
    line-height: 60px;
    color: #000;
    font-size: 20px;
    transition: .4s;
    border-radius: 30px;
    text-transform: uppercase;
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
}

.button-style:hover {
    color: #fff;
    background-color: #000;
}

.brand-logo {
    margin: 70px 0;
    gap: 60px 40px;
}

.brand-logo li {
    width: 17%;
}

.brand-logo li a {
    display: inline-block;
    transition: .4s;
}

.brand-logo li a:hover {
    transform: scale(0.95);
}

.brand-logo li a img {
    max-height: 90px;
}

.brand-logo li:nth-child(6) a img {
    max-height: 55px;
}

/*-------------------------------------------
================ Seciencs End =============
-------------------------------------------*/



/*------------------------------------------------
================ Testimonials Start =============
------------------------------------------------*/

.testimonial {
    padding: 70px 0;
    background-image: url(../images/testimonial-bg.jpg);
    background-size: cover;
    background-position: center;
    min-height: 100vh;
}

.testimonial h2 {
    font-size: 55px;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
}

.testimonial .left p {
    font-size: 16px;
    max-width: 555px;
    margin-bottom: 30px;
    color: #fff;
}

.testimonial-text .swiper-slide {
    background-color: transparent;
    width: 100%;
    text-align: left;
    height: auto;
    display: flex;
    margin: 0;
    justify-content: flex-start;
}

.testimonial-text .swiper-slide p {
    font-size: 15px;
    max-width: 555px;
    margin-bottom: 30px;
    color: #fff;
    padding-right: 30px;
}

.single-testimonial {
    width: 100%;
    height: 515px;
    background-color: #333;
    background-size: 140%;
    background-position: center center;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .4s;
    z-index: 1;
    overflow: hidden;
}

.single-testimonial:after {
    content: "";
    width: 100%;
    height: 160px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.85) 100%);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.single-testimonial:hover {
    box-shadow: 0px 0px 16px #00000036;
    background-size: 130%;
}

.testimonial_img_1 {
    background-image: url(../images/testimonials/1.jpg);
}

.testimonial_img_2 {
    background-image: url(../images/testimonials/2.jpg);
}

.testimonial_img_3 {
    background-image: url(../images/testimonials/3.jpg);
}

.testimonial_img_4 {
    background-image: url(../images/testimonials/4.jpg);
}

.testimonial_img_5 {
    background-image: url(../images/testimonials/5.jpg);
}

.testimonial_img_6 {
    background-image: url(../images/testimonials/6.jpg);
}

.testimonial_img_7 {
    background-image: url(../images/testimonials/7.jpg);
}

.single-testimonial p {
    color: #fff;
    position: absolute;
    left: 30px;
    bottom: 25px;
    font-weight: 600;
    font-size: 15px;

    transition: .4s;
}

.single-testimonial:hover p {
    letter-spacing: 2px;
    left: 50px;
    bottom: 40px;
}

.play-button {
    width: 100px;
    height: 100px;
    background: black;
    clip-path: polygon(30% 20%, 30% 80%, 80% 50%);
    cursor: pointer;
    transition: .4s;
}

.single-testimonial:hover .play-button {
    transform: scale(1.1);
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper-slide {
    width: 72%;
    background-color: #fff;
    border-radius: 10px;
    margin: 10px 0px;
}

.nav-arrow {
    position: relative;
    width: 175px;
    top: 25px;
    left: -10px;
}

.nav-arrow div {
    border-radius: 50%;
    border: 2px solid #fff;
    color: #fff;
    height: 65px;
    width: 65px;
}

.nav-arrow div:after {
    font-size: 32px;
}

/*Popup*/

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.close {
    position: absolute;
    top: -35px;
    right: -20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

.popup-inner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65vw;
    height: auto;
}

.popup video {
    width: 100%;
    max-width: 100%;
    max-height: 88vh;
}

/*---------------------------------------------
================ Testimonials End =============
---------------------------------------------*/




/*-----------------------------------------
================ Footer Start =============
-------------------------------------------*/

.footer {
    padding: 70px 0 100px;
    background-image: url(../images/abstract.webp);
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
}

.footer-inner {
    background-image: url("../images/footer-circles.png");
    background-size: 100% 100%;
    height: 630px;
    width: 630px;
    margin: 0 auto;
    background-position: center center;
}


.fototer-menu {
    gap: 50px;
}

.fototer-menu li a {
    color: #000;
    font-size: 18px;
    font-weight: 500;
    position: relative;
}

.fototer-menu li a:before {
    content: "●";
    position: absolute;
    left: -7px;
    top: 3px;
    color: transparent;
    font-size: 10px;
    transition: 0.4s;
}

.fototer-menu li a:hover:before {
    color: #000;
    left: -10px;
}

.footer .social-media {
    gap: 30px;
    margin-bottom: 20px;
    margin-top: 100px;
}

.footer .social-media li a {
    color: #000;
    font-size: 22px;
    height: 40px;
    width: 40px;
    line-height: 40px;
    position: relative;
}

.footer .social-media li a:hover {
    border-color: #000;
    background-color: transparent;
}

.footer-logo {
    margin-top: -60px;
}

.footer-logo .logos li a img {
    max-height: 30px;
}


/*-----------------------------------------
================ Footer End =============
-------------------------------------------*/




/*---------------------------------------------
================ Responsive Start =============
----------------------------------------------*/
@media only screen and (max-width: 1199.98px) {
    .single-testimonial {
        height: 470px;
    }

    .hero-area h2 {
        font-size: 80px;
    }

    .hero-area .section-sub {
        font-size: 20px;
    }
}

@media only screen and (max-width: 991.98px) {
    .slider {
        margin-top: 85px;
    }

    .hero-area {
        padding-top: 110px;
        height: auto;
        padding-bottom: 60px;
    }

    .hero-area h2 {
        font-size: 70px;
    }
}


@media only screen and (max-width: 767.98px) {

    .menu li a {
        font-size: 20px;
    }

    .logos {
        gap: 20px;
    }

    .logos li a img {
        max-height: 35px;
    }

    .social-media li a {
        font-size: 14px;
        margin-bottom: 4px;
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .hero-area {
        background-position: right;
    }

    .hero-area h2 {
        font-size: 53px;
    }

    .testimonial h2,
    .seciencs h2 {
        font-size: 35px;
    }

    .seciencs h3 {
        font-size: 32px;
    }


    .single-testimonial {
        height: 440px;
    }

    .footer-logo {
        margin-top: 40px;
    }


    .footer-inner {
        background-size: contain;
        height: 100%;
        width: 100%;
        background-repeat: no-repeat;
    }

    .footer {
        padding: 40px 0 100px;
    }

    iframe#videoFrame {
        height: 250px;
    }


}


@media (max-width: 575.98px) {
    .popup-inner {
        width: 88vw;
    }
}


@media only screen and (max-width: 479px) {
    .fototer-menu {
        gap: 20px;
    }

    .fototer-menu li a {
        font-size: 16px;
    }

    .single-testimonial {
        height: 360px;
    }
}

/*---------------------------------------------
================ Responsive End =============
----------------------------------------------*/