    body {
      font-family: Arial, sans-serif;
      margin: 0px;
      padding: 0px;

    }
    .text-gray{
        color: #464545f6;
    }
.my-font{
    font-family: Brush Script MT;
}
.form-font{
  font-family: Centaur;
}

.icons{
    height: 30px;
    width: 30px;
   background-color: #eb1a53 !important;
   box-shadow: 4px 1px 7px white;
   border-radius: 50%;
    
   color: white;
   
   border: 2px solid white;
   margin-left: 10px;
   display: flex;
   justify-content: space-around;
   align-items: center;
     transition: all 0.3s ease;
}
.text-mycolor{
    color: #eb1a53;
}
.icons:hover{
  background-color: #ff3159 !important;
     border: 2px solid white;
    color: white;
    box-shadow: 0px 1px 8px white, 0px 2px 15px #cf536b;
    transform: scale(1.3) rotate(360deg);

}
.bg-mycolor{
    background-color: #eb1a53;
}
.text-justify{

    text-align: justify;
}
 .counter {
      font-size: 48px;
      font-weight: bold;
    }

    .bg-gray{
        background-color: rgb(239, 243, 245);
    }
.text-light-gray{
        color: #acaaaa;
    }
.slider{
    background-image: url('/11.jpg');
    background-size: cover;
}
.boxj{
    height: 50px;
    width: 100px;
    border: 1px solid black;
}

/*  nav bar start  */

.navbar:hover
{
   color: #ff3159;
   

}
/*  nav bar end */



/* notice */
.note{
     margin-top: 30px;
    height: 30px;
    background-color: black;
    border-radius: 25px;
}
.bg-cpy{
    background-color:#1a1d20;
}

/*  slider start */
     .outer-slide>.carousel-item {
    position: relative;
  } 

  .outer-slide>.carousel-item> .imag {
    filter: blur(2px);
    width: 100%;
    height: auto;
  }

  
  .outer-slide>.carousel-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Black with 40% opacity */
    z-index: 1;
  }

  /*  Text */
 .outer-slide .heading {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    text-shadow: 2px 2px 5px #000;
    z-index: 2;
    text-align: center;
  }
  .outer-slide .subheading{
     font-size: 1rem;
  }
  .outer-slide .s-btn{
    font-size: 1rem;
    border: 1px solid #ff3159;
    border-radius: 7px;
  }
  @media (max-width: 600px) {
  .outer-slide .heading {
     font-size: 0.7rem;
  }
}
  @media (max-width: 600px) {
  .outer-slide .subheading {
     font-size: 0.0rem;
  }
}
  @media (max-width: 600px) {
  .outer-slide .s-btn {
     font-size: 0.4rem;
     padding: 2px;
  }
}
  /* slider -end */

  /* about us start */
  .af-color
  {
    background-color: rgba(226, 225, 225, 0.882);
    /* color: white; */
  }
  /* about us end */

/*  services start */
.s-box{
     height: 70px;
     width: 70px;
     border: 2px solid #ff3159;
     border-radius: 50%;
     margin: -25px auto;
     color: white;
     background-color: #ff3159;
     display: flex;
     align-items: center;
     justify-content: space-around;
     font-size: 4vh;
     
}

.services>.card{
    height: 22rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.2s ease;
  margin-top: 35px;
}
.services>.card:hover{

     transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); /* more shadow */
}
.services>.card:hover .s-box{

     transform: scale(1.05); /* zoom effect */
  box-shadow: 0 8px 10px rgba(0,0,0,0.3); /* more shadow */
  background-color: white;
  border: 2px solid #ff3159;
  color: #ff3159;
}


.zoom-in:hover div img
{
transform: scale(1.2);
}
.zoom-in div{
  overflow: hidden;
}
.zoom-in div img
{
  transition: 0.5s ease;
}

