*{
    margin: 0;
}

html{
    scroll-behavior: smooth;
}
body {
    font-family: 'Montserrat', sans-serif;
}  
picture,
video,
canvas,
svg
{
    display: block;
    max-width: 100%;
    user-select: none;

} 


    .slider-container {
      width: 1920px; /* Changed from 98vw to fixed width */
      height: 600px; /* Changed from 50vh to fixed height */
      overflow: hidden;
      position: relative;
      /* Removed box-shadow */
      border-radius: 12px;
      margin: 0 auto;
      margin-top: 50px;
    }

    .slider {
      display: flex;
      gap: 0;
      position: relative;
    }

    .slider img {
      width: 1920px; /* Changed from 100vw to match container width */
      flex-shrink: 0;
      object-fit: cover;
      height: 100%;
       filter: grayscale(100%);
    }

    /* Grayscale effect on hover */
    .slider-container:hover .slider img {
      filter: grayscale(0%);
    }

    /* Updated responsive adjustments */
    @media (max-width: 1920px) {
      .slider-container {
        width: 100%;
      }
      .slider img {
        width: 100%;
      }
    }



.header{
    display: flex;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    justify-content: center;
    height: 25px;
    background-color: white;

}

.header_img img{
  display: block;
  max-width: 100%;
  user-select: none;

}

.header_menu{
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    gap: 6em;
    font-size: large;
}
.header_link{
    text-decoration: none;
  
    color: black;
}

.text_container{
    margin-top: 50px;
    display: flex;
    position: relative;
    margin-bottom: 25px;
    justify-content: center;
}
.text_container img{
max-width: 100%;
height: auto;
}
.img_text{
    position: absolute;
    top: 50px;
    left: 200px;
    color: white;
}
.heading{
    font-size: 5rem;
    font-weight: bold;
}
.text{
    font-size: 1.3rem;
}
.group_heading{
    display: flex;
    justify-content: center;
    height: 400px;
}
.group_heading h1{
    color: #CE0029;
    font-size: 2.5rem;

}
.group_heading p{
    font-size: 1.2rem;

}
.heading1{
    width: auto;
    background: #F6F6F6;
    padding-bottom: 50px;
    padding-top: 50px;
    padding-left: 50px;
    padding-right: 50px;
}

.work-divider {
    margin-top: 28px;
    height: 5px;
    width: 400px;
    border: 2px solid #2058A5;
    background: #2058A5;
    margin-bottom: 20px;
}
.container1{
  width: 350px;
  height: 400px;
  overflow: hidden;
  transition: font-size 0.2s ease-in-out;
  border-radius: 5px;
}
.container1 img{
  transition: transform .5s ease-in-out;
  width: 700px;
  height: 150px;
}


.container1:hover .hover1{
  background-color: #2058A5;
  transform: translate3d(-350px, 0,0);
}
.container1:hover h3{
  color: white;
  animation:0.5s t;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;


  
}
@keyframes t {
  from{
    transform: scale(1.1) translateX(0px)
  }
  to{
    transform: scale(1.5) translateX(60px)
  }
}
.container1 h3{

  padding-left: 10px;
  font-size: 26px;
  margin-top: 20px;
}
.container1 p{
  font-size: 20px;
  transition: font-size 0.2s ease-in-out;
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 20px;
}
.container1:hover p{
  color: white;
}
.container1:hover{
  background-color: #2058A5;
}
.button11{
  background: transparent;
  border-color: transparent;
  font-size: 20px;
  color: blue;
  transition: font-size 0.2s ease-in-out;
  margin-top: 20px;
  padding-left: 10px;
}

.container1:hover .button11{
  color: white;
  cursor: pointer;
  animation: 0.5s s ease-in-out;

}
@keyframes s{
  from{
    margin-top: 0px;

  }
  tp{
    margin-top: 50px;
  }
}



.our_services{
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 50px;


}
.service_1
{
    width: 350px;
    height: 400px;
    background-color: #2058A5;
    overflow: hidden;
    padding-left: 10px;
}
.service_1 h3{
    color: white;
}
.service_1 h1{
    font-size: 3rem;
    padding-bottom: 5px;
    color: #FFA800;
}
.service_1 p{
    font-size: 1.5rem;
    color: white;
}
.service_2{
    width: 350px;
    height: 400px;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
  
}
.bottom_button{
  float: right;
  position: fixed;
}
.testing{
    width: 350px;
    height: 400px;
    margin-bottom: 50px;
    border: 5px solid red;
    margin-top: 100px;
}
.testing:hover{
    color: white;
    background-color: #1f55a6;
    font-size: 1.5rem;
}
.testing:hover .testing1{
    display: inline;
    float: right;
    width: 100px;
    height: 100px;
    position: relative;
}
.testing2{
    width: 100px;
    height: 100px;
}
.testing1{
    display: none;
}
.testing h1{

    margin-top: 100px;
}

