.nav-scroll-wrapper {
    overflow: hidden;
    /*padding: 15px 0;*/
    width: 777px; /* custom width for track */
    background: transparent;
    /*border: 1px solid #ccc;*/
    
    position: relative;
    top: 50px;
    left: 122px;
    z-index: 3;
}

@media(max-width: 991px){
    .nav-scroll-wrapper{
        left:0;
    }
}
.footer-ul-xx{
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
}


.nav-scroll-track {
    display: flex;
    width: max-content;
    animation: scroll-left_nav 20s linear infinite;
}
.nav-scroll-content{
    font-weight: 900;
    font-size: xx-large;
    color: white;
}

.nav-scroll-btn {
    margin: 0 10px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    background: #2563eb;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    white-space: nowrap;
}

@keyframes scroll-left_nav {
    0%{
        transform: translateX(100%);
    }
    50% {
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}

.review-banner{
    margin-bottom: 15px;
    background: #e9edf3;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.avatar-group{
    display: flex;
}
.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid #fff;
    object-fit: cover;
    margin-left: -15px;
}
.avatar:first-child {
    margin-left: 0;
}
.rating-text {
    font-size: 16px;
    color: #333;
}
.services-btn {
    background: #c4e538;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Main wrapper */
.login-hero{
    display: flex;
    justify-content: center;
    margin-bottom: -67px;
}
.login-wrapper {
    width: 95%;
    position: relative;
    top: -90px;
    max-width: 1300px;
    background: #fff;
    padding: 22px;
    border-radius: 40px;
    box-shadow: 0 15px 40px rgba(0, 100, 255, 0.15);
}

/* Form layout */
.login-form {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Inputs */
.input-group-1 {
    display: flex;
    align-items: center;
    background: #f4f7fb;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #d0d7e2;
    height: 56px;
    flex: 1;
}

.input-group-1.full {
    min-width: 260px;
}

.input-group-1 input {
    border: none;
    outline: none;
    width: 100%;
    padding-left: 10px;
    font-size: 19px;
    height: 100%;
    background: #f4f7fb;
}

/* Left icons */
.icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #4bb3ff, #1f7cff);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Action group */
.action-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Small icon buttons */
.icon-btn {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    border: 1px solid #d0d7e2;
    background: #f4f7fb;
    font-size: 18px;
    cursor: pointer;
}

/* Login button */
.login-btn {
    height: 56px;
    padding: 0 26px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(180deg, #4bb3ff, #1f7cff);
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

/* Social buttons */
.social-btn {
    width: 100%;
    height: 56px;
    border-radius: 12px;
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.facebook {
    background: #1877f2;
}

.google {
    background: #db4437;
}
.social-btn-continer{
    margin-top: 29px;
    width: 100%;
    display: flex
;
    gap: 20px;
}

@media(max-width:910px){
    .login-form{
        flex-direction: column;
    }
    .input-group-1.full{
        width: 100%;
    }
    .action-group{
        width: 100%;
        flex-wrap: nowrap;
    }
    .login-btn{
        justify-content: center;
        width: 100%;
    }
    .input-group-1{
        flex:none;
    }
    .login-wrapper{
        top:0px;
        margin-bottom: 29px;
    }
    .login-hero{
        margin-bottom: 0px;
    }
}



/* =================================================================================    end login ====================================================== */


.scroll-container {
    margin: auto;
    width: 70vw;               /* 1/2 of PC screen */
    overflow: hidden;
    background: #f4f4f4;
    padding: 14px 0;
    position: relative;
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(8px);
    border-radius: 18px;
}

.scroll-track {
    display: flex;
    width: max-content;
    animation: infinite-scroll 14s linear infinite;
}

.scroll-track button {
    margin: 0 10px;
    padding: 10px 22px;
    border-radius: 30px;
    border: none;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
}

/* infinite movement */
@keyframes infinite-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-40%);
    }
}

/* edge blur fade */
.scroll-container::before,
.scroll-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 70px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-container::before {
    left: 0;
    background: linear-gradient(
        to right,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
}

.scroll-container::after {
    right: 0;
    background: linear-gradient(
        to left,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
}


/* base social button */
.scroll-track button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;

    background: linear-gradient(
        45deg,
        #F58529,
        #DD2A7B,
        #8134AF,
        #515BD4
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.scroll-track button:hover {
    -webkit-text-fill-color: #DD2A7B; /* restore text color */
    color: #DD2A7B;
}

/* ================================================================================== end scroll ========================================== */

#card-container , #card-container-service {
    padding-right: 40px;
    width: 100%;
    max-width: 1300px;
    display: block;
    margin: auto;
    overflow: hidden; /* hide extra cards */
    position: relative;
    transition: all 0.3s ease;
}

#m_card{
    background:white;
}
#m_card:hover *{
    color:white;
}

.service-card-h:hover{
    scale:1.05;
    box-shadow:0 4px 12px rgb(1 1 1);
}

.card-track , .card-track-service {
    display: flex;
    gap: 20px;
    padding:14px;
    transition: transform 0.5s ease;
}
@media (max-width: 1000px) {
    .card-track {
        /*display: block;*/
    }
    .service-card-h,.feature-card-h{
        flex: 0 0 auto;          
        width: 100%;             
        max-width: 100%;
    }
    #card-container , #card-container-service{
        padding-right: 0px;
    }
}

.hero-m{
    position: absolute;
    top: 60px;
    left: 50px;
    border: 50px solid red;
    border-radius: 50%;
    z-index: 4;
}
/* =================================================================== end Carousel ======================================================= */
.tv-bottom{
    background: black;
    width: 80%;
    height: 79px;
    position: absolute;
    bottom: -17px;
    border-radius: 100px;
    z-index: -1;
    right: 10%;
}

.pro-card{
    padding:25px;
    border-radius:12px;
    cursor:pointer;

    /* gradient ready for animation */
    background:linear-gradient(90deg, #ffffff, #ffffff, var(--dy-hover));
    background-size:200% 100%;
    background-position:left;

    transition:background-position .7s cubic-bezier(.25,.8,.25,1);
}

/* smooth inner animation */
.pro-card *{
    transition:transform .4s ease, color .4s ease;
}

/* HOVER */
.pro-card:hover{
    background-position:right; /* THIS creates left → right animation */
}

/* scale all inner content */
.pro-card:hover *{
    transform:scale(1.05);
}

/* change only h5 color */
.pro-card:hover h5{
    color:#fff;
}

/*============================ ============== smm service -=======================================*/
#service_home{
    background: radial-gradient(#4eff00, transparent);
}
#service_home .service_content {
    text-align: center;
    margin-bottom: 20px;
}
#service_home .service_content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 45px;
    font-weight: 900;
    color: black;
    margin-bottom: 5px;
}
#service_home .card_services {
    margin-bottom: 20px;
    background: #F6F9FF;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.22);
    border-radius: 30px;
    border: none;
}
#service_home .card_services .card-header {
    background: #EFF3FC;
    border: none !important;
    border-radius: 30px;
    padding: 30px 30px;
}
#service_home .card_services .service_tabs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}
#service_home .card_services .service_tabs button {
    display: flex;
    width: 100%;
    font-size: 18px;
    color: black;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: white;
    border: 2px solid white;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.13);
    border-radius: 10px;
    min-height: 58px;
}
#service_home .card_services .service_tabs button.active {
    border-color: var(--navbar-active);
}
.services_tabs_image{
    max-width: 400px;
    margin: auto;
}