/* services end */
 * {
      box-sizing: border-box;
    }

    .slider-container {
      width: 90%;
      margin: 50px auto;
      overflow: hidden;
      position: relative;
    }
    .slider {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .slider>.card {
      flex: 0 0 33.33%; /* 3 cards per view */
      background-color: white;
      margin-right: 20px;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      padding: 10px;
      flex-direction: column;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
    .slider>.card:hover {
      transform: scale(1.05);
    }
    .card-image {
   
      overflow: hidden;
    }
    .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .card-content {
      padding: 15px;
      flex-grow: 1;
    }
    .card-content h3 {
      margin: 0 0 10px 0;
      font-size: 18px;
      color: #333;
    }
    .card-content p {
      margin: 0;
      font-size: 14px;
      color: #666;
      line-height: 1.4;

    }

     /* Tablet: 2 cards */
    @media (max-width: 768px) {
      .card {
        flex: 0 0 50%;
      }
    }

    /* Phone: 1 card */
    @media (max-width: 480px) {
      .card {
        flex: 0 0 100%;
      }
    }


    @media (max-width: 768px) {
      .slider>.card {
        flex: 0 0 50%; /* 2 cards on tablets */
      }
    }
    @media (max-width: 480px) {
      .slider>.card {
        flex: 0 0 100%; 
      }
    }
    /* some facts  start */

    .sf-box{
        height: 80px;
        width: 80px;
        /* background-color: #ff3159; */
        border: 3px solid rgb(23, 7, 112);
        display: flex;
        justify-content: space-around;
        align-items: center;
        color: rgb(23, 7, 112);
        margin-top: 12px;
        font-size: 40px;
        margin-bottom: 10px;

    }
    .bg-sf{
        background-image: url('../img/sfimage.jpg');
        background-size: cover;
        background-attachment: fixed;
        background-color: red;
    }
    .sf-color{
        background-color: rgba(255, 252, 252, 0.753);
    }
    /* some facts  end */

    /* out team start */
    .team-box{
        height: 130px;
        width: 130px;
        border: 3px solid gray;
        border-radius: 50%;
        margin: 0px auto;
    }
     .sliders-container {
      width: 100%;
      height: 500px;
      padding-left: 20px;
      text-align: center;
      padding-top: 40px;
      overflow: hidden;
      margin: auto;
      /* background: #fff;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1); */
    }

    .card-sliders {
      display: flex;
      gap: 10px;
      align-items: center;
      transition: transform 0.5s ease-in-out;
    }

    .card-t {
      width: 350px;
      height: 400px;
      flex-shrink: 0;
      padding-left: 30px;
      padding-right: 30px;
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 1.5rem;
      transition: all 0.5s ease;
    }

    .card-t.center {
      width: 380px;
      height: 430px;
      border-radius: 0%;
      transform: scale(1.1);
      box-shadow: 0 10px 30px rgba(4, 5, 6, 0.25);
      z-index: 1;
    }
    /* out team end */

    /*  clint Testimonial start */
    .clint-logo{
      height: 120px;
      width: 120px;
      background-color: green;
      border: 1px solid gray;
      margin: 2px auto;
      border-radius: 50%;
    
    }

     .carousel-item > .card {
      margin: 0 auto;
      max-width: 600px;
      border-radius: 15px;
     /* box-shadow: 0 5px 15px rgba(0,0,0,0.1);*/
    }

    .card-title {
      font-weight: 700;
      color: #333;
    }

    .card-text {
      color: #555;
    }

    /* Customize carousel indicators (dots) */
    .carousel-indicators [data-bs-target] {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      background-color: #888;
      opacity: 1;
      transition: background-color 0.3s ease;
      margin: 0 6px;
    }

    .carousel-indicators .active {
      background-color: #0d6efd; 
    }

    .carousel-indicators {
      bottom: -30px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-size: 40px 40px;
    }
    /*  clint Testimonial end */


   /* whatshap and call icon start  */
    .call-icon {
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ff3159;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: blink 1s infinite;
    transition: transform 0.2s;
    
  }

  .call-icon:hover {
    transform: scale(1.1);
  }

  @keyframes blink {
    0% { background-color: green; box-shadow: 0 0 10px rgb(188, 117, 152); }
    50% { background-color: #cf536b; box-shadow: 0 0 20px rgb(214, 118, 174); }
    100% { background-color:  rgb(111, 245, 111); box-shadow: 0 0 10px rgb(168, 55, 106); }
  }

  .wa-icon {
    height: 55px;
    width: 55px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: fixed;
    bottom: 100px;
    right: 20px;
    background-color: #31ff5e;
    color: white;
    padding: 15px;
    border-radius: 50%;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 999;
    animation: blinks 1s infinite;
    transition: transform 0.2s;
  }

  .wa-icon:hover {
    transform: scale(1.1);
  }

  @keyframes blinks {
    0% { background-color: green; box-shadow: 0 0 10px rgb(125, 226, 236); }
    50% { background-color: #47c4da; box-shadow: 0 0 20px rgb(97, 215, 219); }
    100% { background-color: rgb(55, 168, 166); box-shadow: 0 0 10px rgb(111, 245, 111); }
  }
   /* whatshap and call icon end */

   /* footer start */
   .f-link:hover{
    color: #cf536b !important;
   }
   /* footer end */

   /*  our teem page start */

.ourteem .card{
  border: 0px solid black;
}
.ourteem .card:hover{

  box-shadow: 0px 1px 15px #c05b6fb2;
}
.ourteem .card .team-box{
  transition: all 0.3s ease;
}
.ourteem .card:hover .team-box{
  transform: scale(1.05);
  box-shadow: 0px 1px 10px rgb(117, 48, 48);
}

   /*  our teem page  end */