.section_header_about .container {
   padding: 0;
   margin: 0;
}

.section_header_about {
   position: relative;
   height: 80vh;
   min-height: 0; 
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


.section_header_about .hero_overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.1);
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   padding: 0 20px;
}



.section_header_about h1 {
   font-size: 3.5rem;
   font-weight: 800;
   margin-bottom: 1rem;
   letter-spacing: 1px;
   text-align: center;
}


.section_header_about h1 .highlight {
   color: green;
}


.section_header_about p {
   font-size: 1.2rem;
   line-height: 1.7;
   color: #f4f4f4;
   max-width: 700px;
   margin: 0 auto;
   text-align: center;
   text-shadow: 2px 2px 2px rgba(0, 0, 0, 0);
}


/* Team Section */
.section_developers {
   background-color: #ffffff;
   padding: 80px 20px;
   text-align: center;
}


.section_developers h1 {
   font-size: 2.5rem;
   margin-bottom: 20px;
   color: #2c2c2c;
}


.section_developers p {
   font-size: 1rem;
   color: #444;
   max-width: 800px;
   margin: 0 auto 50px auto;
   text-align: center;
}


/* Developers Grid */
.developers {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   gap: 30px;
}


/* Individual Developer Card */
.developers .box {
   background: #f8f8f8;
   border-radius: 15px;
   width: 280px;
   padding: 20px;
   text-align: center;
   box-shadow: 0 10px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s, box-shadow 0.3s;
}


.developers .box img {
   border-radius: 50%;
   width: 150px;
   height: 150px;
   object-fit: cover;
   margin-bottom: 15px;
}


.developers .box h3 {
   font-size: 1.3rem;
   margin-bottom: 10px;
   color: #006400;
}


.developers .box p {
   font-size: 0.95rem;
   line-height: 1.4;
   color: #333;
   margin-bottom: 15px;
}


/* LinkedIn button */
.btn_developers {
   padding: 10px 20px;
   background-color: #7cc785;
   color: #fff;
   border-radius: 25px;
   font-weight: 600;
   font-size: 0.9rem;
   transition: background-color 0.3s;
}


.btn_developers:hover {
   background-color: #68b071;
   text-decoration: none;
}


/* Developer Card Hover Effect */
.developers .box:hover {
   transform: translateY(-5px);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}


.developers .box {
   border: 1px solid #e0e0e0;
   transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}


.developers .box:hover {
   border-color: #7cc785;
}


@media (max-width: 1024px) {
   .developers {
       justify-content: center;
   }
}


@media (max-width: 768px) {
   .section_header_home h1 {
       font-size: 2rem;
   }
   .section_header_home p {
       font-size: 1rem;
   }

   .developers .box {
       width: 90%;
   }
}
