* {
    padding: 0;
    margin: 0;
}

body {
    background-color: #ffffff;
}
.topbar {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 99vw;
    height: 60px;
    border-bottom: 1px solid rgb(219, 214, 214);
}
.first {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 50%;
}
.first {
    color: white;
}
.first i {
    font-size: 20px;
    color: #f35b2d;
}
.first p {
    font-size: 14px;
    color: rgb(122, 122, 122);
    margin-left: 12px;
    font-family: "poppins", sans-serif;
    margin-right: 50px;
}
.links {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 50%;
    justify-content: flex-end;
}
.links ul li {
    list-style: none;
    display: inline-block;
    margin-right: 10px;
}
.links ul {
    margin-right: 70px;
}
.links ul li i {
    color: white;
    background-color: rgb(193, 187, 187);
    padding: 5px;
    border-radius: 50%;
    cursor: pointer;
}
.links ul li i:hover {
    background-color: #f35b2d;
}



.navmenu {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 99vw;
    height: 95px;
}

.navmenu .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}
.navmenu .logo h1 {
    font-family: "poppins", sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 28px;
    cursor: pointer;
}
a {
    text-decoration: none;
    color: inherit;
}
.navmenu .nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 60%;
}
.navmenu .nav ul li {
    display: inline-block;
    list-style: none;
    font-family: "poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    margin-left: 70px;
    cursor: pointer;
    transition: color 0.3s ease;
}
#activenav {
    color: #f35b2d;
}
.navmenu .nav ul li:hover {
    color: #f35b2d;
}
.navmenu .scbtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20%;
}
.navmenu .scbtn button {
    border: none;
    background-color: black;
    color: white;
    padding: 12px;
    border-radius: 22px;
    width: 200px;
    font-weight: 500;
}
.navmenu .scbtn i {
    font-size: medium;
    padding: 12px;
    margin-right: 10px;
    background-color: #f35b2d;
    border-radius: 50%;
    margin-left: -50px;
}

.carousel {
    width: 99vw;
    height: 100vh;
}
.ban1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 99vw;
    height: 100vh;
    background-image: url(media/banner-01.jpg);
}
.ban1 h1 {
    font-family: "poppins", sans-serif;
    font-weight: 800;
    font-size: 62px;
    color: white;
    text-transform: uppercase;
    margin-left: 250px;
    margin-top: 25px;

}
.imgbtn {
    width: 150px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "poppins", sans-serif;
    background-color: white;
    color: black;
    margin-left: 250px;
}
.imgbtn span {
    color: #f35b2d;
    margin-left: 3px;
}





.featured {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    height: 90vh;
    width: 99vw;
}

.feature-img {
    width: 33.33%;
    display: flex;
    align-items: center;
    padding-left: 80px;
    justify-content: flex-end;
    flex-direction: column;
}
.feature-img span img {
    padding: 20px;
    border-radius: 50%;
    background-color: #f35b2d; 
    margin-right: 300px;   
    margin-top: -40px;
}
.featured .feature-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 33.33%;  
}
.featured .feature-text .fheading {
    padding-left: 8px;
    color: #f35b2d;
    border-left: 5px solid #f35b2d;
    text-transform: uppercase;
    font-weight: 700;
    flex-direction: column;
    font-family: "poppins", sans-serif;
}
.featured .feature-text h3 {
    text-transform: capitalize;
    font-family: "poppins", sans-serif;
    font-size: 40px;
    margin-top: 30px;
}
.featured .feature-cards {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33.33%;
}

.qs {
    background-color: aliceblue;
    margin-top: 50px;
}
.qs .mainq {
    font-family: "poppins", sans-serif;
    color: #f35b2d;
    border-bottom: 1px solid gainsboro;
    padding: 10px;
}
.qs .mains {
    padding: 10px;
    font-family: "poppins", sans-serif;
    color: black;
}
.qs .otherq {
    padding: 10px;
    font-family: "poppins", sans-serif;
}
.qs .mainq, .otherq {
    font-weight: 550;
    cursor: pointer;
}



