
body {
    
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
  }

  
  
  /* Remove horizontal scroll bar on mobile devices */
  @media (max-width: 768px) {
    body {
      overflow-x: hidden; /* Prevents horizontal scrolling on mobile devices */
    }
    html {
        /* This ensures that padding and border are included in the box sizing */
        box-sizing: border-box;
        overflow-x: hidden; /* Prevents horizontal scrolling on all devices */
      }
  }
  
  img, iframe {
    max-width: 100%;
    height: auto;
  }
 
.background-container {
    position: relative; 
    max-width: 100%;
    height: 80vh; 
    background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgb(30, 29, 29) 100%), url('/images/about-page.png') no-repeat center center; /* Center the background image */
    background-size: cover; 
    display: flex;
    justify-content: center; 
    object-fit: fill; align-items: center;
    z-index: 2;
}


.about-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:center;
    transform: translate(-50%,  -50%);
    top: 60%;
    left: 50%;
}

.about-content h1 {
    margin-bottom: 10px;
width: 960px;
font-family: 'Teko';
font-style: normal;
font-weight: 700;
font-size: 96px;
line-height: 100px;
text-align: center;
text-transform: uppercase;
color: #FFFBEA;
}

.about-content p {
font-family: 'Poppins';
font-style: normal;
font-weight: 500;
font-size: 24px;
line-height: 32px;
text-align: center;
letter-spacing: 0.005em;
color: #FFFFFF;

}

@media (max-width: 768px) {
    .background-container {
        position: relative; 
        max-width: 100%;
        height: 100vh; 
        background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgb(30, 29, 29) 100%), url('/images/about-page.png') no-repeat center center; /* Center the background image */
        background-size: cover; 
        display: flex;
        justify-content: center; 
        object-fit: fill; align-items: center;
        z-index: 2;
    }
    
    
    .about-content{
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        transform: translate(-50%,  -50%);
        top: 60%;
        left: 50%;
    }
    
    .about-content h1 {
        margin-bottom: 10px;
    width: 320px;
    font-family: 'Teko';
    font-style: normal;
    font-weight: 700;
    font-size: 46px;
    line-height: 46px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFBEA;
    }
    
    .about-content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
    letter-spacing: 0.005em;
    color: #FFFFFF;
    
    }
}

.about-us{
    padding-top: 120px;
    
}
/* approch */
.approch{
    display: flex;
    flex-direction: column;
   
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 80px;
}

.approch h1{
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: #008081;
}

.approch p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000; 
    width: 800px;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .approch {
        padding: 0px 40px; /* Adjust padding for tablets */
    }

    .approch h1 {
        font-size: 48px; /* Adjust font size for tablets */
    }

    .approch p {
        font-size: 16px; /* Adjust font size for tablets */
        width: 100%; /* Allow paragraph to take full width */
        padding: 0 20px; /* Add some padding for readability */
    }
}

@media (max-width: 768px) {
    .about-us {
        padding-top: 200px;
    }
    .approch {
        padding: 0px 20px; /* Reduced padding for smaller screens */
    }

    .approch h1 {
        font-size: 36px; /* Adjust font size for smaller screens */
    }

    .approch p {
        font-size: 14px; /* Adjust font size for smaller screens */
        width: 100%; /* Ensure paragraph takes full width */
        padding: 0; /* Remove extra padding */
    }
}

@media (max-width: 480px) {
    .approch {
        padding: 0px 10px; /* Further reduced padding for very small screens */
    }

    .approch h1 {
        font-size: 32px; /* Further reduced font size for very small screens */
    }

    .approch p {
        font-size: 18px; /* Further reduced font size for very small screens */
        width: 100%; /* Ensure paragraph takes full width */
        padding: 0; /* Remove padding */
    }
}


/* story */
.story{
    display: flex;
    gap: 40px;
    margin-top: 70px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 80px;
    background-color: rgb(238, 237, 237);
}

.story-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   
}

.story-text h1{
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: #008081;
    margin-bottom: 40px;
}

.story-text p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    color: #000000; 

    
}

.story-text ul{
    margin:40px 40px;
    list-style-type: none;
    display: flex;
    gap: 30px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    color: #00808199;
}
.story-text ul:active{
    color: #008081;
}
.year {
    color: #00808199;
}

.year.active {
    color: #008081; /* Active year color */
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .story {
        padding: 60px 40px; /* Adjust padding for tablets */
        flex-direction: column; /* Stack image and text vertically */
    }

    .story img {
        width: 100%; /* Make the image responsive */
        height: auto; /* Maintain aspect ratio */
        margin-bottom: 20px; /* Add space between image and text */
    }

    .story-text {
        width: 100%; /* Full width for text section */
    }

    .story-text h1 {
        font-size: 48px; /* Adjust font size for tablets */
        margin-bottom: 30px; /* Adjust spacing for tablets */
    }

    .story-text p {
        font-size: 16px; /* Adjust font size for tablets */
        width: 100%; /* Full width for better readability */
        padding: 0 20px; /* Add some padding for readability */
    }

    .story-text ul {
        margin: 20px 0; /* Adjust margin for tablets */
        flex-direction: column; /* Stack list items vertically */
        align-items: center; /* Center align list items */
        gap: 10px; /* Adjust gap between list items */
    }
}