/* =============================================== end how its work =================================================== */
.testimoi-bg{
    padding-top: 64px;
    background: linear-gradient(
        to bottom left,
        var(--carousel),
        var(--secondary-color)
    );
}

.how-count {
    border: 9px solid #ffffff;
    border-radius: 50%;
    padding: 6px;
    text-shadow: none;
    font-size: 24px;
    font-weight: 700;
    width: 80px;
    height: 80px;
    color: #fff;
    text-align: center;
    line-height: 48px;
    margin-bottom: 12px;
}
._purple{
    background: linear-gradient(180deg, var(--dy-copy), var(--primary-color));
}
._orange {
    background: linear-gradient(180deg, var(--secondary-color), var(--dy-hover));
}



/* ==========================================================  end testiminal ========================================= */
.fancy-hover-card{
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.4s ease;
    background: #ffffff;
    z-index: 1;
}

/* gradient layer */
.fancy-hover-card::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #4f46e5, var(--dy-hover));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

/* hover effect */
.fancy-hover-card:hover::before{
    opacity: 1;
}

/* lift effect */
.fancy-hover-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* text & icon color change smoothly */
.fancy-hover-card .icon-area i,
.fancy-hover-card .content-area h3,
.fancy-hover-card .content-area h5{
    transition: color 0.4s ease;
}

.fancy-hover-card:hover .icon-area i,
.fancy-hover-card:hover .content-area h3,
.fancy-hover-card:hover .content-area h5{
    color: #ffffff;
}


/* ========================================================================  end achivement ========================================== */
/* ===== Common Behavior ===== */
.text-colorful-1, .text-colorful-1 *,
.text-colorful-2, .text-colorful-2 *,
.text-colorful-3, .text-colorful-3 *,
.text-colorful-4, .text-colorful-4 *{
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent;
    transition: all .4s ease;
}

.text-colorful-1:hover, .text-colorful-1:hover *,
.text-colorful-2:hover, .text-colorful-2:hover *,
.text-colorful-3:hover, .text-colorful-3:hover *,
.text-colorful-4:hover, .text-colorful-4:hover *{
    scale:1.05;

}

