.highlight{
    color: var(--yellow) !important;
}
button{
    background: none;
    border: none;
}





/* 1. Hero Section */

.buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
}

.wrapper .buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 40px;
    height: 40px;
    text-decoration: none;
    overflow: hidden;
    border: 1px solid #fff;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-out;
    padding: 0 10px;
}

.wrapper .buttons:hover {
    width: 120px;
    padding: 0 15px;
    outline: none;
}

.wrapper .buttons:nth-child(1):hover {
    background: linear-gradient(to right, #E62E2D, #D82B7E, #A533C8);
}

.wrapper .buttons:nth-child(2):hover {
    background: linear-gradient(to right, #0057FF, #35A8FF);
}

.wrapper .buttons:nth-child(3):hover {
    background: linear-gradient(to right, #17AFFF, #65D5FF);
}

.wrapper .buttons .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: white;
    text-align: center;
    border-radius: 50px;
    transition: all 0.3s ease-out;
    position: absolute;
    left: 0;
}

.wrapper .buttons .icon i {
    font-size: 20px;
    transition: all 0.3s ease-out;
    display: flex;
    justify-content: center;
}


.wrapper .buttons:hover .icon {
    background: none;
    outline: none;
}


.wrapper .buttons .text {
    opacity: 0;
    white-space: nowrap;
    font-size: 16px;
  
    color: white;
    margin-left: 22px;
    transition: opacity 0.3s ease-out;
    font-family: var(--rubikRegular);
}

.wrapper .buttons:hover .text {
    opacity: 1;
}


.abtCircle img {
    width: 100px;
    margin-left: -32px;
}

.abtHero h1 {
    color: white;
    font-family: var(--bold);
    font-size: 54px !important;
    line-height: 64px !important;
}

.abtHero h6 {
    font-size: 16px;
    line-height: 26px;
    color: #D6D1D1;
}

.abtHero button {
    margin-top: 20px;
    background: none;
    padding: 10px 40px;
    border-radius: 9.5px;
    border: none;
    outline: 0.913px solid #D4D4D4;
    font-size: 18px;
    font-family: var(--semibold);
    color: white;
}

.abtHero button:hover {
    border: none;
   outline: none;
   background: linear-gradient(90deg, #DEA72B 3.13%, #F3C85A 100%);
    transition: all 0.3s ease-out;
}
.outline-icon {
    color: transparent;
    -webkit-text-stroke: 1px white;
    font-size: 24px; 
    transition: all 0.3s ease;
  }
  

/* 1. Hero Section Ends*/


/* 2. Our Numbers */
.abtNoCard h4 {
    text-align: center;
    font-family: var(--semibold);
    font-size: 28px;
    line-height: 38px;
    color: white;
}

.abtNoCard img {
    width: 150px;

}

.abtNoCard {
    background-image: url(../images/abtNumberbg.svg);
    background-position: center;
    background-size: cover;
    height: max-content;
}


.expertCard {
    position: relative;
    width: 300px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.expertCard::before,
.expertCard::after {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    border: 2px solid transparent;
    transition: all 0.5s ease-in-out;
}

.expertCard::before {
    top: 0;
    left: 0;
    border-top-color: #545B5B;
    border-left-color: #545B5B;
}

.expertCard::after {
    bottom: 0;
    right: 0;
    border-bottom-color: #545B5B;
    border-right-color: #545B5B;
}

.expertLine {
    width: 30px;
    height: 2px;
    background: white;
    transition: background 0.3s ease-in-out;
}

.expertCard:hover .expertLine {
    background: var(--yellow);
}

.expertCard:hover {
    background: rgba(241, 196, 48, 0.08);
}

.expertCard:hover::before {
    border-top-color: var(--yellow);
    border-left-color: var(--yellow);
}

.expertCard:hover::after {
    border-bottom-color: var(--yellow);
    border-right-color: var(--yellow);
}

.expertContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.expertContent h2 {
    font-size: 24px;
    font-family: var(--semibold);
}

.expertContent p {
    font-size: 16px;
    font-weight: var(--semibold);
}

.expertCard:hover .expertContent h2,
.expertCard:hover .expertContent p {
    color: var(--yellow);
}

/* 2. Our Numbers Ends */

/* 3. Services */
.abtOffers h5 {
    text-align: center;
    color: #C0C0C0;
    font-size: 20px;
    font-family: var(--medium);
}

.abtOffers h2 {
    text-align: center;
    color: white;
    font-size: 40px;
    font-family: var(--bold);
}

.abtOfrCaro {
    flex: 0 0 20%;
    gap: 10px;
    position: relative;
    padding-bottom: 40px;
  }
.abtOfrCard{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}
.abtOfrCard P{
    text-align: center;
}
.owl-carousel .owl-item img{
    width: 100px;
}
.abtOfrCaro p{
    color: var(--yellow);
    font-family: var(--rubikMedium);
}

.abtOfrNav {
    position: absolute;
    bottom: 0;
    /* left: 0; */
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.abtOfrNav button {
    background: none;
    border: none;
    padding: 8px ;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
    color: #797979;
    transition: 0.3s;
}
.abtOfrNav i{
    color: #797979 ;
    font-size: 15px;
}

.abtOfrNav button:hover {
color: darkgoldenrod;
}
.abtOfrLine {
    width: 200px;
    height: 1.5px;
    background:#797979;
}

/* 3. Services Ends*/

/* 4. Our Mission */
.abtMsn{
    background: #0C0C0C;
}
.abtMsnBg{
    background-image: url(../images/abtMissionBg.svg)  ;
    background-position: center;
    background-size: cover;
    height: 100%;
    padding: 24px;
}
.abtMsnLft, .abtMsnRgt{
    width: 90%;
}
.abtMsn:hover .abtMsnLft{
    outline: 3px solid var(--yellow);
}
.abtMsn:hover .abtMsnRgt{
    outline: 3px solid var(--yellow);
}
.abtMsnRow p{
    color: #C3BEBE !important;
}
.abtMsnRow h2, .highlight{
    color: white;
    font-family: var(--bold);
}
.abtMsnTop{
    display: flex;
}
.abtMsnImg1{
    width: 25% !important;
}
.abtMsnImg2{
    width: 60% !important;
}
.abtMsnDwn h5{
    font-size: 16px ;
}
/* 4. Our Mission Ends */

/* 5. Director */
.abtDirTxt{
    background: #191919;
    display: flex;
    gap: 8px;
    flex-direction: column;
    padding: 30px;
}
.abtDirTxt h6{
    color: var(--yellow);
    font-size: 16px;
}
.abtDirTxt img{
    width: 10%;
}
.abtDirTxt p{
    color: #C3BEBE;
}
.abtDirCard{
    display: flex;
}
.abtDirImg{
    width:92%;
}
.carousel-control-next, .carousel-control-prev{
   position: static !important;
}
.abtDirNav{
    position: absolute !important;
    bottom: 10px !important;
    right: 20px !important;
    display: flex !important;
    justify-content: flex-end !important;
    align-items: center !important;
    gap: 15px !important;
   
}
.abtDirNav i{
    color: #797979 ;
    font-size: 15px;
    
}
.abtDirLine{
    width: 200px;
    height: 1.5px;
    background:#797979;
}
/* 5. Director ends */

/* 6. Professionals  */
.abtPflLft{
    background-image: url(../images/abtprofessionalbg.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    text-align: end;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.abtPro h2{
    color: var(--yellow);
    font-size: 30px;
    font-family: var(--bold);
}
.abtPflLft h6{
    font-size: 16px;
    font-family: var(--medium);
}
.abtPflRft{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #191919;
    padding: 0 0 35px 0;
    
}
.abtPflCard{
    display: flex;
    gap: 15px;
    flex-direction: column;
}
.abtPflCard img{
    width: 90% !important;
}
.abtPflCard h6{
    color: var(--yellow);
}
.abtPro {
    width: 70%;
    margin-left: 15%;
}
.proLine{
    width: 150px;
    height: 2px;
    background: var(--yellow);
    color: var(--yellow);
}
.proIcons{
    display: flex;
    gap: 10px;
    cursor: pointer;
}
.proIcons i{
    font-size: 20px;
    color: var(--yellow);
}
.abtProNav{
    position: absolute;
    bottom: 0;
    right: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}
.abtProLine{
    width: 200px;
    height: 1.5px;
    background:#797979;
}

.abtProNav button{
    padding:8px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
}
.abtProNav i{
    color: #797979 ;
    font-size: 15px;
}


 .abtTesti{
    height: 600px;
 }
 .us{
    width: 75%;
 }

  
  .caro-subtitle {
    font-size: 0.8rem;
    margin-top: 20px;
    letter-spacing: 1px;
  }
  
  .dots {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
    background: #777;
    border-radius: 50%;
  }
  
  .dot.active {
    background: #fff;
  }
  
  .abtTestiCard {
    position: relative;
    border-radius: 13.306px;
    box-shadow: 0px 133.056px 106.444px 0px rgba(0, 0, 0, 0.02);
    width: 500px;
    height: 250px;
    flex-shrink: 0;
    border: 1px solid white;
    display: flex;
    padding: 60px 30px 60px 30px ;
    gap: 10px;
    justify-content: center;
    flex-direction: column;
    background-color:black;
    /* color: white; */
  }
  
  .abtTestiCard.active {
    background-color: white !important;
    color: black !important;
    border: none;
  }
  
  .abtTestiCard h5,
  .abtTestiCard p,
  .abtTestiCard h6 {
    color: inherit;
  }

  
  .testiCircle {
    top: 0;
    left: 0;
    transform: translate(-50% , -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-image: url(../images/abtPro1.svg);
    background-position: center;
    background-size: cover;
    border: 2px solid white;
    position: absolute;
    z-index: 4;
  }
  .carousel-nav {
    position: absolute;
    top: 50%;
    right: -90%; 
   
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .arrow {
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    transition: background 0.3s ease;
  }
  

  
  
  .carousel-wrapper {
    position: relative;
    width: 320px;
    position: relative;
    min-height: 250px;
    perspective: 1000px;
    overflow: visible;
    padding-bottom: 100px;
    padding-top: 40px;
  }
  
  .card-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
  }
  
  .carousel-card {
    position: absolute;
    width: 100%;
    height: auto;
    transition: transform 0.6s ease, opacity 0.6s ease;
    backface-visibility: hidden;
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    z-index: 1;
    pointer-events: none;
  }
  
  .carousel-card .abtTestiCard {
    background-color: black;
    border: 1px solid white;
    color: white;
  }
  
  .carousel-card.active .abtTestiCard {
    background-color: white !important;
    color: black !important;
    border: none;
  }
  .carousel-card.active .abtTestiCard h5,
.carousel-card.active .abtTestiCard h6,
.carousel-card.active .abtTestiCard p {
  color: black !important;
}
  
  .carousel-card.active {
    opacity: 1;
    transform: translateY(0px) scale(1);
    z-index: 3;
    pointer-events: auto;
  }
  
  .carousel-card:nth-child(2) {
    opacity: 1;
    transform: translateY(120px) translateX(55px) scale(0.95);
    z-index: 2;
  }
  .abtTesti .row {
    min-height: 400px; /* or however tall the tallest card is */
    align-items: center; /* to vertically align heading with cards */
  }
/*   
  .carousel-card:nth-child(3) {
    opacity: 1;
    transform:  translateY(120px) translateX(55px) scale(0.95);
    z-index: 1;
  } */
  


@media only screen and (min-width : 1400px) {}

@media only screen and (max-width: 1400px) and (min-width : 1200px) {
     

}

@media only screen and (max-width: 1200px) and (min-width : 992px) {
    .abtHero h1 {
       
        font-size: 48px !important;
        line-height: 58px !important;
    }

    .abtMsnBg{
        padding: 10px;
    }
    .abtMsnImg1{
        width: 40% !important;
    }

    .carousel-nav{
        display: none;
    }

    

}

@media only screen and (max-width: 992px) and (min-width : 768px) {

    .abtHero h1 {
       
        font-size: 48px !important;
        line-height: 58px !important;
    }

    .abtMsnCol{
        display: flex;
        flex-direction: column;
    }
    .abtMsnImg1{
        width: 40% !important;
    }
    .abtDirSignature, .abtDirTxt h6{
        text-align:  start !important;
    }
    .abtPflCard h5, .abtPflCard h6{
        text-align:  start !important;
    }
    .abtTesti{
        height: 700px !important;
    }
    .abtDirTxt{
        height: 420px !important;
    }


 

}

@media only screen and (max-width: 768px) {

    .abtMsnCol{
        flex-direction: column;
    }
    .abtMsnImg1 {
        width: 20% !important;
    }
    /* .abtMsnLft{
        width: 40%;
    } */

    .abtDirCard{
        flex-direction: column;
    }
    .abtDirTxt img{
        width: 50%;
    }
    .abtDirImg{
        width: 100%;
    }
    .abtDirTxt{
        height: 420px !important;
        justify-content: center;
        align-items: center;
    }
    .abtDirTxt p{
        text-align: center;
    }
        /* 6. Professionals */
        .abtPflLft{
            text-align: center;
        }
        .abtPflCard img{
            width: 85% !important;
        }
        .abtPflRft{
            padding-top: 20px ;
            padding-bottom: 50px;
        }
        .abtPflCard{
            display: flex;
            align-items: center;
            justify-content: center;
        } 
        /* 6. Professionals ends*/
        /* 7. testimonial */
  
    
        .carousel-nav{
            display: none;
        }
        .us{
            width: 100%;
         }
         .dots{
            align-items: center;
            justify-content: center;
         }
    

}

@media only screen and (max-width : 576px) {
    /* 1. Hero Section */
         .abtCircle img{
            width: 70px;
            margin-left: -5px;
            margin-bottom: -40px;
         }
         .abtHero button{
            margin-top: 10px;
         }

         /* remove */
         .abtCircle h1{   
            font-size: 35px !important;    
            line-height: 45px !important;
         }
          /* remove */
    /* 1. Hero Section Ends*/

    /* 2. Our Numbers */
   
    .abtOfrNav{
        justify-content: center !important;
    }

    /* 2. Our Numbers ends*/

    /* 4. Our Mission */
    .abtMsnLft{
        width: 90% ;
    }
    .abtMsnBg {
        padding: 24px 10px;
   }
   .abtMsnCol{
       flex-direction: column;
   }
     /* 4. Our Mission Ends*/

    /* 5. Director */
    .abtDirCard{
        flex-direction: column;
    }
   
    .abtDirTxt{
        height: 500px !important;
        padding: 25px 10px 35px 10px;
    }
    .abtDirNav,  .abtProNav {
        right: 40px !important;
    }
    .abtDirTxt p{
        text-align: center;
    }
 
  
    /* 5. Director ends */

    /* 6. Professionals */
    .abtPflLft{
        text-align: center;
    }
    .abtPflCard img{
        width: 80% !important;
    }
    .abtPflLft{
        height: 300px;
    }
    .abtPflRft{
        padding-top: 20px ;
        padding-bottom: 50px;
    }
    .abtPflCard{
        display: flex;
        align-items: center;
        justify-content: center;
    } 
    
    /* 6. Professionals ends*/


    /* 7. testimonial */
    .abtTesti {
        padding: 2rem 0;
      }
    
      .carousel-nav{
        display: none;
    }
    
      .caro-subtitle {
        text-align: center;
        font-size: 0.75rem;
      }
    
      .dots {
        justify-content: center;
      }
    

    
      .carousel-nav {
        position: absolute;
        right: 20px; /* pull it closer */
        top: 20px; /* better vertical placement */
        transform: none;
        flex-direction: row;
        gap: 10px;
      }
    
      .arrow {
        font-size: 1rem;
        width: 30px;
        height: 30px;
      }
      .carousel-card{
        width: 90%;
      }
    
      .abtTestiCard {
        width: auto;
        height: auto;
        padding: 50px 20px 40px 20px;
        margin-top: 20px;
        /* margin-left: 0;  */
      }
    
      .testiCircle {
        width: 50px;
        height: 50px;
        top: 0;
        /* left: 20px; */
        transform: translateY(-50%); 
      }
    
      .abtTesti .row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .abtTesti{
        height: 690px;
        
     }
     .carousel-wrapper{
        padding-top: 20px;
     }




}