/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */

header {
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    margin-right: 20px;
    transition: all 0.2s ease-in-out;
}

nav a:hover {
    color: #f1c40f;
}

.menu {
    display: flex;
    list-style: none;
}

/* Hero Section Styles */

.hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #fff;
}

.btn {
    background-color: #f1c40f;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.2rem;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.btn:hover {
    background-color: #fff;
    color: #2c3e50;
}

/* Team Section Styles */

.team {
    padding: 80px 0;
}

.team h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.team-members {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.team-member {
    margin: 20px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 200px;
    object-fit: contain;
    border-radius: 1rem;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-top: 10px;
    color: #2c3e50;
}

.team-member p {
    font-size: 1.2rem;
    margin-top: 5px;
    color: #aaa;
}

/* Services Section Styles */

.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.service {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 900px;
    margin: auto;
}

.service-icon {
font-size: 4rem;
color: #f1c40f;
margin-bottom: 20px;
}

/* Service Content Styles */

.service h3 {
font-size: 1.8rem;
margin-bottom: 20px;
color: #2c3e50;
}

.service p {
font-size: 1.2rem;
text-align: center;
color: #aaa;
}

/* Testimonials Section Styles */

.testimonials {
background-color: #f8f9fa;
padding: 80px 0;
}

.testimonials h2 {
font-size: 3rem;
text-align: center;
margin-bottom: 40px;
color: #2c3e50;
}

.testimonial {
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
padding: 40px;
margin: 20px;
text-align: center;
}

.testimonial p {
font-size: 1.2rem;
margin-top: 20px;
color: #aaa;
}

.testimonial-author {
margin-top: 40px;
display: flex;
align-items: center;
justify-content: center;
}

.testimonial-author img {
width: 60px;
height: 60px;
border-radius: 50%;
margin-right: 20px;
}

.testimonial-author h4 {
font-size: 1.5rem;
color: #2c3e50;
}

.testimonial-author span {
font-size: 1.2rem;
color: #aaa;
}

/* Footer Styles */

footer {
background-color: #2c3e50;
color: #fff;
padding: 40px;
}

footer p {
font-size: 1.2rem;
margin-bottom: 20px;
}

footer a {
color: #fff;
text-decoration: none;
margin-right: 20px;
transition: all 0.2s ease-in-out;
}

footer a:hover {
color: #f1c40f;
}

#team-mb {
    display: flex; 
    justify-content:center
}

/* Media Query */

@media (max-width: 900px) {
    .hero h1 {
        font-size: 3rem;
    }
    #team-mb {
        display: grid;
        grid-template-columns: auto auto auto;
        place-items: center;
    }
}

.contact {
    background-color: #f8f9fa;
    padding: 80px 0;
  }
  
  .contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: #222;
  }
  
  .contact form {
    max-width: 500px;
    margin: auto;
  }
  
  .contact label {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    color: #222;
  }
  
  .contact input[type="text"],
  .contact input[type="email"],
  .contact input[type="message"] {
    border: 2px solid #dcdcdc;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 500px;
    color: #222;
    font-size: 1.2rem;
    font-weight: 400;
    transition: border-color 0.2s ease;
  }
  
  .contact input[type="text"]:focus,
  .contact input[type="email"]:focus,
  .contact input[type="message"]:focus {
    outline: none;
    border-color: #0d6efd;
  }
  
  .contact button[type="submit"] {
    background-color: #0d6efd;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 15px 30px;
    transition: background-color 0.2s ease;
  }
  
  .contact button[type="submit"]:hover {
    background-color: #0b5ed7;
  }
  
  #myChart {
    display: inline !important;
    max-width: 700px;
    margin: 0 auto;
}