/********** Template CSS **********/
:root {
    --primary: #6222CC;
    --secondary: #FBA504;
    --light: #F6F4F9;
    --dark: #04000B;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.whatsapp-button {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 100px;
    z-index: 99;
    background-color: white !important;
    color: #25d366 !important;
    border-radius: 50% !important;
    border: 2px solid #25d366;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
    margin-top: 4rem;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    transition: .5s;
    height: 51px;
    width: 76px;
    border-radius: 0px 14px;
}

.sticky-top.navbar-light .navbar-brand img {
   width: fit-content;
}
.Ak_logo{
    width: 150%;
    height: 100%;
    background: #ffffffe0;
    padding: 5px;
    border-radius: 5px;
}


/*** Hero Header ***/

.heading{
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
    color: #000;
    margin: 10px 0 10px 0;
}
.hero-header {
    padding-bottom: 15rem;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png),
        url(../img/bg-bottom.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}
.hero-left{
    /* border: 2px solid red; */
    padding-top: 0;
    margin-top: 0;
}

.hero-img{
    width:80%;
    /* filter: drop-shadow(1px 1px 5px white); */
    
    
}
/* hero-buttons */
/* From Uiverse.io by gharsh11032000 */ 
.button-pop-glow {
  position: relative;
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: transparent;
  border: 2px solid #ffffff55;
  border-radius: 50px;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  animation: popUp 0.6s ease-out forwards;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.button-pop-glow::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  /* background: linear-gradient(45deg, #ff00cc, #3333ff, #00ffff, #ff00cc); */
  background-color: #FBA504;
  background-size: 300%;
  filter: blur(6px);
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.button-pop-glow:hover::before {
  opacity: 1;
}

.button-pop-glow:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

/* Pop in animation */
@keyframes popUp {
  to {
    opacity: 1;
    transform: scale(1);
  }
}



/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}



/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/

.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
    max-height: 28rem;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(98, 34, 204, .9);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.testimnonails-div {
  position: relative;
  /* overflow: hidden; */
}

.testimnonails-div::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100%;
   background: url("data:image/svg+xml;utf8,  <svg viewBox='0 0 500 150' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'> <path d='M0,100 C120,200 350,0 500,100 L500,150 L0,150 Z' fill='%236222CC' />  </svg>") no-repeat bottom;
background-size: cover;
z-index: 0;

}


/*** Team ***/

/* From Uiverse.io by MuhammadHasann */ 

.card {
 align-items: center;
  flex-direction: column;
  position: relative;
 
  
}


.card_title__container{
    z-index: 2;
}
.card_title__container::after{
    position: absolute;
    content: "";
    top: -50px;
    left: -40px;
    width: 150px;
    height: 150px;
    background-color: #6222CC;
    border-radius: 50%;
    z-index: -1;
    transition: all 4s linear;
}

.card_title__container::before{
    position: absolute;
    content: "";
    right: -70px;
    bottom: -200px;
    width: 150px;
    height: 150px;
    background-color: #6222CC;
    border-radius: 50%;
    z-index: -1;
}


.image-3d img {
  width: 80%;
  border: 2px solid #FBA504;
  margin: 0 auto;
}

.team-name{
    z-index: 2;
    font-size: 1.8rem;
}
.tema-post{
    z-index: 2;
     
      font-size: 1.2rem;
      font-weight: 700;
}

.team-btn:hover{
    letter-spacing: 3px;
}


.team-discription {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 5%;
  /* overflow: hidden; */
  transition: all 0.5s ease;
  background-color: #dcdbdb54;
  backdrop-filter: blur(15px);
  z-index: 2;
}
.card:hover  .team-discription{
    height: 100%;
}


.team-discription .discription{
    padding: 2rem;
    font-size: 1.1rem;
    text-align: center;
    color: rgb(0, 0, 0);
    
}



/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    background:
        url(../img/bg-top.png),
        url(../img/map.png);
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}

 /* Technology  */

  .tech-container .Tech-Left{
    padding: 3rem;
    padding-top: 15rem ;
  }

  .langs{
    display: grid;
    grid-template-columns: repeat(8,1fr);
    justify-content: center;
  }
  .lang-img{
    max-width: 50%;
  }
 









