
html, body {
    overflow-x: hidden;
}
.home-section {
    position: relative;
    /*overflow: hidden;*/
    height: 100vh;
}

/* Background Image */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

/* Gradient Overlay (Left → Right) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--dy-hero-left), var(--dy-hero-right));
    z-index: 1;
}

/* Content above everything */
.z-2 {
    position: relative;
    z-index: 2;
}

/* Floating Bubble Wrapper */
.bubble-wrapper {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

/* Bubble Style */
.bubble {
    position: absolute;
    bottom: -100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatUp linear infinite;
    opacity: 0.8;
}

/* Floating Animation */
@keyframes floatUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-120vh);
    }
}

/* Example Button */
.btn-smm {
    display: inline-block;
    padding: 10px 25px;
    background: #ff4d4d;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
}

.shape{
    background: #ffffff00;
    position: absolute;
    overflow: hidden;
    left: 0;
    width: 100%;
    z-index: 3;
    bottom: -1px;
}

.shape-fill {
    fill: #ffffff;
}
/* ============================================== Breaking News ========================================*/
.breaking-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    background: transparent; /* optional background */
    padding: 0;
}

.nav-scroll-content {
    margin-bottom: 0px;
    padding: 0px;
    font-size: 30px;
    font-weight: 600;
    padding-left: 100%;
    animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.review-banner {
    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 */
.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 */
.rating-text {
    font-size: 16px;
    color: #333;
}

/* Services Button */
.services-btn {
    background: #c4e538;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    transition: 0.3s ease;
}

.services-btn:hover {
    background: #a4d22f;
}
/*==================================================================== counter =================== ==================================*/
.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    border-radius: 60px;
    color: #fff;
    font-weight: 500;
    transition: 0.3s ease;
}

.stat-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.stat-card p {
    margin: 0;
    font-size: 15px;
    opacity: 0.9;
}

/* Icon circle */
.icon-box {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

/* Gradients (same tone as image) */
.gradient-1 {
    background: linear-gradient(135deg, var(--primary-color), var(--dy-hero_l)) !important;
}

.gradient-2 {
    background: linear-gradient(135deg, var(--dy-hero_r), var(--secondary-color)) !important;
}

.gradient-3 {
    background: linear-gradient(135deg, var(--dy-hero_l), var(--dy-nav)) !important;
}

.gradient-4 {
    background: linear-gradient(135deg, var(--dy-copy), var(--secondary-color)) !important;
}
.text-box.gradient-2{
    padding: 10px;
    border-radius: 10px;
}

/* Hover effect */
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-card{
    transition: all 0.4s ease;
}

/* HOVER */
.stat-card:hover{
    transform: translateY(-8px);
    
    /* Change background */
    background: linear-gradient(135deg, #000428, #004e92);

    /* Strong shadow */
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* Change number style */
.stat-card:hover h3{
    /*font-size: 38px;*/
    color: #ffffff;
    transition: 0.4s ease;
}

/* Change text color */
.stat-card:hover p{
    color: #f1f1f1;
    /*letter-spacing: 1px;*/
}

/* Change icon background */
.stat-card:hover .icon-box{
    background: #ffffff;
    color: #004e92;
    transform: rotate(10deg);
    transition: 0.4s ease;
}
/* =============================== about sections =========================================== */
.featureSec{
    position: relative;
    padding: 120px 0 0px;
    overflow: hidden;
    background: #fff;
}

/* Background Container */
.shape-container{
    position: absolute;
    width: 100%;
    height: 93%;
    top: 0;
    left: 0;
    z-index: 0;
}

.feature-background{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,var(--primary-color),var(--dy-hero_r));
}

.feature-top-shape{
    position: absolute;
    top: 0;
    left: -15%;
}

.feature-top-shape img{
    width: 115%;
}

.topper-feature,
.amazing-feature-bottom{
    position: relative;
    z-index: 2;
}

.section-header h3{
    font-size: 18px;
    font-weight: 600;
    color: #555;
    margin-bottom: 15px;
}

.section-header h2{
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.section-header p{
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.downarrow {
    position: absolute;
    left: 43%;
    display: block;
    min-width: 139px;
}
.downarrow img{
    animation: bounce 2s infinite;
}
div.section-header h3 {
    margin: 0 0 30px;
    position: relative;
}
div.section-header h3::before {
    content: '';
    display: block;
    width: 102px;
    height: 5px;
    background: linear-gradient(135deg, #ffb142 0%, #ff7424 100%);
    position: absolute;
    bottom: -15px;
    border-radius: 10px;
}
.video-button{
    position: relative;
    width: 80px;
    height: 80px;
    background: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
    z-index: 2;
}

/* BIG Rounded Square */
.video-button::before{
    content: "";
    position: absolute;
    inset: -12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    animation: pulseRing 2s infinite;
    
}

/* SMALL Rounded Square */
.video-button::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 25px rgba(255, 0, 102, 0.6), 0 0 45px rgba(0, 217, 255, 0.6);
    opacity: .7;
    z-index: -1;
    
}

/* Animation */
@keyframes pulseRing{
    0% {
        transform: scale(1);
        opacity: 1;
    }
    
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}
@keyframes rotateBig{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

@keyframes rotateSmall{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(-360deg);
    }
}
@keyframes bounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(10px);}
}

.section-header-bottom{
    position: absolute;
    top: -190px;
    width: 40%;
}
.section-header-bottom p{
    color: #fff;
}
.feature-video-area{
    position: relative;
    display: block;
    text-align: center;
    text-decoration: none;
}

.feature-video-area .thumb{
    width: 750px;
    position: relative;
    top: 90px;
    margin: auto;
    background: radial-gradient(circle at 30% 30%, #3b82f6, #4c1d95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    overflow: hidden;
}

.feature-video-area .thumb img{
    width: 100%;
    border-radius: 20px;
}

.button-area{
    position: absolute;
    top: 57%;
    left: 65%;
    transform: translate(-50%,-50%);
    text-align: center;
    z-index: 2;
}

.button-area .title{
    color: #fff;
    font-size: 22px;
    margin-bottom: 20px;
}

/* Play Button */
.video-button{
    width: 80px;
    height: 80px;
    background: orange;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 30px rgba(255,165,0,0.7);
    transition: 0.3s ease;
}

.video-button:hover{
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(255,165,0,1);
}

.amazing-feature-bottom{
    padding-top: 100px;
}

.am-item{
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    margin-bottom: 30px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.am-item .am-thumb img{
    width: 100px;
    margin-bottom: 20px;
}

.am-item .title{
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

/* Hover Effect */
.am-item:hover{
    transform: translateY(-10px);
    background: linear-gradient(
        253deg,
        var(--primary-color) 0%,
        var(--dy-copy) 40%,
        var(--dy-hero_r) 80%
    );
}

.am-item:hover .title{
    color: #fff;
}


.am-item.active .title{
    color: #fff;
}


/* Rotating colorful background */
.thumb::before{
    content: "";
    position: absolute;
    width: 160%;
    height: 160%;
    background: conic-gradient(
        var(--dy-hero_r),
        var(--dy-copy),
        var(--primary-color),
        var(--dy-hero_l),
        var(--dy-footer),
        var(--dy-nav),
        var(--secondary-color)
    );
    animation: rotateBg 6s linear infinite;
    z-index: 0;
}

/* Image stays fixed */
.thumb img{
    position: relative;
    width: 90%;
    height: 90%;
    object-fit: cover;
    border-radius: 50%;
    z-index: 1;
}

/* Rotation animation */
@keyframes rotateBg{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}



/* ===============================
   RESPONSIVE
=================================*/
@media (max-width:991px){

    .feature-video-area .thumb{
        width: 350px;
        height: 350px;
        margin-top: 50px;
    }

    .feature-background{
        width: 100%;
        height: 50%;
        background: linear-gradient(181deg, var(--primary-color), var(--dy-hero_r));
    }

    .section-header h2{
        font-size: 30px;
    }
}
/*==================================================================== Start Carousel =================== ==================================*/
.feature-bg{
    /*border: 20px solid transparent;*/
    background: 
        radial-gradient(circle at center, var(--dy-nav) 0%, var(--primary-color) 40%, #ffffff 100%) padding-box;
        /*linear-gradient(45deg, var(--dy-nav), var(--dy-copy), var(--dy-hero_l), var(--dy-hero_r), var(--dy-footer), var(--primary-color)) border-box ;*/
    color: white;
}
.feature-section p{
    color: black;
}
#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;
}
.feature-box {
    padding:50px 30px;
    background:linear-gradient(
        5deg,
        var(--dy-hero_r),
        var(--dy-hero_l) 
    );
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 12px;
    border: 1px solid red ;
}

/* Light sweep animation */
.feature-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.35),
        transparent
    );
    transform: skewX(-25deg);
    transition: all 0.7s ease;
}

/* Hover Effects */
.feature-box:hover {
    background: linear-gradient(
        5deg,
        var(--secondary-color),
        var(--dy-nav) 
    );
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 10px 25px rgba(0,0,0,0.15),
        0 0 25px rgba(255, 0, 150, 0.25),
        0 0 40px rgba(0, 200, 255, 0.25);
}

/* Trigger the light sweep */
.feature-box:hover::before {
    left: 150%;
}

/* Optional: smooth text color change inside */
.feature-box:hover * {
    transition: color 0.3s ease;
    color: #fff;
}

#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;
}
/*==================================================================== why choose us  =================== ==================================*/
.why-right-btn {
    bottom: 9px;
    position: absolute;
    background: linear-gradient(90deg, var(--dy-nav) 0%, var(--dy-footer) 100%);
    border-radius: 20px;
    color: #fff;
    width: 91%;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 44px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}
.why-right-border{
    padding: 20px;
    background: linear-gradient(135deg, var(--dy-copy), var(--dy-hero_l), var(--dy-hero_r));
    height: 543px;
    border: 5px solid rebeccapurple;
    border-radius: 20px;
    overflow: hidden;
}
.why-box , .color-full-border {
  border: 20px solid transparent;
  border-radius: 30px;
  background: 
    linear-gradient(white, white) padding-box,
    linear-gradient(45deg, var(--dy-nav), var(--dy-copy), var(--dy-hero_l), var(--dy-hero_r), var(--dy-footer), var(--primary-color)) border-box;
}
.color-full-border-how {
  border: 20px solid transparent;
  border-radius: 30px;
  background: 
    linear-gradient(var(--secondary-color), var(--dy-nav)) padding-box,
    linear-gradient(45deg, var(--dy-nav), var(--dy-copy), var(--dy-hero_l), var(--dy-hero_r), var(--dy-footer), var(--primary-color)) border-box;
}
.work-box {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* Icon Style */
.work-box .icon-box i {
    font-size: 45px;
    color: #ff4d4d;
    transition: all 0.4s ease;
}

/* Title */
.work-box h5 {
    margin-top: 20px;
    font-weight: 600;
    transition: all 0.4s ease;
}

/* Paragraph */
.work-box p {
    transition: all 0.4s ease;
}

/* Hover Effect */
.work-box:hover {
    background: linear-gradient(332deg, var(--dy-nav), var(--dy-footer)) !important;
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Text & Icon color change on hover */
.work-box:hover h5,
.work-box:hover p {
    color: #ffffff;
}

.work-box:hover .icon-box i {
    color: #ffffff;
    transform: scale(1.2) rotate(10deg);
}
/*==================================================================== how its work  =================== ==================================*/

/* Section Background */
#how-it-work {
    padding: 80px 0;
    background: #ffffff;
}

/* Main Wrapper */
.how-wrap {
    padding: 50px;
    border-radius: 30px;
}

/* =========================
   LEFT SIDE DESIGN
========================= */


.how-left-box{
    background: url(https://storage.perfectcdn.com/81013d/0sjk7w8fck0hbl18.webp), linear-gradient(180deg, #194FAF 0%, #C658FF 100%);
    border: 4px solid #fff;
    border-radius: 37px;
    box-shadow: 0 44px 50px -40px #C658FF;
    padding: 40px 32px 166px;
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: contain;
}
._how_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #ff7a00;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
}
._how_badge span {
    width: 37px;
    height: 37px;
    display: inline-flex;
    background-color: #FF772E;
    border-radius: 32px;
    align-items: center;
    justify-content: center;
    margin-right: 5px;
}
._sub_heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

._how_content {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.95;
    color: #290303;
}

/* =========================
   RIGHT SIDE DESIGN
========================= */
.text-right {
    text-align: right;
}
/* Register Button */
.btn-main.btn-white {
    background: #fff;
    color: #111;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    border: 1px solid #ddd;
    transition: 0.3s ease;
}

.btn-main.btn-white:hover {
    background: #2f55d4;
    color: #fff;
}

.btn-main.btn-white:hover svg path {
    fill: #fff;
}

/* Step List */
._how_list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    position: relative;
}

/* Vertical Dashed Line */
._how_list::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 10px;
    height: 90%;
    /*border-left: 2px dashed #bcbcc7;*/
}

/* Each Step */
._how_list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

._how_circle {
    border: 11px solid;
    min-width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin-right: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}

/* Orange Gradient */
._orange {
    background: linear-gradient(180deg,var(--primary-color),var(--dy-nav));
}

/* Purple Gradient */
._purple {
    background: linear-gradient(180deg,var(--dy-footer),var(--dy-copy));
}
._how_circle._orange:after {
    top: 75px;
    right: -29px;
}


._how_circle:after {
    content: '';
    width: 29px;
    height: 83px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: absolute;
}
._how_circle._orange:after{
    background-image: url(https://storage.perfectcdn.com/81013d/2z2f3cbd84n5tim3.webp);
}

._how_circle._purple::after {
    top: 70px;
    left: -38px;
    transform: rotateY(180deg);
}
._how_circle._purple:after{
    background-image: url(https://storage.perfectcdn.com/81013d/2z2f3cbd84n5tim3.webp);
}
._how_circle._purple-last:after{
    background-image: url('');
}

._how_text {
    padding-top: 5px;
}

._hiw_heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

._main_content {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Remove last margin */
._how_list li:last-child {
    margin-bottom: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .how-wrap {
        padding: 3px;
    }

    ._sub_heading {
        font-size: 22px;
    }

    ._how_list::before {
        left: 32px;
    }

    ._how_circle {
        width: 60px;
        font-size: 18px;
    }

}



/*==================================================================== Login form =================== ==================================*/

.login-wrapper {
    padding: 10px 0;
}

.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;
    box-shadow: unset;
    -webkit-text-fill-color: unset;
}

.icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(180deg, #4bb3ff, #1f7cff);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-group {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.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: 5px;
    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;
    }
}
/*==================================================================== Scroll =================== ==================================*/
.scroll-wrapper{
    /*display: flex;*/
    background: #ffffff1a;
    gap: 20px;
    overflow: hidden;
    padding: 16px 0px;
    height: 158px;
    position: relative;
    z-index: 5;
    align-items: center;
    top: -30px;
}
.scroll-img{
    width: 100px;
    position: absolute;
    right: 0px;
    height: 100px;
    padding: 10px;
    opacity:0;

}
.wrapp{
    background: white;
}



.curve-1  { 
    top: -40px;
}
.curve-2  {
    top: -11px;
}
.curve-3  { top: 4px; }
.curve-4  { top: 18px; }
.curve-5  { top: 31px; }
.curve-6  { top: 40px; }

.curve-7  { top: 40px; }
.curve-8  { top: 40px; }
.curve-9  { top: 31px; }
.curve-10 { top: 18px; }
.curve-11 { top: 4px; }
.curve-12 { top: -11px; }
.curve-13 { top: -40px; }
.curve-14 {
    animation: moveLeft 45s linear forwards;
    opacity:1 !important;
}

@keyframes moveLeft {
    0% {
        transform: translate3d(5vw,-30px,0);
    }
    25% {
        transform: translate3d(-25vw,30px,0);
    }
    50% {
        transform: translate3d(-50vw,60px,0);
    }
    60% {
        transform: translate3d(-60vw,60px,0);
    }
    75% {
        transform: translate3d(-75vw,30px,0);
    }
    100% {
        transform: translate3d(-105vw,-30px,0);
    }
}

/* ==================== testting 2 ====================*/

.u-wrapper {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
  top: -50px;
  z-index: 5;
}

.u-track {
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 0;
}

.u-track img {
  width: 100px;
  margin: 0 20px;
  position: relative;
  will-change: transform;
}

/* ====================================== Timtimati light =================================== */

/* =================================== 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 {
  margin-top: 13vh;
  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%;
}

/* ======================================================================= Color Full text ===================================*/
.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, #e90ea2, #6366f1);
}
/* ===== 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);
}


/* ========================================================= Our service  ======================================================== */
#our-top {
    padding-top: 150px;
}
._sub_heading {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #010101;
    margin-bottom: 30px;
}
._main_content {
    font-size: 16px;
    font-weight: 500;
    color: #290303;
}
._our_list {
    padding: 0;
    list-style: none;
    margin: 30px 0 10px;
    display: flex;
    flex-wrap: wrap;
}