.infotable {
    display: flex;  
    justify-content: space-evenly;
    width: 300px;
    flex-direction: column;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgb(198, 194, 194);
    margin-top: 30px;
}
.infotable .box {
    display: flex;
    flex-direction: row;
    width: 100%;
}
.infotable .box h3 {
    font-family: "poppins", sans-serif;
}
.infotable .box .infotxt p{
    font-family: "poppins", sans-serif;
    color: gray;
}
.infotable .box img {
    margin-left: 30px;
}
.infotable .box .infotxt {
    margin-left: 20px;
}

.videosection {
    display: flex;
    justify-content: center;
    height: 100vh;
    margin-top: 55px;
}
.videobg {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 98vw;
    height: 70vh;
    background-image: url(media/video-bg.jpg);
}

.videobg p {
    color: #f35b2d;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    border-left: 5px solid #f35b2d;
    padding-left: 6px;
    margin-top: 30px;
    text-transform: uppercase;
    font-size: small;
}

.videobg h2 {
    color: white;
    font-family: "poppins", sans-serif;
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    text-transform: capitalize;
    margin-top: 20px;
    line-height: 56px;
}
.videobg img {
    margin-top: 40px;
    border-radius: 20px;
}
.videobg a i {
    position: relative;
    top: -250px;
    background-color: white;
    padding: 15px;
    border-radius: 50%;
    box-shadow: #dd8d74 0px 0px 5px 15px;
    font-size: larger;
    color: #f35b2d;
}



.stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    width: 80vw;
    margin: 0 auto;
}
.stat .statb {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 230px;
    height: 80px;
    background-color: #ffeee9;
    border-radius: 10px;
}
.stat .statb h1 {
    font-family: "poppins", sans-serif;
    color: #f35b2d;
    font-size: 40px;
    margin-right: 25px;
    font-weight: 700
}
.stat .statb p {
    text-align: left;
    color: black;
    font-size: 16px;
    font-weight: 600;
    line-height: 28px;
    font-family: "poppins", sans-serif;
    text-transform: capitalize;
}
.counter {
    background-color: #f35b2d;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: relative;
    left: -8%;
    top: -13%;
}





.space {
    display: flex;
    flex-direction: column;
    height: 115vh;
    width: 99vw;
    background-color: #fafafa;
}
.space .uppersp {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}
.space .uppersp .upperspace-txt {
    display: flex;
    flex-direction: column;
    width: 40%;
}
.space .uppersp .upperspace-txt p {
    text-transform: capitalize;
    font-family: "poppins", sans-serif;
    color: #f35b2d;
    padding: 6px;
    font-weight: 800;    
    border-left: 5px solid #f35b2d;
    margin-left: 50px;
}
.space .uppersp .upperspace-txt h1 {
    text-transform: capitalize;
    font-weight: 700;
    color: black;
    margin-left: 50px;
    margin-top: 10px;
    font-family: "poppins", sans-serif;
    font-size: xx-large;
    line-height: 56px;
}
.uppersp .upperspace-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
}
.uppersp .upperspace-btns button {
    height: 50px;
    padding: 0 25px;
    border: none;
    width: 150px;
    border-radius: 8px;
    color: white;
    background-color: black;
    font-size: 16px;
    font-weight: 500;
    margin-right: 25px;
    margin-top: 35px;
}
#active {
    background-color: #f35b2d;
    color: white;

}
.lowersp {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 60px;
}
.spacecard {
    display: flex;
    width: 30%;
    justify-content: center;
}
.spacecard .innercard {
    display: flex;
    flex-direction: column;
    box-shadow: 0px 0px 10px #aba9a8;
    width: 270px;
    border-radius: 15px;

}
.spacecard .innercard .spbox {
    display: flex;
    flex-direction: row;
    padding: 25px;
}
.spacecard .innercard .spbox p {
    font-family: "poppins", sans-serif;
    font-size: small;
    color: #aba9a8;
    font-weight: 500;
}
.spacecard .innercard .spbox h3 {
    font-family: "poppins", sans-serif;
    font-size: medium;
    margin-left: 50px;
}
.spaceimage {
    display: flex;
    width: 40%;
    justify-content: center;
    align-items: center;
}
.spacetext {
    display: flex;
    flex-direction: column;
    width: 30%;
    align-items: flex-start;
}
.spacetext h3 {
    font-family: "poppins", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
}
.spacetext p {
    font-family: "poppins", sans-serif;
    font-size: 14px;
    line-height: 25px;
    color: #4a4a4a;
    margin-top: 30px;
}
.scbtn {
    margin-top: 30px;
}
.scbtn button {
    border: none;
    background-color: black;
    color: white;
    padding: 15px;
    border-radius: 22px;
    width: 200px;
    font-weight: 500;
}
.scbtn i {
    font-size: medium;
    padding: 15px;
    margin-right: 10px;
    background-color: #f35b2d;
    border-radius: 50%;
    margin-left: -50px;
}



