html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

/*////////////////////////// HEADER NAVIGATION BAR SECTION ////////////////////////////*/

.header {
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    padding-top: 10px;
}

.header .logo {
    height: 60px;
}

.header-right {
    display: flex;
    align-items: center;
    font-family: 'Lato', sans-serif;
}

.header a {
    float: left;
    color: black;
    text-align: center;
    padding: 12px;
    text-decoration: none;
    font-size: 20px;
    line-height: 25px;
    border-radius: 4px;
}

/*////////////////////////// HERO IMAGE SECTION ////////////////////////////*/

.hero {
    margin-top: 10px;
    max-width: 100%;
}

.hero img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 87%, rgba(0, 0, 0, 0) 100%);
}

/*////////////////////////// STATEMENT SECTION ////////////////////////////*/

.statement {
    width: 1300px;
    margin-left: auto;
    margin-right: auto;
}

.statement h1 {
    margin: 20px;
    font-family: 'Tangerine', cursive;
    font-size: 70px;
    text-align: center;
}

.image-box {
    position: relative;
    display: flex;
    justify-content: right;
}

.image-box img {
    border-radius: 50px;
    width: 950px;
    height: 650px;
    object-fit: cover;
    object-position: right;
}

.colored-box {
    position: absolute;
    top: 16%;
    left: 0%;
    background-color: #87cdf6b0;
    color: white;
    padding: 20px; 
    max-width: 600px;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 32px;
    line-height: 1.65;
    text-align: justify;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2); /* Adds depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glossy edge */
}

/*////////////////////////// TECHNOLOGIES SECTION ////////////////////////////*/

.technologies {
    padding-top: 10px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.technologies h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
}

.tech-container {
    display: flex;
    overflow-x: auto;
    font-family: Arial, Helvetica, sans-serif;
}

.tech-item {
    flex: 0 0 auto;
    width: 320px;
    padding-right: 40px;
    font-family: Poppins, sans-serif;
    text-align: justify;
}

.tech-icon {
    max-width: 100px;
    max-height: 100px;
}

/*////////////////////////// ABOUT US SECTION ////////////////////////////*/

.story {
    padding-top: 10px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.story h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
}

.story p {
    font-family: Poppins, sans-serif;
    font-size: 32px;
    text-align: justify;
}

/*////////////////////////// PROFILE SECTION ////////////////////////////*/

.company-profile {
    padding-top: 10px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.company-profile h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
}

.company-profile h3 {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 30px;
}

.strategy {
    display: flex;
    justify-content: space-between;
}

.vision {
    width: 480px;
    margin: 20px;
    padding: 20px;
    margin-left: 0px;
    background-color: #267926;
    color: white;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    text-align: justify;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2); /* Adds depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glossy edge */
}

.mission {
    width: 480px;
    margin: 20px;
    padding: 20px;
    margin-right: 0px;
    background-color: #28688d;
    color: white;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 20px;
    text-align: justify;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2); /* Adds depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glossy edge */
}

.values {
    background-color: #7c247c;
    color: white;
    padding-right: 40px; 
    padding-left: 40px;
    padding-bottom: 25px;
    margin-top: 20px;
    border-radius: 20px;
    font-family: Poppins, sans-serif;
    font-size: 25px;
    box-shadow: 0 16px 16px 0 rgba(0, 0, 0, 0.2); /* Adds depth */
    border: 1px solid rgba(255, 255, 255, 0.3); /* Subtle border for glossy edge */
}

/*////////////////////////// TEAM SECTION ////////////////////////////*/

.team {
    padding-top: 10px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50px;
}

.team h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
}

.team-member {
    display: flex;
    padding: 10px;
    width: 100%;
    justify-content: left;
    align-items: start;

}
.photo {
    border-radius: 50%; /* This makes the image circular */
    overflow: hidden;  /* This ensures no part of the image spills outside the circular boundary */
    /* Optional: Set a specific size for the image */
    width: 160px;      /* Or any size you prefer */
    height: 160px;     /* This should be equal to the width for a perfect circle */
    object-fit: cover; /* This makes sure the image covers the circular area nicely */
    
    border: 6px solid #87cdf6;
}

.member-description {
    padding: 10px;
    display: block;
}

/*////////////////////////// CONTACT SECTION ////////////////////////////*/

.contact {
    padding-top: 10px;
}

.contact h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 50px;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contact2 {
    padding-top: 10px;
    padding-left: 50px;
    display: flex;
    justify-content: left;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .header-right {
      display: none;
    }
  }
  