._our_list ._our_list_item._our_instagram, ._our_instagram ._ot_heading::before {
    background-position: 0 0;
}
.btn.btn-main {
    background: linear-gradient(90deg, var(--dy-nav) 0%, var(--dy-footer) 100%);
    border-radius: 20px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    width: 200px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 44px;
    border: none;
    padding-left: 15px;
    padding-right: 15px;
}
.text-right .btn-white {
    margin-left: auto;
}
._our_top_wrap {
    position: relative;
    padding: 50px 40px;
    box-shadow: 0 100px 50px -80px rgba(0, 0, 0, 0.35);
    border-radius: 31px;
    min-height: 564px;
    max-width: 564px;
    height: 564px;
    overflow: hidden;
}
._our_top_wrap:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 31px;
    padding: 3px;
    background: linear-gradient(0deg, var(--dy-nav), var(--dy-footer));
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask-composite: exclude;
}
.how-left-box {
    border: 4px solid transparent;
    background: 
        url(https://storage.perfectcdn.com/81013d/0sjk7w8fck0hbl18.webp),
        linear-gradient(180deg, var(--dy-footer) 0%, var(--dy-hero_r) 100%)padding-box,
        linear-gradient(to bottom, var(--primary-color) , var(--dy-nav)) border-box;
    background-repeat: no-repeat;
    background-position: 0 bottom;
    background-size: contain;
}
.why-right-border {
    border: 4px solid transparent;
    background: linear-gradient(180deg, var(--dy-footer), var(--dy-hero_r)) padding-box ,
                linear-gradient(to bottom, var(--primary-color) , var(--dy-nav)) border-box;
}
._our_list_content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0s linear 0.5s;
    pointer-events: none;
}
._ot_heading {
    font-size: 32px;
    font-weight: 700;
    color: #010101;
    margin-top: 0;
    position: relative;
    margin-bottom: 15px;
}
._our_list_content ._main_content {
    font-size: 14px;
    margin-bottom: 18px;
}
._ot_list_head {
    font-size: 16px;
    font-weight: 700;
    color: #010101;
    margin-bottom: 20px;
}
._ot_bullets{
    padding: 0;
    margin: 0;
    list-style: none;
}
._our_list_content.active {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
    transition: max-height 0.5s ease, opacity 0.5s ease, visibility 0s linear 0s;
    pointer-events: auto;
}
._our_list ._our_list_item._our_youtube, ._our_youtube ._ot_heading::before {
    background-position: -91px 0;
}
._our_list ._our_list_item._our_facebook, ._our_facebook ._ot_heading::before {
    background-position: -181px 0;
}
._our_list ._our_list_item._our_tiktok, ._our_tiktok ._ot_heading::before {
    background-position: -272px 0;
}
._our_list ._our_list_item._our_twitter, ._our_twitter ._ot_heading::before {
    background-position: -363px 0;
}
._our_list ._our_list_item._our_linkedin, ._our_linkedin ._ot_heading::before{
    background-position: -454px 0;
}
/* ========================================================= start footer ======================================================== */
.footer-section-c{
     padding: 0px;
    position: relative;
    background-color: #ff000075;   
}
.logo {
    max-width: 150px;
    min-width: 100px;
}
.bg-img-overlay1 {
    opacity: 1;
    width: 100%;
    height: 75%;
    left: 0;
    top: 0;
    position: absolute;
}
.footer-bg{
    background: linear-gradient(
        to bottom,
        var(--dy-footer1),
        var(--dy-footer)
    );
    position: relative;
    z-index: 1;
}