@media (max-width: 768px) {
    .story {
        padding: 40px 20px; /* Further reduce padding for smaller screens */
    }

    .story img {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 15px; /* Reduced space between image and text */
    }

    .story-text h1 {
        font-size: 36px; /* Further reduce font size for smaller screens */
        margin-bottom: 20px; /* Adjust spacing for smaller screens */
    }

    .story-text p {
        font-size: 14px; /* Further reduce font size for smaller screens */
        width: 100%; /* Full width for smaller screens */
        padding: 0 15px; /* Reduced padding */
    }

    .story-text ul {
        margin: 10px 0; /* Adjust margin for smaller screens */
        gap: 5px; /* Reduced gap between list items */
    }
}

@media (max-width: 480px) {
    .story {
        padding: 20px 10px; /* Minimum padding for very small screens */
    }

    .story img {
        width: 100%; /* Full width for very small screens */
        margin-bottom: 10px; /* Minimal space between image and text */
    }

    .story-text h1 {
        font-size: 28px; /* Further reduce font size for very small screens */
        margin-bottom: 15px; /* Adjust spacing for very small screens */
    }

    .story-text p {
        font-size: 18px; /* Further reduce font size for very small screens */
        width: 100%; /* Full width */
        padding: 0 10px; /* Minimal padding */
    }

    .story-text ul {
        margin: 5px 0; /* Adjust margin for very small screens */
        gap: 5px; /* Reduced gap between list items */
    }
}



/* team */
.team{
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 80px;
}

.team h1{
    font-family: 'Oswald';
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: #008081;
}

.team p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    color: #000000; 
    width: 800px;
}

.our-team{
    margin-top: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 40px;
    width: 800px;
}
.our-team1 h1{
    font-family: 'Teko';
    font-style: normal;
    font-weight: 500;
    font-size: 30px;
    color: #008081;
}
.our-team1{
    width: 300px;

}


.our-team1 p{
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    color: #515151; 
    width: 300px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .team {
        padding: 0 40px; /* Adjust padding for tablets */
    }

    .team p {
        width: 100%; /* Full width for better readability on tablets */
        padding: 0 20px; /* Add padding for better readability */
    }

    .our-team {
        flex-direction: column; /* Stack team members vertically on tablets */
        width: 100%; /* Full width for tablets */
        padding: 20px; /* Adjust padding for tablets */
        gap: 20px; /* Reduced gap between team members */
    }

    .our-team1 {
        width: 100%; /* Full width for team member blocks */
        text-align: center; /* Center align text */
    }

    .our-team1 h1 {
        font-size: 24px; /* Adjust font size for tablets */
    }

    .our-team1 p {
        font-size: 14px; /* Adjust font size for tablets */
        width: 100%; /* Full width for better readability */
        padding: 0 10px; /* Add padding for better readability */
    }
}

@media (max-width: 768px) {
    .team {
        padding: 0 20px; /* Further reduce padding for smaller screens */
    }

    .team p {
        font-size: 16px; /* Further reduce font size for smaller screens */
        width: 100%; /* Full width */
        padding: 0 10px; /* Add padding for better readability */
    }

    .our-team {
        padding: 10px; /* Further adjust padding for smaller screens */
        gap: 15px; /* Reduce gap between team members */
    }

    .our-team1 {
        width: 100%; /* Full width for team member blocks */
    }

    .our-team1 h1 {
        font-size: 20px; /* Further reduce font size for smaller screens */
    }

    .our-team1 p {
        font-size: 12px; /* Further reduce font size for smaller screens */
        padding: 0 5px; /* Add minimal padding for better readability */
    }
}

@media (max-width: 480px) {
    .team {
        padding: 0 10px; /* Minimum padding for very small screens */
    }

    .team p {
        font-size: 18px; /* Further reduce font size for very small screens */
        padding: 0; /* Remove padding for very small screens */
    }

    .our-team {
        padding: 5px; /* Minimal padding for very small screens */
        gap: 10px; /* Further reduce gap between team members */
    }

    .our-team1 {
        width: 100%; /* Full width for team member blocks */
    }

    .our-team1 h1 {
        font-size: 28px; /* Further reduce font size for very small screens */
    }

    .our-team1 p {
        font-size: 18px; /* Further reduce font size for very small screens */
        padding: 0; /* Remove padding for very small screens */
    }
}


/* blog */
.blog-container{
    display: flex;
    flex-direction: column;
    margin-top: 70px;
    justify-content: center;
    align-items: center;
}

