/********** Template CSS **********/
:root {
    --primary: #4761FF;
    --secondary: #555555;
    --light: #F1F3FA;
    --dark: #1C2035;
}
body{
    background-color: #000000!important;
}
p{color:white !important;}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 500;
}


/*** Spinner ***/



/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.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;
}


/*** Navbar ***/
.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-right: 35px;
    padding: 25px 0;
    color: white!important;
    font-size: 18px;
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.navbar-nav{color:white!important;}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Features ***/
.feature-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.feature-item {
    border-color: rgba(0, 0, 0, .03) !important;
}


/*** About ***/
.about {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(/img/about-us.jpg) left center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 36px;
    height: 46px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: var(--primary);
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 90px;
    height: 90px;
    background: var(--primary);
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 3px;
    border-left: 30px solid #FFFFFF;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
}
.theme{background:#8c5487!important;}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Service ***/
.service-item .service-text {
    position: relative;
    width: 100%;
    top: 0;
    left: 0;
    text-align: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .06);
    transition: .5s;
    z-index: 2;
}

.service-item:hover .service-text {
    top: -1.5rem;
}

.service-item .service-text h5 {
    transition: .5s;
}

.service-item:hover .service-text h5 {
    color: var(--primary);
}

.service-item .service-btn {
    position: absolute;
    width: 80%;
    height: 3rem;
    left: 10%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-btn {
    bottom: -1.5rem;
}


/*** Project ***/
.project-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.project-item .project-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    padding-top: 60px;
    transition: .5s;
}

.project-item:hover .project-overlay {
    opacity: 1;
    padding-top: 0;
}

.project-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}
.top-head{font-size:1.6rem !important;
    color: #FFFFFF!important;
}
.top-sub-head{font-size:1rem !important;
    color: #FFFFFF!important;
}