@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;
}
/* ========================================================== Faq ==============================================*/
.mtp-margin {
    position: relative;
    margin: 75px 0;
}
.mtp-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.mtp-header h2 {
    font-size: 36px;
    font-weight: 700;
    letter-spacing: -0.50px;
    color: #171717;
    margin-bottom: 0;
}
.mtp-header h2 span {
    background: rgb(39, 104, 74);
    background: -moz-linear-gradient(163deg, rgba(39, 104, 74, 1) 0%, rgba(53, 197, 129, 1) 100%);
    background: -webkit-linear-gradient(163deg, rgba(39, 104, 74, 1) 0%, rgba(53, 197, 129, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    position: relative;
}
.mtp-header h2 span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #34d399;
    top: 60%;
    width: 100%;
    height: 32%;
    opacity: 0.15;
    z-index: -1;
}
.mtp-header p{
    font-size: 15px;
    margin-bottom: 0;
    color: #7b7b7b;
    max-width: 850px;
    white-space: pre-line;
}
.readmoreBtn {
    cursor: pointer;
}
.mtp-advantages .thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    margin: 15px auto;
}
.mtp-advantages .thumb img {
    display: block;
    width: 140px;
    max-width: 80vw;
    height: auto;
}
.mtp-advantages .thumb .play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(52, 211, 153, .5);
    backdrop-filter: blur(2px);
    transition: 200ms all;
}
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
}
.fade:not(.show) {
    opacity: 0;
}
.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none;
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }
}
@media (min-width: 992px) {
    .modal-lg, .modal-xl {
        max-width: 800px;
    }
}
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 700px;
    }
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0;
    max-height: calc(100vh - 60px);
    border-radius: 15px;
}
.modal-header {
    display: flex;
    padding: 15px 25px;
    align-items: center;
    justify-content: start;
    gap: 14px;
    position: relative;
    border-bottom: 1px solid var(--color-8);
}
.modal-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: var(--color-8);
    color: var(--color-6);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
}
.modal-title {
    color: var(--color-3);
    font-size: 18px;
    font-weight: 500;
    line-height: 26px;
    letter-spacing: -0.36px;
    margin: 0;
}
.modal-header .btn-line-icon {
    background: var(--color-10);
    width: 32px;
    height: 32px;
    padding: 10px;
    line-height: 32px;
    color: var(--color-3) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    margin-left: auto;
}
.modal-body {
    position: relative;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1rem;
}
.modal-body {
    overflow-y: auto;
}
#videoModal .video-wrap {
    position: relative;
    padding-top: 56.25%;
    border-radius: 0 0 15px 15px;
}
#videoModal .video-wrap video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0 0 15px 15px;
}
.p-0 {
    padding: 0 !important;
}
.works-box-container{
    position: relative;
    overflow: hidden;
    padding: 35px 0;
    z-index: 1;
}
.works-box-container .works-box-wrapper {
    display: flex;
    gap: 15px;
    padding-left: 0;
    transition: transform 0.4s ease;
}
.works-box-container .works-box {
    display: flex;
    gap: 15px;
    flex-direction: row;
    flex: 0 0 calc((100% - 30px) / 3);
    background: #fff;
    padding: 20px 20px 0 20px;
    border-radius: 15px;
    border: 1px solid #e4f6ed;
    position: relative;
    cursor: pointer;
    overflow: hidden;
}
#worksboxContainer1 .works-box {
    flex-direction: column;
    padding: 20px;
}
#worksboxContainer1 .works-box:before, #worksboxContainer2 .works-box:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-top: 1px solid #34d399;
    border-left: 1px solid #34d399;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 15px;
    z-index: -1;
}
#worksboxContainer1 .works-box:after, #worksboxContainer2 .works-box:after {
    position: absolute;
    content: "";
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-bottom: 1px solid #34d399;
    border-right: 1px solid #34d399;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    opacity: 0;
    visibility: hidden;
    border-radius: 15px;
    z-index: -1;
}
#worksboxContainer1 .works-box .icon {
    font-size: 24px;
    font-weight: 600;
    margin: auto;
}
.works-box-container .works-box .text {
    position: relative;
}
#worksboxContainer1 .works-box .text{
    display: flex;
    flex-direction: column;
    text-align: center;
}
.works-box-container .works-box .text span {
    font-size: 16px;
    font-weight: 600;
    color: #171717;
}
.works-box-container .works-box .text p{
    font-size: 14px;
    color: #7b7b7b;
    margin-bottom: 0;
    margin-top: 10px;
}
.works-box-container .worksbox-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    gap: 5px;
}
.works-box-container .btn-step{
    display: inline-block;
    color: #fff;
    background: #34d399;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    border: 1px solid #34d399;
}
.works-box-container .btn-step:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.progress-bar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    background-color: #007bff;
    transition: width .6s ease;
}
.works-box-container .progress-bar {
    flex: 1;
    height: 4px;
    background: #1c563b30;
    margin: 0 10px;
    position: relative;
    border-radius: 4px;
}
.works-box-container .progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #34d399;
    width: 0%;
    border-radius: 4px;
    transition: width 0.3s ease;
}
.mtp-header h3 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -1.25px;
    color: #171717;
    margin-bottom: 0;
    margin-top: 20px;
}
.mtp-header h3 span {
    background: rgb(39, 104, 74);
    background: -moz-linear-gradient(163deg, rgba(39, 104, 74, 1) 0%, rgba(53, 197, 129, 1) 100%);
    background: -webkit-linear-gradient(163deg, rgba(39, 104, 74, 1) 0%, rgba(53, 197, 129, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
}
.mtp-header h3 span:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: #34d399;
    top: 60%;
    width: 100%;
    height: 32%;
    opacity: 0.15;
    z-index: -1;
}
.cost-factors-component {
    max-width: 1400px;
    width: 100%;
    background: linear-gradient(180deg, var(--dy-footer), var(--dy-hero_r));
    border-radius: 20px;
    border: 1px solid #e4f6ed;
    padding: 35px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.cost-factors-component .main-content{
    display: flex;
    gap: 30px;
}
.cost-factors-component:after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    height: 75px;
    background: linear-gradient(180deg, var(--dy-footer), var(--dy-hero_r));
    -webkit-filter: blur(57px);
    filter: blur(57px);
    z-index: 1;
}
.cost-factors-component .image-placeholder {
    flex: 1;
    position: sticky;
    top: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    max-width: 480px;
    max-height: 480px;
    margin: 0 auto;
}
.cost-factors-component .feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}
.cost-factors-component .feature-accordion {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 5px;
    overflow: auto;
    max-height: 450px;
    padding: 0 10px 0 0;
}
.cost-factors-component .accordion-item .accordion-header {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #f5f8ff;
    border: 1px solid #d7def4;
    padding: 15px 10px;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
}
.cost-factors-component .accordion-item .accordion-header:before {
    content: '';
    width: 4px;
    height: 60%;
    background: #3be395;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.cost-factors-component .accordion-item .accordion-header h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    color: #171717;
}
.cost-factors-component .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, margin-top 0.5s ease-out;
}
.cost-factors-component .accordion-item.active .accordion-content {
    max-height: max-content;
    margin-top: 8px;
}
.details-area {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 25px 0px;
}
.details-area details {
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    border: 1px solid #cdd6f2;
    padding: 5px 0;
    background-color: #f6f9ff;
}
details summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    list-style: none;
    user-select: none;
    padding: 15px;
}
.details-area details>div {
    font-size: 14px;
    color: #171717;
    padding: 0 10px 10px 10px;
}
.details-area details summary:before {
    content: '';
    width: 5px;
    height: 60%;
    background: #3be395;
    border-radius: 0 5px 5px 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin-top: auto;
    margin-bottom: auto;
}
.details-area details summary {
    cursor: pointer;
    list-style: none;
    position: relative;
}
details>div>ol{
    list-style: auto;
    margin: 0 33px;
}
.details-area details summary h2, .details-area details summary h3 {
    font-size: 18px;
    color: #171717;
    margin-bottom: 0;
}
.details-area details[open] summary h2, .details-area details[open] summary h3 {
    color: #3be395;
}
.details-area details p{
    padding: 15px;
    margin-bottom: 0;
    border: none;
}
.mtp-margin .glow {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    width: 50%;
    height: 100px;
    background: radial-gradient(circle at 30% 107%, #6cef59 0%, #4dd672 5%, #40cb7d 45%, #0fa352 60%, #3ac782 90%);
    border-radius: 100px;
    filter: blur(100px);
    opacity: .3;
    z-index: -1;
}
.readmoreText {
    padding:20px;
}
/* ============================================= news latter area =============================*/
.newsletter_area {
    background: url(../img/home13_boxes_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.newsletter_area h3 {
    margin-bottom: 0;
    font-size: 30px;
    color: #5a5a5a;
}
.newsletter_area h3 i {
    margin-right: 15px;
    color: var(--theme_color);
}

button.details.border-0 {
    background: none;
}

.subscribe_form {
    position: relative;
    width: 100%;
    height: 60px;
    background: var(--white);
    border-radius: 10px;
}
.subscribe_form input {
    border: 0;
    height: 100%;
    border-radius: 10px;
    padding: 0 200px 0 40px;
    font-size: 18px;
    width: 100%;
    border: 1px solid var(--theme_color);
}
.subscribe_form button {
    background: var(--linear_bg2);
    color: var(--white);
    font-size: 18px;
    height: 100%;
    border: 0;
    padding: 0 45px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: absolute;
    right: 0;
    top: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.subscribe_form button:hover {
    background: var(--linear_bg3);
}
.subscribe_form input[type="text"]:focus{
    border: 1px solid var(--theme_color);
    outline: 0;
}
/* newsletter_end */

/*======================================================================= Mobile versions =============================================*/
@media (max-width: 700px) {
    .review-banner{
        justify-content: center;
        flex-wrap: wrap;
    }
    .review-left{
        flex-wrap: wrap;
    }
    .avatar-group{
        justify-content: center;
        display: flex;
        width: 100%;
    }
    .shape{
        z-index: 2;
    }
    .u-wrapper{
        top:50px;
    }
    .u-track img{
        width:59px;
        margin:0 0;
    }
    .featureSec{
        padding:0 0;
    }
    .section-header{
        text-align: center;
        width: 96%;
    }
    .downarrow {
        left:32%;
    }
    .button-area{
        top: 65%;
        left: 52%;
    }
    .section-header-bottom{
        top: unset; 
        width: 100%;
        position: static;
        text-align: center;
    }
    .section-header-bottom *{
        color:black;
    }
    
    div.section-header h3::before{
        width: 322px;
    }
    .btn.btn-main{
        width: inherit;
        margin-bottom: 20px;
    }
    .cost-factors-component .image-placeholder{
            position: static;
    }
    .main-content{
        flex-direction: column;
    }
    .cost-factors-component{
        background: inherit;
        border-radius: unset;
        border: unset;
        padding: unset;
    }
    .why-right-border{
        margin-top: 25px;
    }
    
    
    
    
}