.blog-container h2{
    font-family: 'Teko';
    font-style: normal;
    font-weight: 500;
    font-size: 60px;
    color: #008081;
}
.blog-con{
    display: flex;
}
.bc{
    position: relative;
}

.overlay-text1{
position: absolute;
    top: 80%;
    left: 30%;
    transform: translate(-50%, -50%);

    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5); /* Optional: adds a shadow to the text */
    text-align: left;
    white-space: nowrap; 
font-family: 'Teko';
font-style: normal;
font-weight: 600;
font-size: 30px;
letter-spacing: -0.02em;
color: #F4F4F4;
}
/* Responsive Styles */
@media (max-width: 1024px) {
    .blog-container h2 {
        font-size: 40px; /* Adjust font size for tablets */
    }

    .blog-con {
        flex-direction: column; /* Stack blog items vertically on tablets */
        gap: 20px; /* Add some space between items */
    }

    .bc {
        width: 100%; /* Full width for blog items on tablets */
    }

    .overlay-text1 {
        font-size: 24px; /* Adjust font size for tablets */
        top: 70%; /* Adjust position for better visibility on tablets */
        left: 50%; /* Center text horizontally */
        transform: translate(-50%, -50%); /* Center text */
    }
}

@media (max-width: 768px) {
    .blog-container h2 {
        font-size: 32px; /* Further reduce font size for small screens */
    }

    .blog-con {
        flex-direction: column; /* Stack blog items vertically */
        gap: 15px; /* Reduce gap between items */
    }

    .bc {
        width: 100%; /* Full width for blog items */
    }

    .overlay-text1 {
        font-size: 20px; /* Further reduce font size */
        top: 60%; /* Adjust position for better visibility */
        left: 50%; /* Center text horizontally */
        transform: translate(-50%, -50%); /* Center text */
    }

  
}

@media (max-width: 480px) {
    .blog-container h2 {
        font-size: 60px; /* Further reduce font size for very small screens */
    }

    .blog-con {
        flex-direction: column; /* Stack blog items vertically */
        gap: 10px; /* Further reduce gap between items */
    }

    .bc {
        width: 100%; /* Full width for blog items */
    }

    .overlay-text1 {
        font-size: 35px; /* Further reduce font size */
        top: 50%; /* Adjust position for very small screens */
        left: 50%; /* Center text horizontally */
        transform: translate(-50%, -50%); /* Center text */
    }
}
@media only screen and (min-width: 1440px) and (max-width: 1920px) {
    .background-container {
        position: relative;
        width: 100%;
        height: 80vh;
        background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgb(30, 29, 29) 100%), url(/images/about-page.png) no-repeat center center;
        background-size: cover;
        z-index: 2;
    }
}

@media only screen and (min-width: 1920px){
    .background-container {
        position: relative;
        width: 100%;
        height: 80vh;
        background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgb(30, 29, 29) 100%), url(/images/about-page.png) no-repeat center center;
        background-size: cover;
        z-index: 2;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1920px){
    .story {
        display: flex;
        /* gap: 40px; */
        margin-top: 70px;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 80px 80px;
        background-color: rgb(238, 237, 237);
    }
}
@media  only screen and (min-width: 769px) and (max-width: 1024px)  {

    .background-container {
        position: relative; 
        max-width: 100%;
        height: 80vh; 
        background: linear-gradient(to bottom, rgba(16, 16, 16, 0) 0%, rgb(30, 29, 29) 100%), url('/images/about-page.png') no-repeat center center; /* Center the background image */
        background-size: cover; 
        display: flex;
        justify-content: center; 
        object-fit: fill; align-items: center;
        z-index: 2;
    }
    
    
    .about-content{
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items:center;
        transform: translate(-50%,  -50%);
        top: 60%;
        left: 50%;
    }
    
    .about-content h1 {
        margin-bottom: 10px;
    width: 960px;
    font-family: 'Teko';
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 100px;
    text-align: center;
    text-transform: uppercase;
    color: #FFFBEA;
    }
    
    .about-content p {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
    letter-spacing: 0.005em;
    color: #FFFFFF;
    
    }
.feature {
    display: flex;
    text-align: center;
    margin-top: 80%;
    gap: 10px;
}
}
@media (max-width: 320px){
    .about-content {
        position: absolute;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translate(-50%, -50%);
        top: 70%;
        left: 50%;
    }
    .about-content h1 {
        margin-bottom: 10px;
        width: 300px;
        font-family: 'Teko';
        font-style: normal;
        font-weight: 700;
        font-size: 26px;
        line-height: 26px;
        text-align: center;
        text-transform: uppercase;
        color: #FFFBEA;
    }
    .about-content p {
        font-family: 'Poppins';
        font-style: normal;
        font-weight: 500;
        font-size: 20px;
        line-height: 20px;
        text-align: center;
        letter-spacing: 0.005em;
        color: #FFFFFF;
    }
  }