.service_2 .service_hover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}
.service_2:hover .service_hover {
    display: inline;
    width: 350px;
    height: 400px;
}
.service_2 h1{
    font-size: 3rem;
    padding-bottom: 5px;
}
.service_2 p{
    font-size: 1.5rem;
}
@keyframes slide{
    
    100%
    {
        display: block;
    }
}



.our_services3{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    width: auto;
    justify-content: center;
    gap: 4rem;
    margin-top: 50px;
    margin-bottom: 50px;

}
.our_services3 h1{
    color: #CE0029;
}
.service_heading{
  display: flex;
  justify-content: center;
  text-align: center;
  color: #CE0029;
}

.circle-container {
    text-align: center;
    width: 170px;
    margin-top: -100px;
}
.circle-container p{
    text-align: center;
    margin-left: 10px;
}

.circle {
    position: relative;
    display: inline-block;
    width: 170px;
    height: 170px;
}

.circular-chart {
    width: 170px;
    height: 170px;
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #eee;
    stroke-width: 3.8;
}

.circle-progress {
    fill: none;
    stroke-width: 3.8;
    stroke-linecap: round;
    stroke: green;
    transition: stroke-dasharray 1s ease-out;
}

.percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 18px;
    font-weight: bold;
}


.counters {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.counter-item {
  
    align-items: center;   /* Center-align the content */
    justify-content: center;
    text-align: center;
   
}
.counter-item h3{
    color: #f9d0d6;
    font-size: 5rem;
}

.counter {
    font-size: 5rem;
    font-weight: bold;
    color: #545454;
}
.plus {
    color: green; /* Change color to green */
    font-weight: bold; /* Optional: Make it bold for better visibility */
    font-size: 40px; /* Match the size of the number */
    margin-left: 5px; /* Add some spacing between the number and the + sign */
}


.S_section{
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 100px;
    text-wrap: wrap;
}
.S_section h1{
    color: #1f55a6;
    font-size: 3rem;
}

.L_section{
    display: flex;
    margin-top: 100px;
    justify-content: center;
    text-wrap: wrap;
    gap: 5rem;
    color: #545454;

}
.item1{
    width: 300px;
    height: 200px;
}
.item2{
    width: 300px;
    height: 200px;
}
.item3{
    width: 300px;
    height: 200px;
}
.item4{
    width: 300px;
    height: 200px;
}


.footer{
    display: flex;
    margin-top: 150px;
    width: 100%;
    color: black;
    gap: 6em;
    justify-content: center;
}
.footer div{
    text-align: left;
}
.col_1{
    margin-top: 130px;
    
}
.col_2{
    margin-top: 130px;
}
.col_4{
    margin-top: 130px;
}
.footer div h3{
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: 1px;
    font-size: 2rem;
}
.col_1 a{
    font-size: 1.2rem;
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 10px;

}
.col_2 a{
    font-size: 1.2rem;
    display: block;
    text-decoration: none;
    color: black;
    margin-bottom: 10px;
    
}
.col_3{
    margin-bottom: 20px;
}







/* Layout Styling */

#container {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 150px 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}


/* Button Styles */

.button {
  display: inline-flex;
  height: 40px;
  width: 150px;
  border: 2px solid #BFC0C0;
  margin: 20px 20px 20px 20px;
  color: #BFC0C0;
  text-transform: uppercase;
  text-decoration: none;
  font-size: .8em;
  letter-spacing: 1.5px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

a {
  color: #BFC0C0;
  text-decoration: none;
  letter-spacing: 1px;
}


/* First Button */

#arrow-hover {
  width: 15px;
  height: 10px;
  position: absolute;
  transform: translateX(60px);
  opacity: 0;
  -webkit-transition: all .25s cubic-bezier(.14, .59, 1, 1.01);
  transition: all .15s cubic-bezier(.14, .59, 1, 1.01);
  margin: 0;
  padding: 0 5px;
}

a#button-1:hover img {
  width: 15px;
  opacity: 1;
  transform: translateX(50px);
}


