@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Rubik+Vinyl&family=Sixtyfour&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    height: 100%;
}

body {
    overflow-x: hidden;
}

.black-body {
    background-color: black;
    height: 100vh;
}


.black-body h1 {
    color: red;
    animation-name: downtoup2;
    animation-duration: 3s;
}


.para {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.headtitle {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

/* CUSTOM CURSOR */
.custom-cursor {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #007bff;
    /* Blur-like blue color */
    border-radius: 50%;
    pointer-events: none;
    z-index: 999;
    top: 0%;
    /* Prevent the cursor from interfering with clicks */
    transition: transform 0.1s ease-out;
    box-shadow: 0 0px 30px #007bff, 0 0px 30px #007bff, 0 0px 30px #007bff;
}

@media (max-width:1050px) {
    .custom-cursor {
        display: none;
    }
}

/* LOADER */

/* /* .loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #007BFF;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  } */

/* #loader {
    display: flex;
    overflow-y: hidden;
} */

/* .loaderpart1 {
    background-color:#0056b3;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    z-index: 100000;
    animation-name: loaderslides1;
    animation-duration: 2.8s;
} */

/* .loaderpart2 {
    background-color:#0056b3;
    backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.6);
    width: 50%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000;
    animation-name: loaderslides2;
    animation-duration: 2.8s;
} */

/* @keyframes loaderslides1 {
    0% {
        transform: translateX(-100%);
    }

    5% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes loaderslides2 {
    0% {
        transform: translateX(100%);
    }

    5% {
        transform: translateX(0%);
    }

    50% {
        transform: translateX(0%);
    }

    80% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(100%);
    }
} */


/* .loaderlogocontainer {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loaderlogo {
    width: 350px;
    height: 350px;
    left: 100%;
    position: fixed;
    top: 25%;
    z-index: 10000000;
    transform: scaleZ(0);
    animation-name: logorotate;
    animation-duration: 3.5s;
    animation-delay: 0.1s;
} */

/* @keyframes logorotate {
    0% {
        scale: 0;
        transform: rotate(0deg);
    }

    35% {
        scale: 1;
        transform: rotate(180deg);
    }

    43% {
        scale: 1;
    }

    100% {
        scale: 0;
        transform: rotate(0deg);
    }
}


@keyframes downtoup2 {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(0%);
    }
}  */


.body {
    display: none;
}

#loader {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #007bff;
    position: fixed;
}


.loaderlogo {
    width: 25vw;
    /* height: 350px; */
    /* left: 100%; */
    position: fixed;
    /* top: 25%; */
    z-index: 10000000;
    /* transform: scaleZ(0); */
    animation-name: logorotate;
    animation-duration: 5s;
    /* animation-delay: 0.1s; */
    animation-iteration-count: infinite;
}

@keyframes logorotate {
    0% {
        /* scale: 0; */
        transform: rotate(0deg);
    }

    100% {
        /* scale: 0; */
        transform: rotate(360deg);
    }
}

body.loaded #loader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

@media (max-width:769px) {
    .loaderlogo {
        width: 35vw;
    }
}

@media (max-width:426px) {
    .loaderlogo {
        width: 45vw;
    }
}

/* NAV-BAR */
.nav-bar {
    width: 100%;
    padding: 20px 50px;
    background-color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;

    /* flex-direction: column; */
}

.nav-bar img {
    height: 100px;
    width: 250px;
    display: inline-block;
}

.navbar-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.navbar-links ul li {
    position: relative;

}

.navbaratags {
    text-decoration: none;
    color: black;
    padding: 5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    /* margin-inline: 20px; */
}

.navbaratags:hover {
    color: #007bff;
}

/* .navbar-links ul li a {
    text-decoration: none;
    color: black;
    padding: 5px;
}

.navbar-links ul li a:hover {
    color: #007bff;
} */

#service {
    padding: 10px;
}

.service-dropdown {
    background-color: #007bff;
    padding-block: 15px;
    color: white;
    /* padding: 20px; */
    /* display: flex; */
    /* flex-direction: column; */
    position: absolute;
    left: -70%;
    right: 50%;
    top: 100%;
    gap: 20px;
    width: 300px;
    border-radius: 10px;
    display: none;
    z-index: 100;
}

.service-dropdown ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0px;
}


.servicedropdownfirstinnercontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 110px; */
    padding-inline: 10px;
    padding-block: 10px;
    width: 300px;
}

.servicedropdownfirstinnercontainer p {
    margin: 0;
    display: inline;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
}

.service-dropdown li {
    /* padding-block: 10px; */
    position: relative;
}

.servicedropdownfirstinnercontainer:hover {
    background-color: white;
    color: #007bff;
    cursor: pointer;
}

.servicenesteddropdown {
    position: absolute;
    top: -30%;
    left: 100%;
    background-color: #007bff;
    width: 250px;
    border-radius: 10px 10px 10px 0px;
    padding: 20px 0px;
    display: none;
}

#nesteddm {
    border-radius: 0px 10px 10px 10px;
}

#nestedhealthcare {
    top: -50%;
}

#nestedseo {
    top: -35%;
}