.contactsection {
    height: 130vh;
}
.contactbg {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-image: url(media/contact-bg.jpg);
    width: 99vw;
    height: 400px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.contactbg .contactp {
    color: #f35b2d;
    font-family: "poppins", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    padding-left: 8px;
    border-left: 4px solid #f35b2d;
    margin-top: 60px;
    font-size: small;
}
.contactbg h1 {
    color: white;
    font-family: "poppins", sans-serif;
    font-weight: 700;
    text-align: center;
    margin-top: 20px;
}
.contactbg .innercontact {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 70vw;
    margin-top: 80px;
}
.innercontact .map iframe {
    border-radius: 15px;
}

.innermap {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.inner {
    display: flex;
    justify-content: center;
    padding: 35px 50px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0px 0px 10px #c5c4c3;

}
.inner div {
    margin-left: 30px;

}
.inner i {
    font-size: 40px;
    color: #f35b2d;
}





.innercontact .form {
    width: 350px;
    display: flex;
    border-radius: 15px;
    background-color: white;
    box-shadow: 0px 0px 10px #c5c4c3;
    padding: 30px;
}
.innercontact .form p {
    color: #3a3a3a;
    font-family: "poppins", sans-serif;
    font-size: small;
    font-weight: 400;
    padding-top: 25px;
    margin-left: 15px;
    margin-bottom: 10px;
}
.innercontact .form input {
    width: 280px;
    height: 40px;
    border: none;
    background-color: #f6f6f6;
    border-radius: 20px;
    margin-left: 17px;
}
.form input::placeholder {
    padding-left: 20px;
}
.form textarea {
    height: 150px;
    width: 280px;
    border: none;
    margin-left: 12px;
    background-color: #f6f6f6;
    border-radius: 20px;
}
.form button {
    background-color: black;
    color: white;
    padding: 7px 15px;
    border-radius: 17px;
    font-family: "poppins", sans-serif;
    font-weight: 500;
    margin-left: 12px;
    margin-top: 15px;
}

footer {
    width: 99vw;
    height: 50px;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer p {
    color: black;
    font-family: "poppins", sans-serif;
}


@media (max-width: 768px) {

    /* Topbar */
    .topbar {
        flex-direction: column;
        height: auto;
        padding: 10px;
        align-items: center;
        gap: 8px;
    }
    .first {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
    .links {
        width: 100%;
        justify-content: center;
    }
    .links ul {
        margin-right: 0;
    }

    /* Navbar */
    .navmenu {
        flex-direction: column;
        height: auto;
        padding: 15px;
        align-items: center;
        gap: 15px;
    }
    .navmenu .logo {
        width: 100%;
        justify-content: center;
    }
    .navmenu .nav {
        width: 100%;
        justify-content: center;
    }
    .navmenu .nav ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .navmenu .nav ul li {
        margin-left: 0;
        font-size: 13px;
    }
    .navmenu .scbtn {
        width: 100%;
        justify-content: center;
    }

    /* Hero Banner */
    .carousel, .ban1 {
        width: 100%;
        height: 60vh;
    }
    .ban1 h1 {
        font-size: 32px;
        margin-left: 20px;
    }
    .imgbtn {
        margin-left: 20px;
    }

    /* Featured */
    .featured {
        flex-direction: column;
        height: auto;
        width: 100%;
        align-items: center;
        padding: 30px 20px;
        gap: 30px;
    }
    .feature-img {
        width: 100%;
        padding-left: 0;
        align-items: center;
    }
    .feature-img img {
        width: 100%;
        height: auto;
    }
    .feature-img span img {
        margin-right: 0;
    }
    .featured .feature-text {
        width: 100%;
    }
    .featured .feature-text h3 {
        font-size: 26px;
    }
    .featured .feature-cards {
        width: 100%;
    }
    .infotable {
        width: 100%;
    }

    /* Video Section */
    .videosection {
        height: auto;
        margin-top: 30px;
    }
    .videobg {
        width: 100%;
        height: auto;
        padding: 30px 15px;
    }
    .videobg h2 {
        font-size: 24px;
        line-height: 36px;
    }
    .videobg img {
        width: 100%;
        height: auto;
    }
    .videobg a i {
        top: -150px;
    }

    /* Stats */
    .stat {
        flex-direction: column;
        width: 100%;
        height: auto;
        padding: 30px 20px;
        gap: 20px;
    }
    .stat .statb {
        width: 100%;
    }
    .counter {
        display: none;
    }

    /* Space Section */
    .space {
        height: auto;
        width: 100%;
        padding-bottom: 40px;
    }
    .space .uppersp {
        flex-direction: column;
        align-items: center;
    }
    .space .uppersp .upperspace-txt {
        width: 100%;
        padding: 0 20px;
    }
    .space .uppersp .upperspace-txt p,
    .space .uppersp .upperspace-txt h1 {
        margin-left: 0;
    }
    .space .uppersp .upperspace-txt h1 {
        font-size: x-large;
        line-height: 40px;
    }
    .uppersp .upperspace-btns {
        width: 100%;
        flex-wrap: wrap;
        padding: 20px;
        gap: 10px;
    }
    .uppersp .upperspace-btns button {
        margin-right: 0;
        margin-top: 0;
    }
    .lowersp {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 30px;
    }
    .spacecard {
        width: 90%;
    }
    .spacecard .innercard {
        width: 100%;
    }
    .spaceimage {
        width: 90%;
    }
    .spaceimage img {
        width: 100%;
        height: auto;
    }
    .spacetext {
        width: 90%;
        padding: 0 10px;
    }
    .spacetext p br {
        display: none;
    }

    /* Contact */
    .contactsection {
        height: auto;
    }
    .contactbg {
        width: 100%;
        height: auto;
        padding-bottom: 40px;
    }
    .contactbg h1 {
        font-size: 24px;
    }
    .contactbg .innercontact {
        flex-direction: column;
        width: 90%;
        align-items: center;
        gap: 30px;
        margin-top: 40px;
    }
    .innercontact .map iframe {
        width: 100%;
        height: 250px;
    }
    .innermap {
        flex-direction: column;
        gap: 15px;
    }
    .inner {
        padding: 20px;
    }
    .innercontact .form {
        width: 100%;
    }
    .innercontact .form input,
    .form textarea {
        width: 100%;
        margin-left: 0;
    }
    .innercontact .form p {
        margin-left: 0;
    }
    .form button {
        margin-left: 0;
    }

    /* Footer */
    footer {
        width: 100%;
        text-align: center;
    }
}