@import url('https://fonts.googleapis.com/css2?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&display=swap');

.dropdown-item{
    width: auto;
}




* {
    text-decoration: none;
    box-sizing: border-box;
    padding: 0%;
    margin: 0%;
    font-family: "Poppins", sans-serif;
}


html {
    scroll-behavior: smooth;
}

:root {
    --color-yellow-btn: #FFEF61;
    --color-orange: #F15A24;
    --color-gray: #888888;


}

.web-container a {
    color: black;
    text-decoration: none;
}

.web-container button a {
    color: white;
}

button.btn-style {
    background: var(--color-yellow-btn);
    padding: 10px 20px;
    border-radius: 5px;
    color: black;
}

/* NAV bar */
.web-container .scroll1 {
    background: white;
    background-image: url('../Images/nav/nav-bg.png');
    background-size: 100% 100%;
}

.web-container .scroll1 img {
    width: 368.77px;
    animation: anm-1 1.5s linear;
}

@keyframes anm-1 {
    40% {
        transform: perspective(200px) rotateX(40deg);
    }
}

.web-container .navbar {
    align-items: baseline;
    padding-block: 20px;
}



.web-container .navbar a {
    font-size: 16px;
    color: #FFFDFD;
    margin-block: 0px !important;
    padding: 5px !important;
    margin-top: 3px !important;
    margin-inline: 10px;
    white-space: nowrap;

}

.web-container .navbar .dropdown a {
    color: black !important;
}

.web-container .navbar .btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    color: white;
    background-color: transparent;
    border-color: transparent;
}

.web-container .navbar .dropdown ul {
/*    padding-left: 0px !important;*/
}

.web-container .navbar .dropdown .btn {
    color: white;
    font-size: 16px;

}

.dropdown-toggle::after {}

.web-container .scroll1 #navbarText {
    gap: 50px;
    align-items: baseline;
    margin-top: 25px;
}

.web-container .scroll1 a.active {
    color: #FFFDFD !important;
    font-weight: 600;
}

.web-container .scroll1 #navbarText a {
    font-size: 16px;
    margin-inline: 20px;
    font-weight: 500;
    color: #FFFDFD;
    text-align: start;
}

.web-container .after-scroll-nav #navbarText a {
    color: #FFFDFD;
    font-size: 16px;
}

.web-container .on-click-bg-color {
    background: rgba(255, 255, 255, 0.313);
    backdrop-filter: blur(2px);
    color: black;
}

.web-container .on-click-bg-color a {
    color: black !important;
}

.web-container .scroll1 #logo-2 {
    display: none;
}

.web-container .after-scroll-nav {
    background: rgb(255, 252, 252);
    color: black;
    position: fixed;
    top: 0px;
    left: 0px;
    box-shadow: 0px 10px 5px rgba(100, 93, 12, 0.055);
    animation: nav-anim 0.3s linear;
}

@keyframes nav-anim {
    0% {
        top: -50px;
        scale: 0.8;
    }

    100% {
        top: 0;
    }
}

.web-container .after-scroll-nav #navbarText a {
    font-weight: 500;
}

.web-container .after-scroll-nav .active-nav-btn {
    color: rgb(2, 2, 2) !important;
    font-weight: 600;
}

.web-container .after-scroll-nav #logo {
    display: none;
}

.web-container .after-scroll-nav #logo-2 {
    display: inline-block;
}

.web-container nav .nav-btns button span {
    display: inline-block;
    transition: all 0.3s linear;
}

.web-container nav .nav-btns button:hover span {
    translate: 0px -40px;
}

/* ========================BANNER */
.web-container .banner {
    width: 100%;
    overflow: hidden;
}

.web-container .banner .banner-left h1 {
    font-size: 54px;
    font-weight: 600;
    margin-bottom: 20px;
    width: fit-content;
    margin: auto;
    color: var(--color-orange);
}

.web-container .banner .banner-left h1 span {
    animation: plus-anim 7s linear infinite;
    display: inline-block;
}

@keyframes plus-anim {
    20% {
        color: red;
        text-shadow: 0px 0px 10px rgba(125, 89, 17, 0.164);
    }

    80% {
        color: red;
        text-shadow: 0px 0px 10px rgba(125, 89, 17, 0.205);
    }
}

.web-container .banner .banner-right img {
    width: 100%;
}


/* *********************Service************* */
.web-container .services {
    padding-block: 100px;
    position: relative;
}

.web-container .services img {
    width: 94%;
}