#nestededu {
    top: -140%;
    border-radius: 0px 10px 10px 10px;
}

#nestedpro {
    top: -150%;
    border-radius: 0px 10px 10px 10px;
}

.servicenesteddropdown a {
    text-decoration: none;
    color: white;
    /* padding-block: 5px; */
    /* padding-inline: 15px; */
    text-align: center;
    /* display: block; */
}

.servicenesteddropdown a:hover {
    background-color: white;
    color: #007bff;
}

.nestedinnercontainer {
    width: 250px;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    /* background-color: blue; */
    padding-block: 10px;
}

.nestedinnercontainer p {
    margin: 0;
    display: inline;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

/*.servicecontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.serviceinnerdropdown {
    position: absolute;
    top: 0%;
    left: 100%;
    display: flex;
    flex-direction: column;
    background-color:#007bff;
    border-radius: 10px;
    width: 250px;
    
}

.serviceinnerdropdown li {
    color: white;
    display: none;
}

.serviceinnerdropdown li:hover {
    background-color: white;
    color: #007bff;
} */


.contactbtn {
    padding-block: 10px;
    padding-inline: 20px;
    background-color: green;
    border: none;
    border-radius: 15px;

}

.contactbtn-inner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contactbtn a {
    text-decoration: none;

}

.contactbtn-inner-container p {
    margin: 0;
    font-size: 20px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.contactbtn i {
    font-size: 25px;
    color: white;
}

.hum-burger-icon {
    display: none;
    font-size: 40px;
    color: #007bff;
}

@media (max-width:1050px) {

    .contactbtn-inner-container {
        gap: 0;
    }

    .contactbtn {
        display: none;
    }

    
}

@media (max-width:1280px) {
   .navbar-links ul {
        display: none;
    }

    .hum-burger-icon {
        display: block;
    }

    .nav-bar {
        justify-content: space-between;
    }
}

@media (max-width:550px) {
    .nav-bar img {
        height: 8%;
        width: 200px;
    }

    .hum-burger-icon {
        font-size: 30px;
    }
}

.navbarmenubar {
    width: 100%;
    height: 180%;
    background-color: #007bff;
    position: absolute;
    transform: translateY(0%);
    top: 0%;
    left: 0;
    /* right: 0; */
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbarinnercontainer {
    /* background-color: red; */
    height: 100%;
    width: 90%;
    padding: 50px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

#close {
    font-size: 35px;
    position: absolute;
    top: 2%;
    right: 5%;
    color: white;
}

.menubarlinks {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.menubarlinks a {
    text-decoration: none;
    color: white;
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;

}

.menubarlinks p {
    font-size: 25px;
    color: white;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

#navinnerwhatsapp a .contactbtn-inner-container i,
#navinnerwhatsapp a .contactbtn-inner-container p {
    background-color: green;
    padding: 5px;
    font-size: 25px;
    border-radius: 20px;
}

#menubarservice {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.menubarservicedropdown {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: green; */
    gap: 15px;

}

#menubarwebsitedesign {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: white;
}

#menubarwebsitedesign p {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 25px;
}

.menubarinnerdropdown {
    background-color: white;
    border-radius: 20px;
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: black;
}

#firstinnerdropdown,
#secondinnerdropdown,
#thirdinnerdropdown,
#fourthinnerdropdown,
#fifthinnerdropdown,
#sixthinnerdropdown {
    display: none;
    text-align: center;
}

.menubarinnerdropdown a {
    text-decoration: none;
    color: black;
    font-size: 25px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
}

/* HERO-SECTION-HEADER */
.hero-section {
    height: 100vh;
    width: 100%;
}

.hero-section-header-container {
    height: 100%;
    width: 100%;
    /* background-color: blue; */
    border-radius: 0 0 100px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.hero-section-header-content {
    /* background-color: white; */
    width: 100%;
    /* height: 20%; */
    /* padding: 20px; */
    position: absolute;
    top: 40%;
    z-index: -25;
    display: flex;
    justify-content: center;
    align-items: center;
    /* text-align: center; */
    /* border-radius: 0 0 100px 100px; */
}

.hero-section-header-content h2 {
    /* animation-name: downtoup;
    animation-duration: 2s; */
    font-weight: bold;
    font-size: 5vw;
    line-height: 1.2;
    color: white;
    /* font-family: "Sixtyfour", serif; */
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    position: absolute;
    z-index: 3;
    /* text-transform: uppercase; */
    text-align: center;
    
}

#herobg {
    color: green;
    font-size: 5vw;
    line-height: 1.2;
    font-weight: 600;
    position: absolute;
    z-index: 2;
    animation-name: herobg;
    animation-timing-function: linear;
    animation-duration: 8s;
    animation-iteration-count: infinite;
    /* text-transform: uppercase; */
    /* font-family: "Sixtyfour", serif; */
    font-family: "Roboto Flex", sans-serif;
    text-align: center;

}

@keyframes herobg {
    0% {
        transform: translateX(0%);
    }
    25% {
        transform: translateX(1%);
    }
    50% {
        transform: translateX(0%) ;
    }
    75% {
        transform: translateX(-1%);
    }
    100% {
        transform: translateX(0%);
    }
}