@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #c61010;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 80px;
    }
    .button-pop-glow {
    position: relative;
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: transparent;
    border: 2px solid #ffffff55;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    animation: popUp 0.6s ease-out forwards;
    opacity: 0;
    transform: scale(0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background-color: var(--primary);
        top: 0;
    }
    .sticky-top.navbar-light .nav-link{
        color: #ffffff;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 80%;
        opacity: 0;
        visibility: hidden;
        
        
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        display: block;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
  
  


}
@media (max-width:967px) {
      .hero-left{
    order: 2;
  }
  .hero-right{
    order: 1;
  }
    .Technology-section .tech-container .Tech-Left{
        padding-top: 0rem;
       
    }
   
}
 /* Custom css Drop down menue*/

.dropdown-menu {
    position: absolute;
    z-index: 1000;
    display: none;
    min-width: 10rem;
    padding: 1.4rem 1.6rem;
    margin: 0;
    font-size: 1rem;
    color: #726D7B;
    text-align: left;
    list-style: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0 !important;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .5rem 1rem;
    clear: both;
    font-weight: 500;
    color: #212529;
    text-align: inherit;
    letter-spacing: .7px;
    white-space: nowrap;
    background-color: transparent;
    text-transform: uppercase !important;
    border: 0;
    transition: all 0.3s ease;
}

.dropdown-item:hover, .dropdown-item:focus {
    margin-left: 7px;
    color: #6222cc;
    background-color: #ffffff;
}

/* Underline animation effect custom css for bootstrap */

/* Style top nav links */
.navbar-nav .nav-link {
  position: relative;
  color: #ffffff; /* Adjust based on theme */
  transition: color 0.3s ease;
  /* border: 2px solid red; */
  display: inline-block;
}

/* Underline effect */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  top: 100%;
  bottom: 0;
  /* height: 2px; */
  width: 0%;
  background-color: #ffffff; /* Blue line */
  transition: width 0.4s ease;
}

/* On hover or if active */
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 100%;
}

/* Disable effect for dropdown items */
.dropdown-menu .dropdown-item::after {
  display: none !important;
}













/* servives */

.service-left-column{
    border-radius: 5rem;
}


.service-name{
    color: #6222CC;
    
    /* font-family: "Lavishly Yours", cursive; */
  
}
.service-para{
    font-size: 1.2rem;
}
.languages .left-col li{
    margin-top: 1.2rem;
    font-size: 1.2rem;
}
.service-right-box{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}



.service-div{
    position: relative;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 1px 3px, rgba(0, 0, 0, 0.24) 0px 1px 2px;
    transition: all .2s linear;
    cursor: pointer;

}

.service-div:hover{
    transform: translatey(-10px);
    box-shadow: rgba(0, 0, 0, 0.571) 0px 1px 3px, rgba(0, 0, 0, 0.933) 0px 1px 2px;
}

.service-div::after{
    position: absolute;
    content: "";
    left: -20px;
    top:-20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6222CC;
}
.service-div::before{
    position: absolute;
    content: "";
    right: -20px;
    bottom:-20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #6222CC;
}

/* 3D Modal Animation */
.modal {
    perspective: 1000px;
}

.modal.fade .modal-dialog {
    transform: scale(0.7) rotateY(-90deg);
    transition: transform 0.6s ease-out;
    transform-style: preserve-3d;
}

.modal.show .modal-dialog {
    transform: scale(1) rotateY(0);
}

.modal-content {
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #6222CC, #FBA504, #25d366, #6222CC) border-box;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {
    0% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(180deg); }
    100% { filter: hue-rotate(360deg); }
}