.web-container .services .coursoual-container {
    max-width: 1400px;
    margin: auto;
    margin-top: 80px;
}

.carousel {
    position: static;
}

.web-container .services .coursoual-container .carousel-indicators  {
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50% -50%;
    background: #060525;
    height: fit-content;
    display: flex;
    justify-content: space-around;
    padding: 28px 0px;
    border-radius: 10px;
    width: 100%;
    max-width: 1364px;
    margin: 0px;
    color: white;

}

/*.web-container .services .coursoual-container .carousel-indicators [data-bs-target]{
    opacity: 1  !important;
}*/

.web-container .services .coursoual-container .carousel-indicators img {
    width: 40px;
}

.web-container .services .coursoual-container .carousel-indicators button {
    display: block;
    width: fit-content;
    color: #FFFFFF;
    font-size: 16px;
}




.web-container .services .coursoual-container .carousel-indicators .active {
    color: #white;
}


/*.web-container .services .coursoual-container .carousel-indicators [data-bs-target]:active {
    color: #AB69FF;

}*/

.web-container .services .coursoual-container .carousel-indicators button p {
    margin-bottom: 0px;
}



.web-container .services .coursoual-container .carousel-indicators .service-btn {
    color: white;
    box-sizing: content-box;
    flex: 0 1 auto;
    height: fit-content;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: 0px;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
   
}

.web-container .services .coursoual-container .service-content p {
    font-size: 16px;
}

.service-content button {
/*    background: forestgreen;*/
    color: white;
    margin-left: auto;
    display: block;
    margin-top: 50px;
    font-size: 16px;
    padding: 10px 35px;
}



.service-content button:hover {
    background: #0a0a2e !important;
    color: white !important;
}

.buy-button:hover {
background: #0a0a2e !important;
    color: white !important;
}
.web-container .services .coursoual-container .service-content h4 {
    font-size: 35px;
}

.web-container .services .coursoual-container .service-content .cards {
    display: flex;
    justify-content: space-around;
    margin-top: 80px;
}

.web-container .services .coursoual-container .service-content ul {
    margin-top: 50px;
}

.web-container .services .coursoual-container .service-content li {
    font-size: 16px;
}

.web-container .services .coursoual-container .service-content .cards .cardd {
    text-align: center;
    transition: all 0.4s linear;
    
}

#realestatepage{color: white;}
#realestatepage:hover p{ color:#AB69FF; }


.web-container .services .coursoual-container .service-content .cards .cardd:hover{
    scale: 1.04;

}
 
.web-container .services .coursoual-container .service-content .cards .cardd p {
    font-size: 16px;
}

.web-container .services .coursoual-container .service-content .cards .cardd img {
    width: 100px;
    transition: all 0.5s linear;
}

.web-container .services .coursoual-container .service-content .cardd:hover img{
    rotate: y 360deg;
}

.web-container .services .coursoual-container .service-content .btm-content {
    margin-top: 50px;
}

.web-container .services .coursoual-container button {
    width: fit-content !important;
    height: fit-content !important;
}


.carousel-control-next,
.carousel-control-prev {
    position: absolute;
    top: 400px;
    display: inline-block !important;
    right: 20px;
    z-index: 1;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: 0.5;
    transition: opacity .15s ease;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    display: inline-block;
    width: 100px;
    height: 100px;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100% 100%;
}





/* ******************Customer feed back***************** */
.web-container .feed-back {

    color: white;
    height: auto;
    overflow: hidden;
}

.web-container .feed-back .header {
    text-align: center;
    padding-block: 30px;
    background: #FFFFFF;
}

.web-container .feed-back .header h2 {
    color: #7D7D7D;
    font-size: 36px;
}

.web-container .feed-back .header h3 {
    font-size: 36px;
    color: #050000;

}

.web-container .feed-back .reviews {
    background: #0E0055;
    padding-block: 10px;
}

.web-container .feed-back .swiper-containerr {
    max-width: 937px;
    margin: auto;
    margin-top: 50px;
    text-align: center;
}


.web-container .feed-back .swiper-containerr .swiper {
    width: 100%;
    height: 100%;

    padding-bottom: 50px;
}


.web-container .feed-back .swiper-containerr .swiper p,
.web-container .feed-back .swiper-containerr .swiper span {
    font-size: 16px;
    color: #FFFFFF;
}


.web-container .feed-back .swiper-containerr .swiper-slide {
    text-align: center;
    font-size: 16px;
}

