* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body,
html {
    height: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

@keyframes slideIn_other {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.fixed_display {
    position: fixed;
    width: 350px;
    height: 70px;
    /* background: #27ae60; */
    bottom: 40px;
    right: 50px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;
    /* color: #fff; */
    font-size: 22px;
}

.fixed_display_upper {
    position: fixed;
    width: 200px;
    height: 75px;
    top: 120px;
    left: 25px;
    text-decoration: none;
    text-align: center;
    line-height: 50px;

    font-size: 22px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    /* padding: 10px 20px; */
}

/* 
.navbar .logo {
    height: 100px;
} */

.nav-list {
    list-style-type: none;
    display: flex;
    margin-right: 50px;
}

.nav-list li {
    padding: 0 20px;
}

.nav-list li a {
    text-decoration: none;
    color: black;
    transition: color 0.3s ease-in-out;
}

.nav-list li a:hover {
    color: #04C2E9;
}


/* ... other styles ... */

.timeline-section {
    max-height: 750px;
    /* Adjust this value to set the desired maximum height */
    overflow: hidden;
    /* This will prevent the video from exceeding the max-height */
}

.timeline-section img {
    width: 100%;
    height: auto;
    /* Maintain the aspect ratio */
    max-height: 50%;
    /* Ensure the video doesn't exceed the section's height */
}

.navbar .logo {
    height:100px;
    width: 125px;
    /* Adjust to maintain aspect ratio */
    margin-left: 75px;
    /* Maximum height to align with the navbar height */
    float: left;
    /* Adjust width automatically */
    /* Remove padding if necessary */
}

/* Add this to your existing style.css file or within the <style> tag */
.video-section {
    position: relative;
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    /* Adjust the alpha values to control the overlay's opacity */
    filter: brightness(72%);
    /* Set the maximum height for the video section */
    background-image: url(../assets/images/front-header.jpg);
    position: relative;
    width: 100%;
    padding: 160px;
    display: flex;
    text-align: center;
    opacity: 1;
    justify-content: center;
    background-position: center center;
    align-items: center;
    background-size: cover;
    overflow: hidden;
}



.video-overlay {
    position: absolute;
    top: 46%;
    /* Center vertically */
    left: 20%;
    color: black;
    font-family: 'Calibri';
    /* Center horizontally */
    transform: translate(-50%, -50%);
    /* Align center */
    /* color: #fff; */
    /* Text color */
    font-size: 2.5em;
    /* Text size */
    z-index: 2;
    /* Ensure it's above the video */
    text-align: center;
    /* Center text */
    white-space: nowrap;
    /* Prevent text from wrapping */
}

.nav-list li a.Active {
    color: #04C2E9;
    /* or any other color you want for the active state */
    font-weight: bold;
    /* optional, if you want to make it bold */
}

/* CSS Animation */
.h1_sect_1 {
    text-align: left;
    justify-content: left;
}



.sub_text {
    animation: slideIn1 2s ease-in-out forwards;
}

@keyframes slideIn1 {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}



/* Solar System */
.diagram {
    width: 100%;
    height: 80vh;
    background-color: #fff;
    /* border-top-right-radius: 270px;
    border-bottom-right-radius: 270px; */
    /* position: relative; */
    display: flex;
    animation: fadeIn 50s forwards;
}

/* .circle-fp{
    background-color: white;
    height: 200px;
    width: 200px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    overflow: hidden;
} */
/* .fp-logo{
    height: 150px;
    width: 150px;
    display: flex;
    border-radius: 50%;
    object-fit: cover;
} */
/* .sect-intro{
    position: relative;
    height: 75vh;
} */
.diag-head {
    width: 1000px;
    height: 480px;
    margin-top: 12px;
    /* margin-left: 150px; */
    filter: brightness(115%);
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stars Animation */
.stars {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    width: 100%;
    height: 80vh;
    background-color: #fff;
    overflow: hidden;
    /* Add overflow: hidden to hide stars outside the section */
}

.stars-header {
    text-align: center;
}

.stars-header h1 {
    color: #04C2E9;
    font-size: 32px;
    font-family: Georgia;
    margin-top: 5px;
    letter-spacing: 2px;
}

.stars-header p {
    color: gray;
    font-size: 14px;
    font-family: Georgia;
}

.stars-Groups {
    position: relative;
    align-items: center;
    justify-content: center;
}

.stars-bubbles {
    position: relative;
    display: flex;
    margin-top: 5px;
    z-index: 1;
    /* Ensure the stars are above the circle */
}

span {
    position: relative;
    width: 20px;
    height: 20px;
    background: #505cA1;
    margin: 0 4px;
    border-radius: 50%;
    animation: animate 15s linear infinite;
    animation-duration: calc(100s / var(--i));
}

.stars-bubbles span:nth-child(even) {
    background: #65D1E0;
}

.stars-circle {
    width: 150px;
    height: 150px;
    background-color: #04C2E9;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: 120px;
    /* margin-bottom: 175px;     */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /* Ensure the circle is above the stars */
}

.fp-logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

@keyframes animate {
    0% {
        transform: translateY(80vh) scale(0.25);
    }

    100% {
        transform: translateY(1vh) scale(1.3);
    }
}

.my-button {
    position: relative;
    width: 200px;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    margin: 20px 10px;
    font-weight: bold;
    border: 2px solid rgb(187, 187, 187);
    margin-top: 300px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    border-radius: 25px;
    overflow: hidden;
    color: rgb(187, 187, 187);
    /* padding: 10px 20px;
    width: 120px;
    font-size: 16px;
 background: transparent;
    border: 3px     solid grey; 
    border: none;
    margin-top: 235px;
    border-radius: 35px;

    cursor: pointer;
    transition: background-color 0.3s ease; */
}

.my-button:hover {
    background-color: #04C2E9;
    color: #fff;
}
/* Qc */
.qc {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 160px;
    display: flex;
    text-align: center;
    opacity: 1;
    justify-content: center;
    background-position: center center;
    align-items: center;
    background-size: cover;
    background-image: url(../assets/images/qc_bg.jpg);
}

.all_qc {
    position: relative;
    margin: 0;
    padding: 0;
}

.qc_title {
    color: #fff;
    font-size: 45px;
    font-weight: bolder;
    text-align: center;
}

.qc-details {
    color: #fff;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    font-family: monospace;

    animation: slideIn_other 2s ease-in-out forwards;

}

/* Overview */
.overview {
    position: relative;
    width: 100%;
    min-height: 40vh;
    padding: 5px;
    display: flex;
    text-align: center;
    opacity: 1;
    justify-content: center;
    background-position: center center;
    align-items: center;
    background-size: cover;
    background-image: url(../assets/images/blue_bricks.jpg);
}

.all_overview {
    position: relative;
    margin: 0;
    padding: 0;
}

.overview_title {
    color: #fff;
    font-size: 45px;
    font-weight: bolder;
    text-align: center;
}

.overview-img {
    float: left;
    width: 25%;
    padding: 10px;
}

.overview-img img {
    width: 100%;
    height: 75px;
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(calc(-250px * 7));
        transform: translateX(calc(-250px * 7));
    }
}

.slider {
    background: pr;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
    height: 180px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    -webkit-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    -webkit-animation: scroll 40s linear infinite;
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 12);
}

.slider .slide {
    height: 100%;
    width: 100%;
}

.clientsh2 {
    text-align: center;
    font-size: 35px;
    font-weight: 120;

}

.slide img {
    height: 180px;
    width: 100%;
    padding: 20px;

}

.slide img:hover {
    transform: scale(1.80);
}

/* Introduction */
.intro {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 0px 12% 10px 5px;
    display: flex;
    text-align: center;
    opacity: 1;
    justify-content: center;
    background-position: center center;
    align-items: center;
    background-size: cover;
    background-image: url(../assets/images/green-wall.jpg);
}
.intro-all{
    position: relative;
    margin: 0;
    padding: 0;
}
.intro-all h2{
    color: #fff;
    font-size: 45px;
    font-weight: bolder;
    text-align: center;
}
h5{
    color: #fff;
    font-size: 20px;
    font-weight: lighter;
    text-align: center;
}
.intro-details{
    color: #fff;
    font-family: cambria;
    padding: 50px;
    justify-content: left;
    text-align: left;
    
    /* animation: slideIn_other 5s ease-in-out forwards; */
}
.intro-details p{
    text-align: left;
    font-family: Cambria;
}
.intro-details b{
    font-family:Georgia;
}


/* footer */
.footer {
    /* background: #252525; */
    background-image: url(../assets/images/Web_Footer.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 150px 0;
    line-height: 20px;
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    /* margin-left: 20px; */
}

ul {
    list-style: none;

}

.footer-col_corner,
.footer-col {
    margin-left: 78px;
    width: 15%;
    /* padding: 0 8px; */
}


.footer-col_corner h4,
.footer-col h4 {
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
}

.footer-col_corner h4::before,
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #84A052;
    height: 2px;
    box-sizing: border-box;
    width: 50px;
}

.footer-col_corner ul li a,
.footer-col ul li a {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;

}

.footer-col_corner ul li,
.footer-col ul li {
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    text-decoration: none;
    font-weight: 300;
    color: #bbbbbb;
    display: block;
    transition: all 0.3s ease;
}

.footer-col_corner ul li:hover,
.footer-col ul li:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col_corner ul li a:hover .footer-col ul li a:hover {
    color: #fff;
    padding-left: 10px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 40px;
    width: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 0 10px 10px 0;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.4s ease;
}

.footer-col .social-links a:hover {
    color: #24262b;
    background-color: #fff;
}

.footercopyright {
    width: 100%;
    background-color: #33B6EA;
    height: 30px;
    justify-self: center;
}
