.pragati-narrow-regular {
    font-family: "Pragati Narrow", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .pragati-narrow-bold {
    font-family: "Pragati Narrow", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
.about-text-content{
    font-family: "Pragati Narrow", sans-serif;   
}
body{
    margin: 0px;
    font-family: "Pragati Narrow", sans-serif;   
}

.navbar {
    display: flex;
    justify-content: space-between;
    padding: 4px;
    position: fixed;
    z-index: 1;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* .navbar img {
    width: 150px;
    height: 100px;
} */

.navbar a {
    /* margin-top: 20px; */
    margin-right: 60px;  
    text-decoration: none;
    color: black;
    font-weight: bold;
}

.navbar a:hover {
    color: blue;
}
.container-sub{
    position: relative;
    /* top: 6rem; */
}
.headtext{
    font-weight: bold;
    font-size: 6.5rem;
    /* padding: 5px; */
}
.small-text{
    padding: 1rem;
    font-size: 1.3rem;
    font-weight: 100;
}
.about-us-description {
    position: relative;
    margin-top: 20px; /* Adjust as needed */
}

.about-us-description span {
    font-size: 1.2rem;
    line-height: 1.5;
    display: block; /* Each text block will start on a new line */
    padding: 0 20px; /* Add padding to the sides */
}
.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.social-icons a {
    margin: 0 10px;
    color: black;
    font-weight: bold;
    font-size: 24px;
    text-decoration: none;
}
.nav-link{
    margin-top: 30px;
    display: flex;
    gap: 1rem;
}
.image-container {
    position: relative;
}

.text-overlay {
    position: absolute;
    bottom: 40%;
    text-align: center;
    font-weight: bold;
    font-family: "Pragati Narrow", sans-serif;   
    font-size: 1.5rem;
    left: 10%;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    animation: slideIn 1s linear;
}
.image{
    background-repeat: no-repeat;
    object-fit: cover;
    width: 100%;
    height: 50%;
}
.about-container{
    display: flex;
    justify-content: space-between;
    margin-top: 10%;
}
.about-text{
    font-weight: bold;
    font-size: 2rem;
    padding: 20px;
}
.learn-more-btn{
    border: none;
    background-color: #CC6223;
    padding: 15px; color: white;
    border-radius: 5px;
    font-family: "Pragati Narrow", sans-serif;   
}
.services-text{
    color: white;
    font-weight: bold;
    font-size: 3rem;
    padding: 20px;
}
.background-image{
    background-image: url(../assests/contactimg.jpg);
    padding: 40px;
    object-fit: cover;
}
.contact-container{
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 5%;
}
.contact-box{
    display: flex;
    flex-direction: column;
    padding: 20px;
    /* align-items: center; */
    /* align-content: center; */
    align-self: center;
}
.label-cont{
    display: flex;
    flex-direction: column;
}
.label-text{
    align-self: flex-start;
}
.contact-submit-btn{
    border: none;
    background-color: #CC6223;
    padding: 15px;
    color: white;
    border-radius: 5px;
    width: 10rem;
    height: 3rem;
    font-weight: bold;
    font-family: Pragati Narrow, sans-serif;
}
/* .grid-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    /* width: 90%;
  } */
  
  .grid-item {
    display: grid;
    gap: 2rem;
    padding: 20px;
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-item-two {
    display: grid;
    margin-left: 10%;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-item-five {
    display: grid;
    gap: 2rem;
    padding: 20px;
    /* margin-left: 5%; */
    grid-template-columns: repeat(4, 1fr);
}
  .card {
    background-color: #dbf0fd;
    border-radius: 40px;
    border-color: #CC6223;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 90%;
    font-size: 12px;
  }
  
  .card-content {
    padding: 20px;
    text-align: center;
  }
  .card-two {
    background-color: #f2f2f2;
    border-radius: 10px;
    border-color: #CC6223;
    width: fit-content;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px;
    height: 90%;
    font-size: 12px;
  }
  
  .card-content-two {
    padding: 20px;
    text-align: left;
  }
  
  .card-content h3 {
    margin-top: 0;
  }
  
  .card-content p {
    margin-bottom: 0;
  }
  .card ul {
    padding: 0;
    margin: 0;
    text-align: left;
  }
  
  .card li {
    /* list-style: none; */
    margin-bottom: 5px; /* Adjust margin between list items */
  }
  
@keyframes slideIn {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}