.web-container .feed-back .swiper-containerr .swiper-slide img {
    width: 20px;
    margin-top: -10px;
}

.swiper-containerr .swiper-horizontal>.swiper-pagination-bullets,
.swiper-containerr .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-containerr .swiper-pagination-custom,
.swiper-containerr .swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 0px) !important;
}



.web-container .feed-back .swiper-containerr .swiper-pagination-bullet {
    background: white;
    opacity: 1;
}

.web-container .feed-back .swiper-containerr .swiper-pagination-bullet-active {
    background: var(--color-orange);
}



/* ***********************BLOG*** */
.web-container .blogs {
    padding-block: 50px;
    padding-inline: 20px;
    background: #D9D9D9;
    overflow: hidden;
}


.web-container .blogs h2 {
    color: var(--color-orange);
    font-size: 36px;
}


.web-container .blogs .card-container {
    max-width: 1650px;
    margin: auto;

}

.web-container .blogs .cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 100px;
    margin-top: 40px;
}

.web-container .blogs .cards .cardd {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}


.web-container .blogs .cards .cardd:hover {
    translate: 0px -8px;
    scale: 1.03;
    box-shadow: 0px 0px 5px rgba(88, 88, 88, 0.326);
}


.web-container .blogs .cards .cardd img {
    width: 100%;
}

.web-container .blogs .cards .cardd .card-content {
    padding: 20px;
}

.web-container .blogs .cards .cardd .card-content span {
    font-size: 11px;
}

.web-container .blogs .cards .cardd .card-content h4 {
    font-size: 16px;
    margin-top: 10px;
    color: var(--color-orange);
}

.web-container .blogs .cards .cardd .card-content p {
    font-size: 11px;
    margin-top: 5px;
}

/* *************************Insta ************* */
.web-container .insta {
    padding-block: 100px;
    background: #D9D9D9;
}

.web-container .insta .insta-content {
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.web-container .insta .insta-left img {
    width: 100%;
}

.web-container .insta .insta-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.web-container .insta .insta-right img {
    margin-top: 10px;
    width: 100%;
    max-width: 180px;
}

.web-container .insta .insta-right h4 {
    font-size: 36px;
}

.web-container .insta .insta-right p {
    font-size: 28px;
    text-align: center;
    margin-top: 10px;
}

/* Register */

.web-container .register {
    max-width: 768px;
    padding: 30px 40px;
    background: #c6c6c64f;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;

}

.web-container .register button {
    margin: auto;
    background: #000;
    color: white;
    margin-top: 30px;
    max-width: 300px;
}

.web-container .register input {}


.web-container .varify-sec {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 5px;
    align-items: center;
    margin-inline: 10px;
    margin-right: 30px !important;
    margin-top: 10px;
    max-width: 380px;


}

.web-container .varify-sec input {
    margin-top: 10px;
}

.web-container .register label {
    margin-bottom: 0px;
    margin-top: 5px;
}

.web-container .varify-sec img {
    width: 40px;
}

.web-container .varify-sec label {}

.web-container .register-modal {
    background: transparent;
}

.web-container .register-modal .modal-content {
    background: transparent;
    border: none;
}

.web-container .veify-sec-container {
    padding: 2px;
    border: 1px solid red;
    border-radius: 10px;
}

/* **************************Footer / */
.web-container footer {
    background-size: 100% 100%;
    background: #080524;
    width: 100%;
}

.web-container footer li {
    list-style: none !important;
}

.web-container footer button {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 15px;
}

.web-container .footer {
    min-height: 21rem;
    background-size: 100% 100%;
    padding: 3rem 0 0rem 0;
    padding-inline: 150px;
    background-size: 100% 100%;
    color: rgb(255, 255, 255);
/*    background-image: url('/assets/images/footer/bg-footer.png');*/
    position: relative;
    z-index: 2;
    border-radius: 150px 0px 0px 0px;
}

.web-container .footer .content {
    margin-top: 3rem;
}

.web-container .footer .footer-first {
    translate: 0px -30px;
}

.web-container .footer .footer-first .btm {
    margin-top: 20px;
}

.web-container .footer .footer-first span {
    font-size: 18px;
    display: inline-block;
    margin-inline: 5px;
}

.web-container .footer p {
    font-size: 15px;
}

.web-container .footer img.logo {
    width: 100%;
    max-width: 15rem;
    margin-bottom: 5px;
}

.web-container .footer h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
    color: white;
}

.web-container .footer ul li {
    margin-bottom: 5px;
    font-size: 18px;
}

