@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Poppins', sans-serif;
}


:root{
    --primary_color: rgba(8, 14, 87);
    --secondary_color:  #1a73e8;
    --accent_light: rgb(255, 169, 77); 
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #333;
  box-sizing: border-box;
}

header {
  position: relative;
  background-image: url('assets/images/hero_background_2.png');
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  color: #fff;
  /* padding: 60px 20px; */
  text-align: center;
  height: 100vh;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  line-height: 40px;
  color:var(--secondary_color);
}

header p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

header a {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 5px;
}

.logo{
    width: 150px;
    margin-bottom: 10px;
}

.hero_text_container{
    position: absolute;
    z-index: 2;
    padding: 60px 20px;
}

.hero_overlay{
    position: absolute;
    top: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 14, 87, 0.575);
    z-index: 1;
}

.btn-primary {
  background: var(--secondary_color);
  color: #fff;
}

.btn-outline {
  
  color: #fff;
}

.btn-primary-green{
  background: #0dbc10;
  color: #fff;
  padding: 10px 12px;
  border-radius: 5px;
  /* text-decoration: none; */
  font-weight: bold;
}

.btn-outline:hover{
    border: 2px solid #fff;
}

.who_we_are{
    margin-top: 50px;
    background-color: rgb(243,249,251);
}

.staff_image{
  width: 200px;
}

.tech_community_container{
  background: #55f55836;
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

.tech_community_flyer{
  width: 100%;
}

.community_col_1{
  width: 40%;
  text-align: left;
}

.community_col_2{
  width: 40%;
  text-align: left;
}

.community_col_1>h2{
  text-align: left;
}

a{
  text-decoration: none;
}


section {
  padding: 90px 50px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}


.cards,
.programs,
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.card,
.program,
.benefit {
  flex: 1 1 250px;
  background: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  /* min-width: 300px; */
  max-width: 320px;
}

.cta {
  position: relative;
  background: var(--secondary_color);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  margin: 50px auto -50px auto; /* pull it up to overlap footer */
  max-width: 700px;
  border-radius: 10px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta a {
  background: #fff;
  color: rgb(8, 14, 87);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
}

footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 100px 20px 20px; /* more top padding for CTA space */
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}

footer a {
  color: #fff;
  margin: 0 5px;
  text-decoration: none;
}

.bi{
  display: block;
  font-size: 100px;
}

/* Flex classes */
.flex_column{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.flex_row_wrap{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex: 1 1 250px;
}

.flex_row_wrap_space_evenly{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 40px;
    flex: 1 1 250px;
}

@media (max-width: 768px) {
  .cards,
  .programs,
  .benefits {
    flex-direction: column;
    align-items: center;
  }

  .cta {
    margin: 60px 20px -50px 20px;
    padding: 30px 15px;
  }

  .community_col_1{
  width: 80%;
  text-align: center;
}

.community_col_2{
  width: 80%;
  text-align: left;
}

.community_col_1>h2{
  text-align: center;
}

.tech_community_container{
  padding: 100px 0px;
  max-width: 1000px;
  margin: auto;
}

.who_we_are{
  text-align: center;
}

}