@keyframes downtoup {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }

    100% {
        transform: translateY(0%);
        opacity: 1;
    }
}

/* CAROUSEL */
.carousel-container {
    width: 100%;
    height: 100vh;
    /* display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; */
    /* bottom: 200px; */
    position: absolute;
    top: 0;
    z-index: -100;

}

.carousel-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;

}


/* HERO-SECTION-FOOTER */
.hero-section-footer-container {
    width: 100%;
    background-color: white;
    position: relative;
    bottom: 15vh;
    padding: 30px;

    /* height: 40vh; */
    /* bottom: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px 100px 0 0;
}

.hero-section-footer-content {
    /* background-color: blue; */
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
    width: 100%;
    padding-inline: 10vw;

}

.hero-section-footer-content p {
    font-size: 18px;
    margin: 0;
    animation-name: downtoup;
    animation-duration: 2s;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

@media (max-width:768px) {
    .hero-section-footer-content {
        padding-inline: 10px;
    }

    .hero-section-header-content h2 {
        font-size: 8vw;
    }

    #herobg {
        font-size: 8vw;
    }

}

@media (max-width:500px) {

    .hero-section-header-content h2 {
        font-size: 10vw;
    }

    #herobg {
        font-size: 10vw;
    }

}

.contactbtn1 {
    padding-block: 10px;
    padding-inline: 20px;
    background-color: green;
    border: none;
    border-radius: 15px;
    animation-name: downtoup;
    animation-duration: 2s;
    /* animation-delay: 0.s; */
}

.contactbtn1 i {
    font-size: 25px;
    color: white;
}

.contactbtn1 p {
    margin: 0;
    font-size: 20px;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;

}

.contactbtn1 a {
    text-decoration: none;
}

/* SECTION-2 */

.section2container {
    /* height: 100vh; */
    padding: 30px;
    width: 100%;
    /* background-color: red; */
    /* position: relative; */
    /* bottom: 300px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.section2-image-holder {
    /* background-color: aqua; */
    width: 70%;
    /* height: 100%; */
    /* padding: 20px; */
}


.section2-image-holder video {
    width: 100%;
}

.section2-content-holder {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-inline: 10px;
    text-align: center;
    gap: 25px;
}

.section2-content-holder h2 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.section2-content-holder p {
    font-size: 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    padding-inline: 10vw;
}

@media (max-width:1000px) {
    .section2-image-holder {
        width: 60%;
    }
}

@media (max-width:750px) {
    .section2-image-holder {
        width: 80%;
    }
}

@media (max-width:769px) {
    .section2-content-holder p {

        padding-inline: 0vw;
    }
}

@media (max-width:450px) {
    .section2-image-holder {
        width: 100%;
    }
}

/* SECTION-3 */
.section3container {
    /* background-color: red; */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    overflow-x: hidden;
}

.section3container h2 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.section3cardcontainer {
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    /* gap: 50px; */
    overflow-x: hidden;
    padding-block: 40px;
    flex-wrap: wrap;
}

@media (max-width:960px) {
    .section3cardcontainer {
        flex-direction: column;
        gap: 50px;
    }
}

.section3card {
    padding: 20px;
    /* background-color: blue; */
    width: 450px;
    height: 480px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 50px;
    gap: 20px;
    overflow-x: hidden;
}

@media (max-width:570px) {
    .section3card {
        width: 90%;
        overflow-y: hidden;
        height: 100%;
        /* height: 300px; */
    }
}

.section3card:hover {
    transform: translateY(-30px);
    transition: 1.5s ease-in-out;
}

.section3card img {
    width: 30%;
    position: relative;
}

#section3cardimgscale {
    transform: scale(1.1);
}

.section3cardcontent {
    overflow-y: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    z-index: 100;
}

.section3cardcontent h6 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 18px;
}

.section3cardcontent p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

