/*
 * File: style.css
 * Author: Yash Balotiya
 * Description: This file contains all the styling part of the index page
 * Created on: 07/07/2024
 * Last Modified: 27/11/2024
**/

* {
    margin: 0;
    padding: 0;
    font-family: "Open Sans";
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Lato";
    margin: 0;
    font-weight: bold;
}

/* Main Content Area other than Header & Footer */
main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Banner */
#bannerSection {
    overflow: hidden;
    width: 100%;
    height: 550px;
    position: relative;
}

.banner-inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    /* align-items: center; */
    align-items: end;
    color: #fff;
    position: relative;
    padding-bottom: 50px;
}

.banner-images {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 10000px;
    height: 100%;
    animation: scroll 60s linear infinite;
}

.banner-image {
    width: 1000px;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.banner-text {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px;
    border-radius: 20px;
}

.banner-text p {
    margin: 0;
}

/* Glass Effect */
.glass {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-8000px);
        /* 8500 */
    }
}

/* About Santani */
#aboutSection {
    width: 1200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #f3f2f3;
    padding: 40px;
    border-radius: 40px;
    text-align: justify;
    margin-top: 100px;
}

#aboutImg {
    width: 250px;
    border-radius: 50%;
    margin-right: 40px;
}

/* About Founder */
#aboutFounder {
    width: 1200px;
    background-color: #f3f2f3;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
}

#aboutFounder img {
    border-radius: 50%;
    width: 250px;
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

/* Work */
#ourWorkSection {
    width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#ourWorkDiv {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: #f3f2f3;
    border-radius: 40px;
    margin: 20px 0 100px 0;
    padding: 20px 0 32px 0;
}

#ourWorkDiv p {
    margin: 0;
}

.ourWork {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    text-align: center;
}

.countTxt {
    font-size: 60px;
    font-weight: bold;
    color: #3b8a69;
}

/* Certificate */
#certificateSection {
    width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#certificateSection img {
    width: 60%;
    margin: 20px 0;
    border-radius: 20px;
}