.web-container .footer a {
    color: var(--color-medium-gray);
    text-decoration: none;
    font-size: 1rem;
    font-weight: normal;
}

.web-container .footer p {
    color: var(--color-medium-gray);
}

.web-container .footer a i {
    color: rgb(255, 255, 255);
    font-size: 1.8rem;
    margin-right: 0.5rem;
}

.web-container .footer .copyright {
    font-size: 1.3rem;
    color: white;
}

.web-container .footer .mail-body {
    border: 1px solid rgb(104, 104, 104);
    padding: 10px 15px;
    width: fit-content;
    border-radius: 5px;
}

.web-container .footer .mail-body button {
    border: none;
    background: transparent;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    font-weight: normal;
}

.web-container .footer .mail-body input {
    border: none;
    background: transparent;
    columns: white;
}

.web-container .footer .mail-body input:focus {
    outline: none;
    color: white;
}

.web-container footer .footer-btm {
    display: flex;
    justify-content: space-between;
    padding-block: 30px;
    color: white;
}

.web-container footer .footer-btm p {
    font-size: 18px;
}

.web-container footer .footer-btm ul {
    display: flex;

}

.web-container .footer .footer-btm span {
    color: white;
    text-decoration: underline;
}

.web-container footer a {
    transition:all 0.2s linear;
}
.web-container footer .site-section a:hover{
    color: rgba(255, 255, 255, 0.667);
    scale: 1.1;
    display: inline-block;
}


/* MEDIAQUARY STARTS HERE */
@media only screen and (max-width: 1600px) {

    /* NAV */
    .web-container .scroll1 #navbarText a {
        font-size: 18px;
        margin-inline: 10px;
        font-weight: 500;
        color: rgb(255, 255, 255);
        padding: 0;
        margin-bottom: 0px;
        margin-top: 20px;
    }

    .web-container .navbar .dropdown {
        text-align: start;
        margin-left: -10px;

    }

    .web-container .navbar .dropdown .btn {

        font-size: 18px;

    }


    .web-container .navbar a {
        font-size: 18px;
        padding: 0;
        margin-bottom: 0px;
        margin-top: auto;
    }

    .web-container .navbar {
        text-align: end;

    }

    .web-container .navbar-nav {
        text-align: end;
    }

    .web-container .scroll1 img {
        width: 250.77px;
    }


    /* Banner*/
    .web-container .banner .banner-left h1 {
        font-size: 60px;
    }


    /* Service */
    .web-container .services .coursoual-container .carousel-indicators {
        padding: 18px 0px;
       padding-inline: 80px;
    }

    .web-container .services .coursoual-container .carousel-indicators img {
        width: 35px;
    }

    .web-container .services .coursoual-container .carousel-indicators button {
        display: block;
        width: fit-content;
        color: #FFFFFF;
        font-size: 18px;
        transition: all 0.1 ease-in-out;
    }

    .web-container .services .coursoual-container .carousel-indicators button:hover {
        color: #AB69FF;
    }

    .web-container .services .coursoual-container {
        max-width: 1258px;
        margin: auto;
        margin-top: 80px;
    }

    .web-container .services .coursoual-container .service-content h4 {
        font-size: 35px;
    }

    .web-container .services .coursoual-container .service-content p {
        font-size: 18px;
    }

    .web-container .services .coursoual-container .service-content ul {
        margin-top: 35px;
    }

    .web-container .services .coursoual-container .service-content li {
        font-size: 18px;
    }

    .web-container .services .coursoual-container .service-content .cards {
        min-height: 200px;
    }

    .web-container .services .coursoual-container .service-content .cards .cardd img {
        width: 70px;
    }

    .web-container .services .coursoual-container .service-content .cards .cardd p {
        font-size: 18px;
    }

    .service-content button {
        background-color: white;
        color: black;
        
        margin-left: auto;
        display: block;
        margin-top: 50px;
        font-size: 18px;
        padding: 9px 28px;
        transition: all 0.1s ease-in;
    }

    .service-content button:hover {
        background: 
        color: white !important;
    }

    .carousel-control-next-icon,
    .carousel-control-prev-icon {
        display: inline-block;
        width: 70px;
        height: 70px;
        background-repeat: no-repeat;
        background-position: 50%;
        background-size: 100% 100%;
    }

    /* blogs */

    .web-container .blogs .card-container {
        max-width: 1350px;
        margin: auto;

    }

    .web-container .blogs .cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 50px;
    }


    /* insta */

    .web-container .insta .insta-right h4 {
        font-size: 30px;
    }

    .web-container .insta .insta-right p {
        font-size: 20px;
    }


    .web-container .insta .insta-right img {
        width: 150px;
    }
}