/* SECTION-4 */
.section4container {
    /* background-color: red; */
    padding: 20px;
    width: 100%;
    background-image: url('Images\\homepage-section4-img.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    border-radius: 25px;
    /* height: 80vh; */
}

.section4innercontainer {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding-inline: 20px;
    padding-block: 50px;
    border: 2px white solid;
    width: 100%;
    border-radius: 25px;
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
    flex-direction: column;
    gap: 25px;
    /* color: white; */
}

.section4titleholder {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
    width: 100%;
}


.section4contenttitle {
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    gap: 10px;
}

.section4contenttitle h4 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.section4contenttitle i {
    background-color: #007bff;
    font-size: 28px;
    padding: 10px;
    border-radius: 50%;
    margin-left: 10px;
}

.section4contenttitle i:hover {
    box-shadow: 0px 0px 50px #007bff;
    transition: 0.5s ease-in-out;
}

.section4detail {
    height: 160px;
    padding-inline: 200px;
    text-align: center;
    /* background-color: red; */
    padding: 20px;
    width: 100%;
    overflow: hidden;
    color: white;

}

.section4detailcontent {
    width: 100%;
    display: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.section4contenttitle p {
    display: none;
}

@media (max-width:1180px) {
    .section4innercontainer {
        gap: 10px;
    }

    .section4titleholder {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .section4detail {
        display: none;
    }

    .section4contenttitle h4,
    .section4contenttitle p {
        margin: 0;
    }

    .section4contenttitle p {
        font-family: "Montserrat", sans-serif;
        font-weight: 500;
        font-size: 18px;
        display: block;
    }

    .section4contenttitle i {
        display: none;
    }

    .section4contenttitle {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* JUST DIAL IMAGE AND CONTENT */
.justdialimagecontentcontainer {
    width: 100%;
    height: 70vh;
    padding: 20px;
    /* background-color: #007bff; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 20px; */
    margin-top: 2vh;

}

.justdialimagecontainer {
    width: 100%;
    height: 100%;
    /* background-color: green; */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;

}

.justdialimagecontainer img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.justdialcontentcontainer {
    width: 100%;
    height: 100%;
    /* background-color: blue; */
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: 35px;
}

.justdialcontentcontainer h5 {
    font-size: 1.2vw;
    line-height: 2;
    font-family: "Montserrat", sans-serif;
}



@media (max-width:769px) {
    .justdialimagecontentcontainer {
        flex-direction: column;
        height: auto;
    }

    .justdialimagecontainer {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .justdialimagecontainer img {
        width: 50%;
    }

    .justdialcontentcontainer h5 {
        font-size: 2.2vw;
        line-height: 1.5;
        
    }
}

@media (max-width:426px) {
    .justdialcontentcontainer h5 {
        font-size: 5vw;
        line-height: 1.5;
    }
}


/* SECTION-5 */
.section5container {
    width: 100%;
    height: 100%;
    margin-top: 50px;
    filter: brightness(70%);
    /* background-color: black; */
    background-image: url('Images\\pexels-ryutaro-6249821.jpg');
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-block: 25px;
}

.section5header {
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.section5header h3 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 40px;
    color: gold;
}

.section5header p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.section5reviewcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: red; */
    flex-wrap: wrap;
    padding: 25px;
    gap: 5vw;
}


.section5card {
    padding: 20px;
    padding-block: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    width: 40%;
    height: 400px;
    border-radius: 20px;
    border: 2px solid white;

}

.section5cardoutercontainer {
    /* background-color: red; */
    color: white;
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-start;

}

.section5cardoutercontainer img {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    margin: 10px;
}


.section5cardinnercontainer {
    width: 100%;
    /* background-color: aqua; */
    padding: 20px;
}

.section5cardnameandstar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
}

.section5cardnameandstar h4 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 30px;
}

.section5star {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.section5star p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 16px;
}

.section5star i {
    color: gold;
}

.section5cardcontent {
    /* background-color: aquamarine; */
    /* padding: 10px; */
    width: 100%;
}

.section5cardcontent p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}


@media (max-width:1250px) {

    .section5reviewcontainer {
        flex-direction: column;
    }

    .section5card {
        width: 80%;
        height: 100%;
    }
}

@media (max-width:850px) {
    .section5reviewcontainer {
        flex-direction: column;
    }

    .section5card {
        width: 80%;
    }
}


@media (max-width:465px) {
    .section5cardnameandstar {
        flex-direction: column;
        align-items: flex-start;
    }

    .section5cardoutercontainer {
        flex-direction: column;
    }

    .section5cardinnercontainer {
        padding-inline: 0px;
    }

    .section5card {
        width: 100%;
    }
}

/* FOOTER */
.footercontainer {
    width: 100%;
    padding: 80px 50px;
    background: url("homepageimages\\footer-bg.jpg");
    background-position: center;
    object-fit: cover;
    background-size: cover;
    color: white;
    font-size: 19px;
    /* background-color: #090053; */

}

.footercontent {
    width: 100%;
    /* background-color: red; */
    /* padding: 20px; */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footerquote {
    width: 25%;
}

.footerquote h3 {
    color: white;
    margin: 0;
    font-family: "Rajdhani", serif;
    font-weight: 600;
    font-size: 35px;
    margin-bottom: 10px;
    /* white-space: nowrap; */
}

.footerquote p {
    font-family: "Nunito", serif;
    font-weight: 500;
    font-size: 18px;
}

.footerfirst {
    /* width: 50%; */
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
}

.footerfirst a {
    text-decoration: none;
    color: white;
}

.footerfirst a i {
    margin-right: 10px;
}

.footersecond ul {
    list-style: none;
    padding: 0;
}

.footersecond ul li a {
    text-decoration: none;
    color: white;
}

.footerthird ul {
    list-style: none;
    padding: 0;
}

.footerthird ul li a {
    text-decoration: none;
    color: white;
}

.footerfourth ul {
    list-style: none;
    padding: 0;
}

.footerfourth ul li a {
    text-decoration: none;
    color: white;
}

.footerfourth ul li {
    margin-bottom: 10px;
}

.footerfirst a:hover,
.footersecond ul li a:hover,
.footerthird ul li a:hover,
.footerfourth ul li a:hover {
    color: rgb(0, 191, 255);
}

.footerfirst h4,
.footersecond h4,
.footerthird h4,
.footerfourth h4 {
    font-family: "Rajdhani", serif;
    font-weight: 600;
    font-size: 35px;
}

.footerfirst p,
.footerfirst a,
.footersecond a,
.footerthird a,
.footerstrip p,
.footerfourth a {
    font-family: "Nunito", serif;
    font-weight: 500;
    font-size: 18px;
}



@media (max-width:1000px) {
    .footercontent {
        flex-direction: column;
        gap: 50px;
        align-items: flex-start;
    }

    .footerquote {
        width: 100%;
    }

    .footercontainer {
        padding: 25px;
    }

}

.seperatedline {
    background-color: white;
    height: 1px;
    width: 100%;
    margin-top: 20px;
}

.footergstcontainer {
    width: 100%;
    /* background-color: red; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footergstcontainer h2 {
    font-size: 20px;
}

.footerstrip {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    color: white;
}

.footersocialicons {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    gap: 20px;
    font-size: 20px;
}

.footersocialicons a i {
    color: white;
}

.footersocialicons a i:hover {
    color: rgb(0, 191, 255);
}


@media (max-width:769px) {
    .footergstcontainer h2 {
        font-size: 18px;
    }
}

@media (max-width:426px) {
    .footergstcontainer h2 {
        font-size: 15px;
    }
    .footergstcontainer {
        flex-direction: column;
    }
}

@media (max-width:680px) {
    .footerstrip {
        flex-direction: column;
        gap: 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

/* ABOUT SECTION-1 */
.aboutsection1container {
    background-color: #e0ecff;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 50px;
}

.aboutsection1contentcontainer {
    /* background-color: black; */
    width: 100%;
    padding-block: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-inline: 30px;
    gap: 15px;
}

.aboutsection1contentcontainer h1 {
    color: #007bff;
    font-size: 55px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;

}

.aboutsection1contentcontainer h6 {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;

}

.aboutsection1contentcontainer button {
    background-color: #007bff;
    padding: 20px;
    border: none;
    border-radius: 10px;
    color: white;
    box-shadow: 10px 10px 0px #002f62;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.aboutsection1contentcontainer button i {
    transform: rotate(-40deg);
    margin-inline: 5px;
}

.aboutsection1contentcontainer button:hover {
    box-shadow: 0px 0px 0px;
    background-color: #002f62;
}


.aboutsection1container img {
    width: 40%;
    margin-inline: 50px;
}

@media (max-width:950px) {
    .aboutsection1container img {
        width: 50%;
        margin-inline: 20px;
    }
}

@media (max-width:820px) {
    .aboutsection1container {
        flex-direction: column;
        gap: 50px;
        height: 100%;
    }

    .aboutsection1contentcontainer {
        align-items: center;
        text-align: center;
        /* margin: 20px; */
    }

    .aboutsection1container img {
        width: 70%;
    }

    .aboutsection1contentcontainer button {
        padding: 10px;
        font-size: 15px;
    }
}

/* ABOUT SECTION-2 */
.aboutsection2container {
    background-color: white;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    gap: 120px;
}

.aboutsection2contentcontainer {
    width: 100%;
    padding-block: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-inline: 30px;
    gap: 20px;
}

.aboutsection2contentcontainer p {
    margin: 0;
    text-transform: uppercase;
    font-weight: bold;
    background-color: #e0ecff;
    color: #007bff;
    padding: 10px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.aboutsection2contentcontainer h1 {
    font-size: 55px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    color: #007bff;
}

.aboutsection2contentcontainer h6 {
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
}

.aboutsection2contentcontainer button {
    background-color: #007bff;
    padding: 20px;
    border: none;
    border-radius: 10px;
    color: white;
    font-weight: bold;
    box-shadow: 10px 10px 0px #002f62;
    font-size: 20px;
    font-family: "Montserrat", sans-serif;
}

.aboutsection2contentcontainer button i {
    transform: rotate(-40deg);
    margin-inline: 5px;
}

.aboutsection2contentcontainer button:hover {
    box-shadow: 0px 0px 0px;
    background-color: #002f62;
}

.aboutsection2numbercontainer {
    width: 100%;
    padding: 20px;
    /* background-color: black; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutsection2number1container {
    /* background-color: aqua; */
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 80%;
}

.aboutsection2number1innercontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.aboutsection2number1container i {
    /* width: 100%; */
    color: gold;
    font-size: 80px;
}

.aboutsection2number1innercontainer h1 {
    font-size: 55px;
    color: #007bff;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
}

.aboutsection2number1innercontainer h5 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 500;
    font-size: 25px;
}

@media (max-width:820px) {
    .aboutsection2container {
        flex-direction: column;
        height: 100%;
        gap: 50px;
    }

    .aboutsection2contentcontainer {
        align-items: center;
        text-align: center;
    }

    .aboutsection2numbercontainer {
        flex-direction: row;
    }

    .aboutsection2number1container {
        /* background-color: aliceblue; */
        align-items: center;
    }

    .aboutsection2contentcontainer button {
        padding: 10px;
    }
}

@media (max-width:500px) {
    .aboutsection2numbercontainer {
        flex-direction: column;
    }
}

/* ABOUT SECTION-3 */
.aboutsection3container {
    width: 100%;
    padding: 100px 0px;
    background-color: #e0ecff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 20px;
}

.aboutsection3container h1 {
    color: #007bff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 55px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
}

.aboutsection3container p {
    /* font-weight: bold; */
    padding-inline: 100px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

/* ABOUT SECTION-4 */
.aboutsection4container {
    width: 100%;
    height: 50vh;
    margin-block: 100px;
    /* background-color: red; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.aboutsection4boxcontainer {
    /* background-color: blue; */
    /* padding: 20px; */
    width: 80%;
    height: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 50px;
}

.aboutsection4box {
    /* background-color: green; */
    height: 100%;
    width: 40%;
    padding: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    gap: 10px;
    border-radius: 35px;
    box-shadow: 0px 0px 50px black;
}

.aboutsection4box:hover {
    transform: scale(1.1);
    box-shadow: 0px 0px 80px #007bff;
    transition: 0.5s ease-in-out;
}

.aboutsection4seperateline {
    width: 100%;
    background-color: #002f62;
    height: 2px;
}

.aboutsection4box h1 {
    color: #007bff;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.aboutsection4box p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

@media (max-width:1200px) {
    .aboutsection4boxcontainer {
        gap: 80px;
    }

    .aboutsection4box {
        width: 50%;
        /* background-color: gray; */
    }
}

@media (max-width:1050px) {
    .aboutsection4boxcontainer {
        flex-direction: column;
    }

    .aboutsection4box {
        width: 70%;
    }

    .aboutsection4container {
        height: 100%;
    }

    .aboutsection3container p {
        padding-inline: 50px;
    }
}

@media (max-width:550px) {
    .aboutsection4box {
        width: 110%;
        padding-inline: 10px;
    }

    .aboutsection3container p {
        padding-inline: 25px;
    }

}

/* ABOUT SECTION-5 */
.aboutsection5container {
    background-color: #e0ecff;
    padding: 20px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.aboutsection5container h1 {
    /* background-color: #e0ecff; */
    color: #007bff;
    padding-inline: 20px;
    padding-block: 10px;
    border-radius: 20px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 55px;
}

.aboutsection5imagescontainer {
    padding: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: blue; */
    gap: 50px;
}

.aboutsection5firstimage {
    /* background-color: aqua; */
    width: 300px;
    height: 400px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.aboutsection5firstimage img {
    width: 230px;
    height: 400px;
    border-radius: 30px;
}

.aboutsection5secondimage {
    /* background-color: aqua; */
    width: 300px;
    height: 450px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.aboutsection5secondimage h4 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 25px;
}

.aboutsection5secondimage h6 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 25px;
}

.aboutsection5secondimage img {
    height: 420px;
    width: 260px;
    border-radius: 30px;
}

.aboutsection5secondimage img:hover {
    box-shadow: 0px 0px 50px #007bff;
    transform: scale(1.1);
    transition: 0.6s ease-in-out;
}

/* @media (max-width:1030px) {
    .aboutsection5secondimage {
        width: 200px;
        height: 200px;
    }
} */

.aboutsection5content {
    width: 100%;
    padding-inline: 50px;
    /* font-size: 18px; */
}

.aboutsection5content h6 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.aboutsection5content p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.aboutsection5innercontent p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

@media (max-width:500px) {
    .aboutsection5content {
        padding-inline: 20px;
    }
}

@media (max-width:850px) {
    .aboutsection5imagescontainer {
        flex-direction: column;
        gap: 20px;
        padding-inline: 0;
    }

    .aboutsection5secondimage img {
        width: 300px;
        height: 450px;
    }

}

/* ABOUT SECTION-6 */
.aboutsection6container {
    width: 100%;
    /* background-color: aqua; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 20px;
}

.aboutsection6container h1 {
    color: #007bff;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.aboutsection6container h4 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.aboutsection6seperateline {
    background-color: #002f62;
    width: 20%;
    height: 2px;
    margin-bottom: 20px;
}

.qualitydesign {
    color: #002f62;
}

.profesionals {
    color: red;
}

.aboutsection6innercontainer {
    width: 100%;
    /* height: 100vh; */
    background-color: #e0ecff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    flex-wrap: wrap;
    padding: 50px 50px;
}

@media (max-width:740px) {
    .aboutsection6innercontainer {
        gap: 50px;
    }
}

.aboutsection6box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.aboutsection6box a {
    text-decoration: none;
}

.aboutsection6box h5 {
    color: #002f62;
    margin: 0;
}

.aboutsection6box a:hover {
    color: #002f62;
}


.aboutsection6imagebox {
    border: 5px solid #002f62;
    height: 400px;
    width: 300px;
    overflow-y: scroll;
    border-radius: 10px;
    scrollbar-width: none;
}

.aboutsection6imagebox img {
    width: 100%;
    /* transform: translateY(0); */
    transition: transform 7s ease-in-out;
    height: auto;
}

.aboutsection6imagebox img:hover {
    transform: translateY(-100%);

}

@media (max-width:450px) {
    .aboutsection6imagebox {
        width: 250px;
        /* height: 300px; */
    }
}

/* UID SECTION */
.uidherosection {
    width: 100%;
    height: 40vh;
    background-color: black;
    background-image: url('Images\\maranda-vandergriff-7aakZdIl4vg-unsplash.00_00_00_00.Still001.jpg');
    background-position: center;
    background-size: cover;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uidherosection h1 {
    font-size: 55px;
    text-align: center;
}

/* UID FIRST CONTENT THEN IMAGE */
.firstcontentthenimagecontainer {
    background-color: white;
    padding: 80px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.firstcontentcontainer {
    /* background-color: blue; */
    padding: 50px 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}


.firstcontentcontainer h2 {
    margin: 0;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.firstcontentcontainer p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.firstcontentcontainer li {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 20px;
}

.firstimagecontainer {
    /* background-color: green; */
    padding: 10px;
    width: 90%;
}

.firstimagecontainer img {
    width: 100%;
}

@media (max-width:950px) {
    .firstcontentthenimagecontainer {
        flex-direction: column;
        padding: 50px 20px;
    }

    .firstcontentcontainer {
        align-items: center;
        padding: 50px 20px;
    }

    .firstcontentcontainer p,
    .firstcontentcontainer h2 {
        text-align: center;
    }

    .uidherosection h1 {
        font-size: 35px;
    }

    .firstimagecontainer {
        width: 75%;
    }
}

.firstimagethencontentcontainer {
    background-color: #e0ecff;
    padding: 80px 50px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

@media (max-width:950px) {
    .firstimagethencontentcontainer {
        flex-direction: column;
        padding: 50px 20px;
    }
}

@media (max-width:500px) {
    .firstimagecontainer {
        width: 100%;
    }
}

.bgbluecontentwhite {
    background-color: #e0ecff;
    color: #002f62;
    padding: 10px 15px;
    border-radius: 10px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
}

.bgwhitecontentblue {
    background-color: white;
    color: #002f62;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: bold;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
}



/* CONTACT POSTER */
.contactpostercontainer {
    width: 100%;
    /* height: 50vh; */
    padding: 80px 20px;
    background-color: blue;
    background-image: url('Images\\contactposterbg.jpg');
    background-position: top;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactposterinnercontainer {
    background-color: white;
    opacity: 0.8;
    width: 65%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 15px;
    border-radius: 10px;
}

.contactposterinnercontainer h4 {
    margin: 0;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 500;
    font-size: 25px;
}

.contactposterinnercontainer button {
    padding: 10px 20px;
    background-color: orange;
    border: none;
    border-radius: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    font-size: 18px;
}

@media (max-width:500px) {
    .contactposterinnercontainer {
        width: 80%;
        padding: 20px;
    }
}

.contactfirstcontainer {
    padding: 50px 100px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.contactfirstcontainer p {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.contactfirstcontainer h2 {
    margin: 0;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.contactmailphonecontainer {
    /* background-color: red; */
    width: 80%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
    font-size: 18px;
}

.contactmailphonecontainer a {
    text-decoration: none;
    color: black;
    font-size: 18px;
}

.googlemapcontainer {
    width: 100%;
    height: 70vh;
    /* background-color: red; */
}

.googlemapcontainer iframe {
    width: 100%;
    height: 100%;

}


@media (max-width:950px) {
    .contactfirstcontainer {
        align-items: center;
        padding: 50px 20px;
    }

    .contactfirstcontainer p,
    .contactfirstcontainer h2 {
        text-align: center;
    }

}

.contactformcontainer {
    width: 100%;
    padding: 20px;
    /* background-color: black; */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contactforminnercontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    background-color: #007bff;
    padding-block: 35px;
    padding-inline: 20px;
    gap: 15px;
    border-radius: 25px;
    flex-direction: column;
}

/* TRAILS */

.uidherocontainer {
    width: 100%;
    height: 50vh;
    /* background-color: blue; */
    padding: 10px 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


.uidheroinnercontainer {
    width: 90%;
    height: 100%;
    /* background-color: green; */
    /* padding: 20px; */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border-radius: 25px;

}

.uidcarousoelcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.ui {
    position: absolute;
    z-index: 50;
    color: white;
    padding-inline: 25px;
    text-align: center;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 55px;
    background-color: #007bff84;
    padding: 15px;
    text-transform: uppercase;
    border-radius: 25px;

}

@media (max-width:768px) {
    .uidherocontainer {
        padding: 10px 15px;
    }

    .uidheroinnercontainer {
        width: 100%;
    }

    .ui {
        font-size: 20px;
        width: 70%;
    }
}

/* Contact Info Section */
.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 50px 20px;
    text-align: center;
}

.contact-card {
    flex: 1 1 300px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 36px;
    color: #007bff;
    margin-bottom: 10px;
}

.contact-card h3 {
    margin-bottom: 10px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.contact-card p,
.contact-card a {
    color: #555;
    text-decoration: none;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.contact-card a:hover {
    text-decoration: underline;
}

#socialicon {
    font-size: 20px;
}

/* Contact Form Section */
.contact-form {
    padding: 50px 20px;
    text-align: center;
    width: 100%;
}

.contact-form h2 {
    color: #007bff;
    margin-bottom: 20px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 35px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.5);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.form-group button {
    display: block;
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.form-group button:hover {
    background: #002f62;
}

.contactwedocontainer {
    width: 100%;

    padding: 50px 20px;
    background-color: rgba(131, 199, 226, 0.737);
    /* background-image: url("Images\\pexels-josh-hild-1270765-24964099.jpg");
    background-position: center;
    object-fit: cover;
    background-size: cover; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 7vw;
}

.contactwedocircles {
    /* background-color: #007bff; */
    padding: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
}

.contactwedocircles h3 {
    font-family: "Roboto Flex", sans-serif;
    font-weight: 600;
    font-size: 25px;
}

#contactcirlce1 {
    border: 2px solid red;
    color: red;
    box-shadow: 2px 2px red;
    white-space: nowrap;
}

#contactcirlce2 {
    border: 2px solid orange;
    color: orange;
    box-shadow: 2px 2px orange;
    white-space: nowrap;
}

#contactcirlce3 {
    border: 2px solid blue;
    color: blue;
    box-shadow: 2px 2px blue;
    white-space: nowrap;
}

#contactcirlce4 {
    border: 2px solid yellow;
    color: yellow;
    box-shadow: 2px 2px yellow;
    white-space: nowrap;
}

#contactcirlce5 {
    border: 2px solid green;
    color: green;
    box-shadow: 2px 2px green;
    white-space: nowrap;
}

@media (max-width:950px) {
    .contactwedocontainer {
        flex-direction: column;
    }

    .contactwedocircles {
        width: 80%;
    }
}

/* BLOG */
.blogbody {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 3vw;
    padding: 0 12vw;
}

.blogsection1container {
    width: 100%;
    height: 70vh;
    /* background-color: red; */
    margin-top: 2vh;
}

.blogsection1container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.blogsection2container {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
}

.blogsection2container h1 {
    font-size: 44px;
    color: black;
}

.blogsection2container p {
    font-size: 20px;
}

.nextprepagecontainer {
    width: 100%;
    /* padding: 25px; */
    /* background-color: blue; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nextpagecontainer {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.previouspagecontainer {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

.previouspagecontainer i {
    color: black;
    font-size: 1vw;
}

.previouspagecontainer a {
    color: black;
    text-decoration: none;
}

.blogshiddentags {
    display: none;
}

.nextpagecontainer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}

.nextpagecontainer i {
    color: black;
    font-size: 1vw;
}

.nextpagecontainer a {
    color: black;
    text-decoration: none;
}

.blogformcontainer {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 2vw;
    margin-bottom: 2vw;
}

.blogformcontainer h2 {
    font-size: 44px;
    text-align: center;
}

.blogformcontainer p {
    font-size: 20px;
    text-align: center;
}

.blogformcontainer form textarea {
    width: 100%;
    padding: 10px;
}

.forminnercontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.forminnercontainer input {
    padding: 10px;
   
}

.checkboxcontainer {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.checkboxcontainer p {
    margin: 0;
}


.blogformcontainer form a {
    text-decoration: none;
    padding: 15px;
    background-color: #007bff;
    margin-top: 25px;
    color: black;
    border-radius: 25px;
}

/*.commentscontainer {*/
/*    width: 100%;*/
/*    height: 50vh;*/
/*    background-color: gray;*/
/*    border-radius: 25px;*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    margin-bottom: 20px;*/
/*}*/

/*.comment {*/
/*    padding: 10px;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 5px;*/
/*    margin-bottom: 10px;*/
/*    background-color: #f9f9f9;*/
/*}*/
/*.comment strong {*/
/*    color: #333;*/
/*}*/
/*.comment p {*/
/*    margin: 5px 0;*/
/*}*/

/*#commentsSection {*/
/*    width:80%;*/
/*    height:100%;*/
/*    display:flex;*/
/*    justify-content:center;*/
/*    align-items:center;*/
/*    flex-direction:column;*/
/*    background-color:red;*/
/*}*/

/*.comment{*/
/*    width:100%;*/
/*    padding:15px;*/
/*    border: 1px solid #ddd;*/
/*    border-radius: 5px;*/
/*    background-color: #f9f9f9;*/
/*    margin-bottom: 10px;*/
/*}*/

/*.comment strong{*/
/*    color:#333;*/
/*}*/

/*.comment p {*/
/*    margin:5px 0;*/
/*}*/

#popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: #4caf50;
        color: white;
        padding: 20px;
        border-radius: 8px;
        text-align: center;
        z-index: 1000;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        font-size: 3vw;
    }
    
/*#popup {*/
/*            display: none;*/
/*            position: fixed;*/
/*            top: 50%;*/
/*            left: 50%;*/
/*            transform: translate(-50%, -50%);*/
/*            background-color: #4caf50;*/
/*            color: #fff;*/
/*            padding: 20px;*/
/*            border-radius: 5px;*/
/*            text-align: center;*/
/*            font-size: 18px;*/
/*            z-index: 1000;*/
/*        }*/

/*#popup.error {*/
/*            background-color: #f44336;*/
/*}*/

