
html, body {
    overflow-x: hidden;
}
.aboutusheading{
    padding-left: 10%;
}
.aboutusherosection{
    margin-top: 8%;
}
.aboutusimagesection img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

/* about as heading and hero section */
.aboutusheading h1{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 70px;
    color: rgba(7, 20, 86, 1);
}

/* story section */
.storysection h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);

}

.storyparagraph p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgba(152, 151, 151, 1)

}

/* our vision section */

.ourvisionsection {
    background-color: rgba(245, 246, 255, 1);
}

.ourvisionsection h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);
}

.ourvisionsection p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgba(152, 151, 151, 1)
}

/* our mission section */

.ourmissionsection h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);
}

.ourmissionsection p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgba(152, 151, 151, 1);
}
/* milestone section */
.milestone {
    display: flex;
    align-items: center;
    margin-bottom: 98px;
    position: relative;
    padding: 0;
    padding-top: 2%;
   
}
.milestone-heading{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);
}

.static-year{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 80px;
    color: rgba(7, 20, 86, 1);
}

.milestone-year {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 80px;
    color: rgba(7, 20, 86, 1);
    transform: rotate(-10deg);
    min-width: 85px; /* Ensures alignment */
}

.milestone-media {
    width: 300px;
    flex-shrink: 0; /* Prevents shrinking */
}

.milestone-media img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: rotate(-5deg); /* Small slant */
}

.milestone-text {
    flex: 1;
    /* min-width: 600px; */
    padding: 0 20px;
}
.milestone-text p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgba(152, 151, 151, 1);
}
.scrollable-content{
    margin: 0;
    padding: 0;
    padding-top: 5%;
    max-height: 500px;
    overflow-y: scroll;
}

/* scroll bar styling */
/* Apply to the scrollable container */
.scrollable-content::-webkit-scrollbar {
    width: 6px; /* Thin but visible scrollbar */
}

/* Scrollbar Track (Full visible stylish line) */
.scrollable-content::-webkit-scrollbar-track {
    background: linear-gradient(to bottom, #ccc, #eee); /* Gradient track */
    border-radius: 3px;
}

/* Scrollbar Thumb (The moving block) */
.scrollable-content::-webkit-scrollbar-thumb {
    background: rgba(150, 150, 150, 0.8); /* Semi-transparent stylish look */
    width: 10px; /* Thick thumb */
    min-height: 40px; /* Ensure visibility */
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); /* Soft shadow effect */
}

/* Scrollbar Thumb - Hover Effect */
.scrollable-content::-webkit-scrollbar-thumb:hover {
    background: rgba(100, 100, 100, 0.9); /* Darker thumb on hover */
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}

/* Scrollbar Thumb - Active (When clicking on it) */
.scrollable-content::-webkit-scrollbar-thumb:active {
    background: rgba(80, 80, 80, 1); /* Even darker for click effect */
}

/* milestones for mobile */
.mobscrollcontent {
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents wrapping */
    padding-bottom: 5px;
  }

  .mobmilestoneheading h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 30px;
    color: rgba(7, 20, 86, 1);
  }
  
  .milestone-wrapper {
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory; /* Smooth snapping */
  }
  
  .milestone-card {
    flex: 0 0 auto;
    width: 250px; /* Fixed width for each card */
    min-height: 350px; /* Ensure enough height for text */
    /* background: lightgray; */
    padding: 0;
    margin-left: 2%;
    text-align: center;
    /* border-radius: 10px; */
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
  }
  
  .headyear h2{
    font-size: 80px;
    font-weight: 400;
    color: rgba(7, 20, 86, 1);

  }
  
  .milestoneimg img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  .milestoneparagraph {
    flex-grow: 1; /* Allows text to take available space */
    overflow: visible; /* Ensure text is fully visible */
    text-overflow: clip; /* Prevents cutting off text */
    white-space: normal; /* Allows text wrapping */
  }
  
  .milestoneparagraph p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: rgba(152, 151, 151, 1);
  }
  
  
  /* Hide Scrollbar */
  .mobscrollcontent::-webkit-scrollbar {
    display: none;
  }
  
/* our core value */

.core-values h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);
}

.core-values h3{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 25px;
    color: rgba(7, 20, 86, 1);
}

.core-values p{
    font-family: "Poppins",sans-serif;
    font-weight: 400;
    font-size: 13px;
    color: rgba(152, 151, 151, 1);
}

.value-box{
    max-width: 71%;
    margin-left: 5%;

}
.value-box img{
    width: 30px;
}

/* our team section */

.aboutusteam h2{
    font-family: "Urbanist",sans-serif;
    font-weight: 400;
    font-size: 50px;
    color: rgba(7, 20, 86, 1);
}

.aboutusteam p{
    font-family: "Poppins",sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: rgba(152, 151, 151, 1);
}
.teamtext p{
    font-size: 12px !important;
}
.team-img-box {
    width: 100%;
    height: 150px; /* Adjust based on design */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-img-box img {
    /* width: 85%; */
    height: 100%;
    /* object-fit: contain; */
}

/* Consistent text height */
.card-body h5 {
    font-size: 1.1rem;
    font-weight:600;
    min-height: 30px;
    color: rgba(7, 20, 86, 1);

}

.card-body p {
    font-size: .8rem;
    min-height: 45px; /* Ensures equal space for job titles */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(152, 151, 151, 1) !important;
}

/* Ensure LinkedIn icon stays at the bottom */
.social-icons {
    margin-top: auto; /* Pushes icon to bottom */
}

/* our core value mobile */
.core-value-header{
    font-family: "Urbanist",sans-serif;
    font-size: 26px;
    font-weight:400;
    color: #29327A;
}
.value-title{
    font-family: "Urbanist",sans-serif;
    font-size: 20px;
    font-weight:400;
    color: #29327A;
}
.value-title img{
    width: 10%;
}
.value-description{
    font-family:"Poppins",sans-serif;
    font-size: 12px;
    font-weight: 300;
    color: #989797;
}
/* responsiveness */

@media (max-width:768px){
    .aboutusheading h1{
        font-size: 26px;
    }
    .storysection h2{
        font-size: 26px;
    }
    .storyparagraph p{
        font-size: 12px;
    }   
    .ourvisionsection h2{
        font-size: 26px;
        margin-top: 3%;
    }    
    .ourvisionsection p{
        font-size: 12px;
    }
    .ourmissionsection h2{
        font-size: 26px;
        margin-top: 3%;
    }
    .ourmissionsection p{
        font-size: 12px;
    }
    .core-values h2{
        font-size: 26px;
    }
    .core-values h3{
        font-size: 25px;
    }
    .core-values p{
        font-size: 16px;
    }
    .aboutusteam h2{
        font-size: 26px;
    }
    .aboutusteam p{
        font-size: 12px;
    }
}
/* Medium Screens (425px - 728px) */
@media (max-width: 728px) {
    .aboutusherosection {
      margin-top: 11%;
    }
  }
  
  /* Small Screens (320px - 425px) */
  @media (max-width: 425px) {
    .aboutusherosection {
      margin-top: 16%;
    }
  }

  @media (min-width:1441px){
    .core-values h3{
        font-size: 30px;
    }
    .core-values p{
        font-size: 20px;
    }
    .value-box img{
        width: 50px;
    }
    .aboutusteam p{
        font-size: 18px;
    }

    .milestone-text p{
        font-size: 22px;
    }
    .ourmissionsection p {
        font-size: 22px;
    }
    .ourvisionsection p{
        font-size: 22px;
    }

    .ourvisionsection p{
        font-size: 22px; 
    }
    .storyparagraph p{
        font-size: 21px;
    }
  }