/* Second Button */

#button-2 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-2 a {
  position: relative;
  transition: all .35s ease-Out;
}

#slide {
  width: 100%;
  height: 100%;
  left: -200px;
  background: #FFA800;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#button-2:hover #slide {
  left: 0;
}

#button-2:hover a {
  color: #2D3142;
}


/* Third Button */

#button-3 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-3 a {
  position: relative;
  transition: all .45s ease-Out;
}

#circle {
  width: 0%;
  height: 0%;
  opacity: 0;
  line-height: 40px;
  border-radius: 50%;
  background: #BFC0C0;
  position: absolute;
  transition: all .5s ease-Out;
  top: 20px;
  left: 70px;
}

#button-3:hover #circle {
  width: 200%;
  height: 500%;
  opacity: 1;
  top: -70px;
  left: -70px;
}

#button-3:hover a {
  color: #2D3142;
}


/* Fourth Button */

#button-4 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-4 a {
  position: relative;
  transition: all .45s ease-Out;
}

#underline {
  width: 100%;
  height: 2.5px;
  margin-top: 15px;
  align-self: flex-end;
  left: -200px;
  background: #BFC0C0;
  position: absolute;
  transition: all .3s ease-Out;
  bottom: 0;
}

#button-4:hover #underline {
  left: 0;
}


/* Fifth Button */

#button-5 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-5 a {
  position: relative;
  transition: all .45s ease-Out;
}

#translate {
  transform: rotate(50deg);
  width: 100%;
  height: 250%;
  left: -200px;
  top: -30px;
  background: #BFC0C0;
  position: absolute;
  transition: all .3s ease-Out;
}

#button-5:hover #translate {
  left: 0;
}

#button-5:hover a {
  color: #2D3142;
}


/* Sixth Button */

#button-6 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-6 a {
  position: relative;
  transition: all .45s ease-Out;
}

#spin {
  width: 0;
  height: 0;
  opacity: 0;
  left: 70px;
  top: 20px;
  transform: rotate(0deg);
  background: none;
  position: absolute;
  transition: all .5s ease-Out;
}

#button-6:hover #spin {
  width: 200%;
  height: 500%;
  opacity: 1;
  left: -70px;
  top: -70px;
  background: #BFC0C0;
  transform: rotate(80deg);
}

#button-6:hover a {
  color: #2D3142;
}


/* Seventh Button */

#button-7 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#button-7 a {
  position: relative;
  left: 0;
  transition: all .35s ease-Out;
}

#dub-arrow {
  width: 100%;
  height: 100%;
  background: #BFC0C0;
  left: -200px;
  position: absolute;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .35s ease-Out;
  bottom: 0;
}

#button-7 img {
  width: 20px;
  height: auto;
}

#button-7:hover #dub-arrow {
  left: 0;
}

#button-7:hover a {
  left: 150px;
}

@media screen and (min-width:1000px) {
  h1 {
    font-size: 2.2em;
  }
  #container {
    width: 50%;
  }
}


/* Second Button */

#button-10 {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  float: right;
}

#button-10 a {
  position: relative;
  transition: all .35s ease-Out;
}

#slide {
  width: 100%;
  height: 100%;
  left: -200px;
  background: #FFA800;
  position: absolute;
  transition: all .35s ease-Out;
  bottom: 0;
}

#button-10:hover #slide {
  left: 0;
}

#button-10:hover a {
  color: #2D3142;
}



.our_team{
  display: flex;
  gap: 1rem;
  margin-top: 10px;
  justify-content: center;
}
.member {
  position: relative;
  width: 480px;
  height: 450px;
  background-color: #545454;
}

.emp_image {
  display: block;
  width: 100%;
  height: auto;
}

.overlay_right {
  position: absolute;
  bottom: 0;
  left: 100%;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.member:hover .overlay_right {
  width: 100%;
  left: 0;
}

.emp_name {
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}
.member_left{
  position: relative;
  width: 480px;
  height: 450px;
  background-color: #545454;
}

.overlay_left {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #008CBA;
  overflow: hidden;
  width: 0;
  height: 100%;
  transition: .5s ease;
}

.member_left:hover .overlay_left {
  width: 100%;
}

.emp_left {
  color: white;
  font-size: 2rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
.team_heading{
  font-size: 3rem;
  text-align: center;
  color: #CE0029;
  margin-top: 100px;
}