/* Theme-related button animation */
.modal .btn-primary {
    background: linear-gradient(45deg, #6222CC, #FBA504);
    animation: themePulse 2s ease-in-out infinite;
}

@keyframes themePulse {
    0% { box-shadow: 0 0 0 0 rgba(98, 34, 204, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(98, 34, 204, 0); }
    100% { box-shadow: 0 0 0 0 rgba(98, 34, 204, 0); }
}

.service-div-h1{
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
   
    
}
.service-div-h1::after{
    position: absolute;
    content: "";
    left: 0px;
    bottom: 0;
    width: 50%;
    border-bottom: 2px solid #6222CC;
    z-index: 1;
}


/* Slider */

.slider .slick-prev::before,
.slider .slick-next::before {
  content: none;
}

.slider .slick-prev,
.slider .slick-next {
  height: 32px;
  width: 32px;
  background: #6222CC;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}

.slider .slick-prev svg,
.slider .slick-next svg {
  font-size: 16px;
  color: #fff;
}

.slider .slick-prev:hover,
.slider .slick-next:hover {
  background: #501aa8;
}

.slider .slick-prev {
  left: 40px;
}

.slider .slick-next {
  right: 40px;
}

.slider .slick-track .slick-slide {
    margin-right: 20px;
  }
  
  .slider .slick-track .slick-slide:last-child {
    margin-right: 0;
  }



  /* new about section  */

  .about-h1-col{
    color: #6222cc;
  }
  .inner-content{
    background-color: #6322cc;
    color: #fff;
    border-radius: 1rem;
    padding: 1rem;
    /* position: relative; */
  }
  .inner-logo{
    background-color: #6222cc;
    border-radius: 1rem;
    padding: 1rem;
    margin-bottom: 2rem;
  }
  .inner-logo h3{
    color: #fff;
    position: relative;
    display: inline-block;
  }
  .inner-logo h3::after{
    position: absolute;
    content: "";
    left: 20%;
    bottom: 0;
    border-bottom: 1px solid rgb(255, 255, 255);
    width: 100%;
  }
  .inner-logo p{
    color: #fff;
  }
  .about-quote{
    position: absolute;
    bottom:5px;
    right: 12px;
    color: #fcfcfc;
    transform: rotate(180deg);
    
  }

  /* second row start  */
   .second-row-container{
    margin-top: 4rem;
  }
  .second-row-container, .second-row-about{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:4rem;

  }
  .second-row-card{
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0;
    padding: 0;
    /* transition: all 1s linear; */

  }
  .second-row-card:hover{
     box-shadow: rgba(0, 0, 0, 0.325) 0px 5px 5px 0px;
  }
  .upper-card-about{
    width: 100%;
    height: 4rem;
    background-color: #6222cc;
  }
 .second-row-card ul{
    padding: 3rem;
    /* padding-left: 1rem; */
 }
 .second-row-card .about-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
 }
 .second-row-card .about-btn button{
    border: none;
    text-transform: capitalize;
    padding:   .5rem 2rem;
    border-radius:.5rem;
    background-color: #FBA504;
    color: #fff;
    
 }
 .second-row-card ul li{
    font-size: 1rem;
    margin-top: .5rem;
    
 }
 .second-row-card .upper-card-about{
   display: flex;
   justify-content: center;
   align-items: center;
 }
  /* .second-row-card .upper-card-about p{
   padding-top: 1rem;
    color: #fff;
    font-size: 1.8rem;
    position: relative;
  }
  .second-row-card .upper-card-about p::before{
    position: absolute;
    content: "";
    left: 0;
    bottom: 0;
    border-bottom: 2px solid #fff;
    width: 40%;
  }
   .second-row-card .upper-card-about p::after{
    position: absolute;
    content: "";
    right: 0;
    bottom: 0;
    border-bottom: 2px solid #fff;
    width: 40%;
  } */

  .second-row-card .upper-card-about p {
  padding-top: 1rem;
  color: #fff;
  font-size: 1.8rem;
  position: relative;
  text-align: center;
}

/* Common Line Style */
.second-row-card .upper-card-about p::before,
.second-row-card .upper-card-about p::after {
  position: absolute;
  content: "";
  bottom: 0;
  border-bottom: 2px solid #fff;
  width: 40%;
  height: 2px;
  animation: waveLine 2s ease-in-out infinite;
}

/* Left Line */
.second-row-card .upper-card-about p::before {
  left: 0;
  transform-origin: left;
}

/* Right Line */
.second-row-card .upper-card-about p::after {
  right: 0;
  transform-origin: right;
}

/* Wavy Keyframes */
@keyframes waveLine {
  0%   { transform: scaleX(1); }
  25%  { transform: scaleX(1.1); }
  50%  { transform: scaleX(0.9); }
  75%  { transform: scaleX(1.05); }
  100% { transform: scaleX(1); }
}


 
  