/* ===== Color Style 1 ===== */
.text-colorful-1, .text-colorful-1 *{
    background: linear-gradient(135deg, #4f46e5, #06b6d4, #22c55e, #f59e0b);
}

/* ===== Color Style 2 ===== */
.text-colorful-2, .text-colorful-2 *{
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
}

/* ===== Color Style 3 ===== */
.text-colorful-3, .text-colorful-3 *{
    background: linear-gradient(135deg, #0052ff, #ee0040, #11a327);
}

/* ===== Color Style 4 ===== */
.text-colorful-4, .text-colorful-4 *{
    background: linear-gradient(135deg, #14b8a6, #0ea5e9, #ff0000);
}
/* ===== Shared colorful text behavior ===== */
[class^="text-colorful-"] :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    transition: color .4s ease, background .4s ease;
}

/* On hover → white text */
[class^="text-colorful-"]:hover :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background: none !important;
    color: #ffffff;
}

/* ===== Style 1 ===== */
.text-colorful-1 :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background: linear-gradient(135deg,#4f46e5,#06b6d4,#22c55e,#f59e0b);
}

/* ===== Style 2 ===== */
.text-colorful-2 :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background: linear-gradient(135deg,#ec4899,#8b5cf6,#3b82f6);
}

/* ===== Style 3 ===== */
.text-colorful-3 :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background: linear-gradient(135deg,#ef4444,#f97316,#eab308);
}

/* ===== Style 4 ===== */
.text-colorful-4 :is(h1,h2,h3,h4,h5,h6,p,span,a,i,small,strong,em){
    background: linear-gradient(135deg,#14b8a6,#0ea5e9,#6366f1);
}

/* ============================================================== end color ful text ============================================== */
.footer-bg{
    background: linear-gradient(
        to bottom,
        #ff00736b,
        var(--dy-footer)
    );
}


@media(max-width:500px){
    
    .socil{
        justify-content: center;
    }
    .footer-widget{
        text-align: center;
    }
    
    .quick-ul{
        display: flex;
        justify-content: center;
        gap: 9px;
        flex-wrap: wrap;
    }
    .widget-title::after{
        width: 100% !important;
    }
    .widget-title::before{
        left: 41% !important;
    }
}



.copyright-area{
    padding: 10px;
    padding-bottom: 30px;
    background: var(--dy-copy);
}

.copy-text{
    width: 80%;
    margin: auto;
}
/* =================================== timtimati light 2 ===================================================== */
.christmas-garland {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 1;
  padding: 0;
  pointer-events: none;
  width: 100%;
  height: 85px;
}

.christmas-garland .christmas-garland__item {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  margin-left: 20px;
}

.christmas-garland .christmas-garland__item:first-child {
  margin-left: -40px;
}

.christmas-garland {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  position: absolute;
  z-index: 11;
  padding: 0;
  pointer-events: none;
  width: 100%;
  height: 85px;
}

.christmas-garland .christmas-garland__item:before {
  content: "";
  position: absolute;
  background: #222;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  top: -1px;
  left: 9px;
}

div.shape {
  position: absolute;
  overflow: hidden;
  left: 0;
  width: 100%;
  z-index: 2;
}

.christmas-garland .christmas-garland__item .shape {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: flash-1;
  animation-name: flash-1;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.christmas-garland .christmas-garland__item .apple {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 8px;
}

.christmas-garland .christmas-garland__item:nth-child(2n+1) .shape {
  -webkit-animation-name: flash-2;
  animation-name: flash-2;
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
}

.christmas-garland .christmas-garland__item:nth-child(4n+2) .shape {
  -webkit-animation-name: flash-3;
  animation-name: flash-3;
  -webkit-animation-duration: 1.1s;
  animation-duration: 1.1s;
}

.christmas-garland .christmas-garland__item:nth-child(3n+1) .shape {
  -webkit-animation-duration: 1.4s;
  animation-duration: 1.4s;
}

@keyframes flash-1 {

  0%,
  100% {
    background: rgb(255, 219, 0);
    box-shadow: 0px 5px 24px 3px rgb(255, 219, 0);
  }

  50% {
    background: rgba(255, 219, 0, 0.4);
    box-shadow: 0px 5px 24px 3px rgba(255, 219, 0, 0.4);
  }
}

@keyframes flash-2 {

  0%,
  100% {
    background: rgb(247, 95, 9);
    box-shadow: 0px 5px 24px 3px rgb(247, 95, 9);
  }

  50% {
    background: rgba(247, 95, 9, 0.2);
    box-shadow: 0px 5px 24px 3px rgba(247, 95, 9, 0.2);
  }
}

@keyframes flash-3 {

  0%,
  100% {
    background: rgb(6, 233, 211);
    box-shadow: 0px 5px 24px 3px rgb(6, 233, 211);
  }

  50% {
    background: rgba(6, 233, 211, 0.2);
    box-shadow: 0px 5px 24px 3px rgba(6, 233, 211, 0.2);
  }
}

.christmas-garland .christmas-garland__item:after {
  content: "";
  top: -9px;
  left: 14px;
  position: absolute;
  width: 52px;
  height: 18px;
  border-bottom: solid #222 2px;
  border-radius: 50%;
}


/*-----------------------end ------------------------*/
.table>:not(caption)>*>*{
        border-bottom-width: 0;
}