@media only screen and (max-width: 1400px) {

    /* footer */
    .web-container .footer {
        padding-inline: 100px;
    }
 
    .web-container .services .coursoual-container {
       padding-inline: 80px;
    }
    .web-container #real-estate{
        margin-top: 40px;
    }

}



@media screen and (max-width:1200px) {
    .web-container #navbarText a {
        margin-inline: 0px !important;
    }

    .web-container .navbar-nav {
        margin-top: 30px;
    }


    .web-container .navbar .dropdown button {
/*        padding-inline: 0px;*/
    }

    /* blogs */
    .web-container .blogs .header {
        text-align: center;
    }

    .web-container .blogs .cards {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
        margin: auto;
        margin-top: 50px;
    }


    /* footer */
    .web-container .footer {
        padding-inline: 70px;
    }
    .web-container #real-estate{
        margin-top: 40px;
    }

}

@media screen and (max-width:992px) {

    /* banner */
    .web-container .banner {
        /* padding-bottom: 100px; */
        position: relative;
    }

    .web-container .banner .banner-left {
        margin-top: 50px !important;
    }

    .web-container .banner .banner-left h1 {
        font-size: 55px;
        font-weight: 600;
        margin-bottom: 20px;
        width: fit-content;
        margin: auto;
        color: var(--color-orange);
        text-align: center;
        position: absolute;
        top: 30%;
        left: 50%;
        translate: -50% -50%;
        text-shadow: 0px 0px 5px rgb(8, 8, 8);
    }

    /* service */
    .web-container .services {
        padding-top: 20px;
        position: relative;
    }

    .web-container .services .coursoual-container .carousel-indicators {
        padding: 18px 0px;
        max-width: 800px;
    }

    .web-container .services img {
        width: 100%;
    }


    .web-container .services .service-right-col {
        padding: 30px;
    }

    .service-content button {

        margin-left: 0 !important;

    }

    /* insta */
    .web-container .insta .insta-right {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 50px;
    }

    .web-container #real-estate{
        margin-top: 40px;
    }

}


@media screen and (max-width:768px) {
    .web-container .blogs .cards {
        grid-template-columns: auto;
        max-width: 400px;
    }

    /* footer */
    .web-container .footer {
        padding-inline: 30px;
    }

    .web-container footer .footer-btm {
        display: block;
        justify-content: space-between;
        padding-block: 30px;
        color: white;
    }

    .web-container footer .footer-btm ul {
        margin-top: 20px;
        padding-left: 0;
    }


    .web-container .feed-back .swiper-containerr {
        padding-inline: 20px;
    }

    .web-container .feed-back .swiper-containerr .swiper p,
    .web-container .feed-back .swiper-containerr .swiper span {
        font-size: 22px;
        color: #FFFFFF;
    }

    .web-container #real-estate{
        margin-top: 60px;
    }
}



@media screen and (max-width:576px) {
    .web-container .scroll1 img {
        width: 208.77px;
        animation: anm-1 1.5s linear;
    }

    .web-container .banner {
        /* padding-bottom: 100px; */
    }

    
    .web-container .banner .banner-left h1 {
        font-size: 35px;
        font-weight: 600;
        margin-bottom: 20px;
        width: fit-content;
        margin: auto;
        color: var(--color-orange);
        text-align: center;
        position: absolute;
        /* top: 50%; */
        left: 50%;
        translate: -50% -50%;
        text-shadow: 0px 0px 5px rgb(8, 8, 8);
    }

    .web-container .services .coursoual-container { 
        margin: auto;
        margin-top: 20px;
        padding-inline:20px;
    }

    .carousel-item {
        display: block;
        float: none;
        margin-block: 50px;
    }

    .carousel-dark .carousel-control-next-icon,
    .carousel-dark .carousel-control-prev-icon {
        display: none;
    }

    .carousel-dark .carousel-control-next-icon,
    .carousel-dark .carousel-control-next-icon {
        display: none;
    }

    .web-container .services .coursoual-container .carousel-indicators {
        display: none;
    }

    .web-container .services {
        padding-top: 0px;
    }


    .web-container .services .coursoual-container .service-content .cards {
        display: none;
    }

}

@media (max-width: 480px){
    .footer-btm{
        text-align: center;
    }
}