.heroImg.abt{
    background-image: url("../image/kitchen.jpeg");
    background-position: right top;
    background-size: cover;
}

/* Hero Section */
.hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}
.hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 20px;
}
.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}
.hero-content p {
    font-size: 1.2rem;
    animation: fadeInUp 1.2s ease;
}

@keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-30px);}
    to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInUp {
    from {opacity: 0; transform: translateY(30px);}
    to {opacity: 1; transform: translateY(0);}
}

/* Mission & Vision */
.about-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.about-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.about-box:hover {
    transform: translateY(-10px);
}
.about-box h2 {
    margin-top: 0;
    color: #003366;
    font-size: 1.3rem;
}

/* History / About Content */
.history {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.history h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #003366;
}
.history p {
    line-height: 1.7;
    color: #555;
    font-size: 1.05rem;
}

/* Team Section */
.team {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
}
.team h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #003366;
}
.team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}
.member {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.member:hover {
    transform: scale(1.05);
}
.member img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}
.member-info {
    padding: 15px;
}
.member-info h3 {
    margin: 10px 0 5px;
    font-size: 1.0rem;
    color: #003366;
}
.member-info span {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* .aboutContainer{
    width: 100%;
    padding: 0 0 20px;
    background-color: white;
}
.tab {
    background-color: #290c31d8;
    margin: 0 10rem;
}
.tab button {
  margin-right: 1px;
  color: wheat;
} 
.tabcontent {
  display: none;
  padding: 40px 80px;
  border: 1px solid #ccc;
  border-top: none;
  animation: fadeEffect 1s; 
}
.img_cap{
    display: flex;
    flex-direction: column;
    align-items: center;
    float:left;
    margin: 0 15px 6px 0;
}
.tabcontent .img_cap img{
    width: 150px;
    height: 150px;
    padding: 3px;
    border: 2px solid darkslategrey;
    display: block;
}
.tabcontent .img_cap span{
    font-size: 15px;
    font-weight: 500;
    margin: 5px 0 -5px;
}
.tabcontent .img_cap small{
    font-size: 12px;
    font-weight: 500;
    color: rgb(81, 81, 126);
    margin: 5px 0 -3px;
}
.img_cap::after{
    clear: both;
} */


/* @media only screen and (max-width: 840px) {

}  */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 500px) {

    /* .tab {
        margin: 0;
    }
    .tabcontent {
      padding: 30px 10px 0;
    }
    .heroImg .overlay .tag h5{
        font-size: 13px;
    } */
}