@media (max-width: 768px) {
    .project-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .project-carousel .owl-nav .owl-prev,
    .project-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Team ***/
.team-item {
    position: relative;
    text-align: center;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-social {
    position: absolute;
    padding: 0;
    top: 15px;
    left: 0;
    overflow: hidden;
}

.team-item .team-social li {
    list-style-type: none;
    margin-bottom: 10px;
    margin-left: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social li {
    margin-left: 15px;
    opacity: 1;
}

.team-item .team-social li .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 40px;
    transition: .5s;
}

.team-item .team-social li .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item .team-social li:nth-child(1) {
    transition-delay: .1s;
}

.team-item .team-social li:nth-child(2) {
    transition-delay: .2s;
}

.team-item .team-social li:nth-child(3) {
    transition-delay: .3s;
}

.team-item .team-social li:nth-child(4) {
    transition-delay: .4s;
}

.team-item .team-social li:nth-child(5) {
    transition-delay: .5s;
}


/*** Testimonial ***/
.testimonial-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    transition: .5s;
}

.owl-item .testimonial-item,
.testimonial-item * {
    transition: .5s;
}

.owl-item.center .testimonial-item,
.testimonial-item:hover {
    background: var(--primary);
}

.owl-item.center .testimonial-item *,
.testimonial-item:hover * {
    color: #FFFFFF !important;
}

.testimonial-item img {
    width: 100px !important;
    height: 100px !important;
    border-radius: 100px;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    top: -100px;
    right: 0;
    display: flex;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-left: 15px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .testimonial-carousel .owl-nav {
        top: -70px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .testimonial-carousel .owl-nav .owl-prev,
    .testimonial-carousel .owl-nav .owl-next {
        margin: 0 7px;
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}


/*** Footer ***/
.footer {
    color: #B0B9AE;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #B0B9AE;
    font-weight: normal;
    text-transform: capitalize;
    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 {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #B0B9AE;
}

.copyright {
    background: black!important;
}

.copyright a:hover {
    color: var(--primary) !important;
}

.services{color:white;}
.profile{font-size: 1.25rem!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
  .theme{background:#8c5487!important;}

.mobile-container {
max-width: 480px;
margin: auto;
background-color: #8c5487!important;
height: 500px;
color: white;
border-radius: 10px;
}
.services{color:white;}
.profile{font-size: 1.25rem!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profile-mid{font-size: 1.25rem!important;font-weight: 500!important;color:#8c5487!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.topnav {
overflow: hidden;
background-color:  #8c5487!important;
position: relative;
}
.topnavs {background:white;}
.topnav #myLinks {
display: none;
}
.profiles{font-size: 1.25rem!important;font-weight: 500!important;color:#8c5487!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profiled{font-size: 24px!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profiled-sub{font-size: 18px!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.topnav a {
color: white;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
display: block;
}
.icon{margin-left:150px;}
.topnav a.icon {
background: black;
display: block;
position: absolute;
right: 0;
top: 0;
}

.topnav a:hover {
background-color: #ddd;
color: black;
}

.active {
background-color:#8c5487!important
color: white;
}
.topnav{display:none;}
.bread{color:white!important;font-weight:600;}
.blog-heading{font-size: 35px;
color: #8c5487;
font-weight: 600;
text-transform: capitalize;
}
.blog-headings{font-size: 25px;
color: #8c5487;
font-weight: 600;
text-transform: capitalize;
}

    .services{color:white;}
    .profile{font-size: 1.25rem!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
      .theme{background:#111111!important;}
.review{color:#8c5487!important;}
.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #8c5487!important;
  height: 500px;
  color: white;
  border-radius: 10px;
}
    .services{color:white;}
.profile{font-size: 1.25rem!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profile-mid{font-size: 1.25rem!important;font-weight: 500!important;color:#8c5487!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.topnav {
  overflow: hidden;
  background-color:  #8c5487!important;
  position: relative;
}
.topnavs {background:white;}
.topnav #myLinks {
  display: none;
}
.profiles{font-size: 1.25rem!important;font-weight: 500!important;color:#8c5487!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profiled{font-size: 24px!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.profiled-sub{font-size: 18px!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
.topnav a {
  color: white;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  display: block;
}
.theme-icon{background:#8c5487!important;}
.icon{margin-left:150px;}
.topnav a.icon {
  background: black;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color:#8c5487!important
  color: white;
}
.topnav{display:none;}
.bread{color:white!important;font-weight:600;}
.blog-heading{font-size: 35px;
    color: #8c5487;
    font-weight: 600;
    text-transform: capitalize;
   }
   .blog-headings{font-size: 25px;
    color: #8c5487;
    font-weight: 600;
    text-transform: capitalize;
   }
   .main-heading{color:white;}
   @media screen and (max-width: 768px) {
         .phone-pic {
            width:50%;
            text-align:center;
         }
         .about-me{margin-top: -50px!important;}
         .about-main{margin-top: -40px!important;}
         .topnav{display:block;}
         .navbar{display:none;}
         .bread{font-size:12px!important;}

         .top-sub-head{border: 2px dotted #8c5487;
                       padding: 10px;
                       color:white !important;
                       background:#8c5487;}
                    
        
     }
     .icon-head{color:#8c5487!important;}
     .top-sub-heads{border: 2px dotted #8c5487;
                       padding: 10px;
                       color:white !important;
                       background:#8c5487;
                     text-align:center;
                     font-weight:500;}
                     .top-sub-heading{border: 2px dotted #8c5487;
                       padding: 5px 40px;
                       color:white !important;
                       background:#8c5487;
                     text-align:center;
                     font-weight: 500;
                   text-decoration:none!important;}
                   .box-dot{border:2px dotted #8c5487;}
                   .p-graph{padding:5px;}
                   .pb-img{padding-bottom:10px;}
     
                   .top-bar{background:black!important;}
    .top-sub-bar{background:#8c5487!important;}
    .menu-list{color:#8c5487!important;}
     .menu-list-mobile{color:white!important;margin-left:20px;}
    .navigation{color:black;font-weight:700;background:#f0f3f5!important;}   
    
    .border-anim-wrap {
        position: relative;
        display: inline-block;
        padding: 6px; 
        border-radius: 14px;
        overflow: hidden;
      }
      
      .border-anim-wrap::before {
        content: "";
        position: absolute;
        top: 0; left: 0; right: 0; bottom: 0;
        background: linear-gradient(270deg, transparent, #8c5487, transparent, #8c5487);
        z-index: 1;
        animation: borderMove 1.5s linear infinite;
        background-size: 300% 300%;
        pointer-events: none;
        border-radius: 14px;
      }
      
      .service-item {
        position: relative;
        z-index: 2;
        background: #000; /* dark background like your image */
        border-radius: 12px;
        padding: 20px;
        text-align: center;
      }
      .review-item {
        position: relative;
        z-index: 2;
        background: #000; /* dark background like your image */
        border-radius: 12px;
        padding: 7px;
        
      }
      .review-items {
        position: relative;
        z-index: 2;
        background: #8c5487; /* dark background like your image */
        border-radius: 12px;
        padding: 20px;
        
      }
      .img-container {
        width: 100%;
        
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .centered-img {
        width: 80px;
        height: 80px;
        object-fit: contain;
      }
      
      .top-sub-headings {
        font-size: 1.1rem;
        margin-top: 1rem;
        font-weight: bold;
      }
      
      .p-graph {
        margin-top: 0.5rem;
        font-size: 0.95rem;
        color: #ccc;
      }
      
      @keyframes borderMove {
        0% {
          background-position: 0% 50%;
        }
        100% {
          background-position: 200% 50%;
        }
      }
      .card-ceo{
        padding: 1.5em .5em .5em;
        border-radius: 2em;
        text-align: center;
        box-shadow: 0 5px 10px rgba(0,0,0,.2);
    }
    .img-ceo{
        width: 35%;
        border-radius: 50%;
        margin: 0 auto;
        box-shadow: 0 0 10px rgba(0,0,0,.2);
    }
    .card-title-ceo{
        font-weight: 700;
        font-size: 1.5em;
    }
    .btn-ceo{
        border-radius:2em;
        background-color: teal;
        color: #ffffff;
        padding: .5em 1.5em;
    }
    .btn-ceo:hover {
      background-color: rgba(0, 128, 128, 0.7);
      color: #ffffff;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    }
    .services{color:white;}
    .profile{font-size: 1.25rem!important;font-weight: 500!important;color:white!important;font-family: "Roboto",sans-serif;line-height: 1.2;}
      .theme{background:black!important;}
      .main-heading{color:white;}
        .start-sec{margin-top:70px;}
          @media screen and (max-width: 768px) {
                .phone-pic {
                   width:100%;
                   text-align:center;
                }
                .about-me{margin-top: -250px;}
                .about-main{margin-top: -40px!important;}
            }
            .cardy{
    
                border:none;
                box-shadow: 0 7px 14px 0 rgb(90 122 190 / 13%), 0 3px 6px 0 rgb(90 122 190 / 9%)!important;
            }
            
            .user-content p{
                margin-top:5px;
                font-size:12px;
            }
            
            
            .ratings i{
                color:blue;
            } 
            * {
                box-sizing: border-box;
              }
            
              body, html {
                margin: 0;
                padding: 0;
                overflow-x: hidden; /* ✅ Prevent horizontal scroll */
              }
            
              .hero-section {
                background-image: url('img/about/about.png');
                background-size: contain;
                background-position: center;
                height: 100vh;
                background-repeat: no-repeat;
              }
            
              .inner-img {
                padding: 100px 60px 60px 180px;
                width: 80%;
              }
            
              .wrapper {
                position: relative;
                width: 100%;
                max-width: 550px;
                margin: 0 auto;
                aspect-ratio: 1 / 1; /* ✅ Keeps it square */
                
              }
            
              .center-content {
                position: absolute;
                top: 49%;
                left: 50%;
                transform: translate(-50%, -50%);
                z-index: 2;
                width: 37%;
            }
            
              .center-content img {
                width: 100%;
                height: auto;
                display: block;
                object-fit: contain;
              }
            
              .rotating-circle {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                transform: translate(-50%, -50%);
                animation: rotate 20s linear infinite;
                z-index: 1;
                padding: 60px;
                max-width: 100%;
                overflow-x: hidden;
            }
            
              .rotating-circle img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                display: block;
              }
            
              @keyframes rotate {
                from {
                  transform: translate(-50%, -50%) rotate(0deg);
                }
                to {
                  transform: translate(-50%, -50%) rotate(360deg);
                }
              }
            
              /* ✅ Mobile Fixes */
              @media (max-width: 600px) {
                .wrapper {
                 
                }
            
                .center-content {
                  width: 35%;
                }
            
                .inner-img {
                  padding: 40px;
                }
              }
              .box-body{
                background:#8c5487;
                color:white;
                font-size:1.6rem;
                border-radius:9px;
                border-left:5px solid;
                padding:22px;
              }
              .sub-heading-gap{padding-bottom: 20px;}   
              .tech {
                -webkit-animation: spin 20s linear infinite;
                animation: spin 20s linear infinite;
                animation-delay: 8s;
            }
            @-webkit-keyframes spin {
                0% {
                    transform: rotate(0);
                }
                100% {
                    transform: rotate(360deg);
                }
            }
            .main-heading-new {
    font-size: 35px;
    color: white!important;
    font-weight: 600;
    text-transform: capitalize;
   text-align:center;
}
.blog-heading{text-align:left;}
.review-heading{
  font-size:18px;
}
.review-sub-heading{
  font-size:15px;
  padding-top: 6px;
}
.review-content{
  
  padding-top: 8px;
}
.review-card{background:black!important;}
.themes{background:#111111;}    
.rounded-end {
    border-top-right-radius: 2px !important;
    border-bottom-right-radius: 2px !important;
}
.new-shadow{box-shadow: 0 7px 14px 0 rgb(90 122 190 / 13%), 0 3px 6px 0 rgb(90 122 190 / 9%)!important; background:white!important;}
.blog{border:2px solid #8c5487;}

.form-container {
      border: 2px solid #8c5487;
      padding: 30px;
      border-radius: 15px;
      
      background-color: rgba(255, 255, 255, 0.05);
      box-shadow: 0 0 15px #8c5487;
    }

    .form-container h2 {
      text-align: center;
      color: #8c5487;
      margin-bottom: 20px;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-size: 14px;
    }

    input,
    select {
      width: 100%;
      padding: 10px;
      border: 1px solid #8c5487;
      border-radius: 8px;
      background-color: #1a1a1a;
      color: #fff;
      font-size: 14px;
    }

    input:focus,
    select:focus {
      outline: none;
      border-color: #b372ae;
      box-shadow: 0 0 5px #b372ae;
    }

    button {
      width: 100%;
      padding: 10px;
      background-color: #8c5487;
      border: none;
      border-radius: 8px;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s;
    }

    button:hover {
      background-color: #a66da0;
    }
    .happy-client{border: 4px solid #8c5487;
      border-radius: 20px;}   

      .home-testimonial{background:#0e4764!important;height: 380px}.home-testimonial-bottom{background-color: #f8f8f8;transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top: 20px;margin-bottom: 0px;position: relative;height: 130px;top: 190px}.home-testimonial h3{color: var(--orange);font-size: 14px;font-weight: 500;text-transform: uppercase}.home-testimonial h2{color: white;font-size: 28px;font-weight: 700}.testimonial-inner{position: relative;top: -174px}.testimonial-pos{position: relative;top: 24px}.testimonial-inner .tour-desc{border-radius: 5px;padding: 40px}.color-grey-3{font-family: "Montserrat", Sans-serif;font-size: 14px;color: #6c83a2}.testimonial-inner img.tm-people{width: 60px;height: 60px;-webkit-border-radius: 50%;border-radius: 50%;-o-object-fit: cover;object-fit: cover;max-width: none}.link-name{font-family: "Montserrat", Sans-serif;font-size: 14px;color: #6c83a2}.link-position{font-family: "Montserrat", Sans-serif;font-size: 12px;color: #6c83a2}
      .accordion {
        width: 90%;
        max-width: 1000px;
        margin: 2rem auto;
      }
      .accordion-item {
        background-color: black;
        color: white;
        margin: 1rem 0;
        border-radius: 0.5rem;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.25);
      }
      .accordion-item-header {
        padding: 0.5rem 3rem 0.5rem 1rem;
        min-height: 3.5rem;
        line-height: 1.25rem;
        font-weight: bold;
        display: flex;
        align-items: center;
        position: relative;
        cursor: pointer;
      }
      .accordion-item-header::after {
        content: "\002B";
        font-size: 2rem;
        position: absolute;
        right: 1rem;
      }
      .accordion-item-header.active::after {
        content: "\2212";
      }
      .accordion-item-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.2s ease-out;
      }
      .accordion-item-body-content {
        padding: 1rem;
        line-height: 1.5rem;
        border-top: 1px solid;
        border-image: linear-gradient(to right, transparent, #34495e, transparent) 1;
      }
      .pricing-box {
            border: 2px solid #8c5487;
            border-radius: 15px;
            padding: 30px 20px;
            text-align: center;
            background-color: rgba(255, 255, 255, 0.03);
            transition: transform 0.3s, box-shadow 0.3s;
            color:white;
          }
      
          .pricing-box:hover {
            transform: scale(1.03);
            box-shadow: 0 0 20px #8c5487;
          }
      
          .pricing-title {
            font-size: 24px;
            color: #8c5487;
            margin-bottom: 15px;
            font-weight: bold;
          }
      
          .price {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
          }
      
          .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
          }
      
          .feature-list li {
            padding: 8px 0;
            border-bottom: 1px solid #8c5487;
          }
      
          .btn-pricing {
            background-color: #8c5487;
            border: none;
            border-radius: 8px;
            color: #fff;
            padding: 10px 20px;
            font-size: 16px;
          }
      
          .btn-pricing:hover {
            background-color: #a76ba3;
          }
.blog-info{color:white;}
.content-color{color:#8c5487;}
.btn-small{
  background: #8c5487!important;
    color: white!important;
}
.bg-theme{background:#111111;}
.plan{color:white!important;
text-decoration: none!important;}
.ceo-heading{font-size:19px!important;
    padding:8px!important;}
.ceo-sub-heading{font-size:22px!important;
    
}
.form-text{color:white!important;}