        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 40px 0 0 0;
        }

        /* Abstract Background */
        .abstract-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .abstract-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.15;
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(45deg, #FFB84D, #FF6B35);
            top: -10%;
            left: -10%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(45deg, #4ECDC4, #44A08D);
            bottom: -10%;
            right: -10%;
            animation-delay: 5s;
        }

        .shape-3 {
            width: 350px;
            height: 350px;
            background: linear-gradient(45deg, #F7971E, #FFD200);
            top: 50%;
            right: 10%;
            animation-delay: 10s;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(50px, -50px) scale(1.1); }
            50% { transform: translate(-30px, 50px) scale(0.9); }
            75% { transform: translate(40px, 30px) scale(1.05); }
        }

        /* Grid Pattern */
        .grid-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 1;
        }

        /* Content Container */
        .hero-content {
            position: relative;
            z-index: 10;
        }

        /* Title */
        .hero-title {
            font-size: clamp(2.5rem, 6vw, 5rem);
            font-weight: 800;
            color: #ffffff;
            text-align: center;
            margin-bottom: 2rem;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            letter-spacing: -2px;
        }

        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 4rem;
        }

        .btn-primary-custom {
            background: linear-gradient(45deg, #4a90e2, #50c878, #f5a623);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: #000;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 184, 77, 0.4);
        }

        .btn-primary-custom:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 184, 77, 0.6);
            background: linear-gradient(135deg, #FFC45D 0%, #FF9C52 100%);
        }

        .btn-secondary-custom {
            background: transparent;
            border: 2px solid #FFB84D;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: #FFB84D;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-secondary-custom:hover {
            background: rgba(255, 184, 77, 0.1);
            transform: translateY(-3px);
            color: #FFB84D;
        }

        /* Central Image Container */
        .central-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
            aspect-ratio: 1;
        }

        .infinity-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            border: 3px solid rgba(255, 184, 77, 0.3);
            border-radius: 50%;
            animation: infinityRotate 20s linear infinite;
        }

        .infinity-circle::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 130%;
            height: 130%;
            border: 2px solid rgba(78, 205, 196, 0.2);
            border-radius: 50%;
        }

        @keyframes infinityRotate {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .center-phone {
            position: relative;
            z-index: 5;
            width: 100%;
            max-width: 350px;
            margin: 0 auto;
            border-radius: 40px;
            /* box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6); */
            overflow: hidden;
        }

        .center-phone img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Floating Elements */
        .floating-element {
            position: absolute;
            z-index: 4;
            animation-timing-function: ease-in-out;
            animation-iteration-count: infinite;
        }

        .float-topleft {
            top: -5%;
            left: -55%;
            width: clamp(120px, 15vw, 180px);
            animation: floatPath1 15s infinite;
        }

        .float-topright {
            top: 5%;
            right: 0%;
            width: clamp(80px, 10vw, 120px);
            animation: floatPath2 12s infinite;
        }

        .float-left {
            top: 40%;
            left: -10%;
            width: clamp(150px, 18vw, 220px);
            animation: floatPath3 18s infinite;
        }

        .float-bottomright {
            bottom: 10%;
            right: -5%;
            width: clamp(100px, 12vw, 150px);
            animation: floatPath4 14s infinite;
        }

        .float-rocket {
            bottom: 5%;
            right: -30%;
            width: clamp(80px, 10vw, 120px);
            animation: rocketFloat 10s infinite;
        }

        .float-star {
            top: 15%;
            right: 10%;
            width: clamp(100px, 12vw, 150px);
            animation: starSpin 20s infinite;
        }

        @keyframes floatPath1 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, -15px) rotate(5deg); }
            50% { transform: translate(-15px, 20px) rotate(-5deg); }
            75% { transform: translate(15px, 10px) rotate(3deg); }
        }

        @keyframes floatPath2 {
            0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
            33% { transform: translate(-20px, 15px) rotate(-10deg) scale(1.05); }
            66% { transform: translate(15px, -20px) rotate(10deg) scale(0.95); }
        }

        @keyframes floatPath3 {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        @keyframes floatPath4 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(-25px, -20px) rotate(-8deg); }
            75% { transform: translate(20px, 15px) rotate(8deg); }
        }

        @keyframes rocketFloat {
            0%, 100% { transform: translate(0, 0) rotate(-15deg); }
            50% { transform: translate(-30px, -40px) rotate(-20deg); }
        }

        @keyframes starSpin {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
        }

        .floating-element img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
        }

        .star-badge, .rocket-icon {
            filter: drop-shadow(0 10px 30px rgba(255, 184, 77, 0.5));
        }

        .circular-text {
            position: absolute;
            top: 0;
            right: -75%;
            width: clamp(120px, 15vw, 180px);
            height: clamp(120px, 15vw, 180px);
            animation: rotateText 15s linear infinite;
        }

        @keyframes rotateText {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .circular-text svg {
            width: 100%;
            height: 100%;
        }

        .circular-text text {
            fill: #FFB84D;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 6px;
        }

        /* Trading Icons */
        .trade-icon {
            position: absolute;
            width: clamp(60px, 8vw, 100px);
            height: clamp(60px, 8vw, 100px);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: clamp(30px, 4vw, 45px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.2);
            z-index: 3;
        }

        .icon-top-left {
            top: 8%;
            left: 8%;
            animation: iconFloat1 8s infinite ease-in-out;
        }

        .icon-top-right {
            top: 12%;
            right: 15%;
            animation: iconFloat2 10s infinite ease-in-out;
        }

        .icon-mid-left {
            top: 50%;
            left: 5%;
            animation: iconFloat3 9s infinite ease-in-out;
        }

        .icon-mid-right {
            top: 45%;
            right: 8%;
            animation: iconFloat4 11s infinite ease-in-out;
        }

        .icon-bottom-left {
            bottom: 15%;
            left: 10%;
            animation: iconFloat5 7s infinite ease-in-out;
        }

        .icon-bottom-right {
            bottom: 18%;
            right: 12%;
            animation: iconFloat6 9s infinite ease-in-out;
        }

        @keyframes iconFloat1 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
        }

        @keyframes iconFloat2 {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(25px) rotate(-10deg); }
        }

        @keyframes iconFloat3 {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(15px) rotate(8deg); }
        }

        @keyframes iconFloat4 {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(-15px) rotate(-8deg); }
        }

        @keyframes iconFloat5 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(10px, -15px) rotate(5deg); }
        }

        @keyframes iconFloat6 {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(-10px, 15px) rotate(-5deg); }
        }

        .star-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 40px;
            height: 40px;
            color: #FFD700;
            filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
        }

        /* Video Play Button */
        .video-play-btn {
            position: absolute;
            bottom: 15%;
            left: -15%;
            background: rgba(76, 175, 80, 0.95);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            box-shadow: 0 10px 30px rgba(76, 175, 80, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .video-play-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(76, 175, 80, 0.6);
        }

        .play-icon {
            width: 30px;
            height: 30px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4CAF50;
            font-size: 0.8rem;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .floating-element {
                display: none;
            }
            .float-star, .circular-text {
                display: block;
            }
            .trade-icon {
                width: 70px;
                height: 70px;
                font-size: 35px;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 40px 0 0px 0;
            }
            
            .hero-title {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
            }

            .cta-buttons {
                gap: 1rem;
                margin-bottom: 3rem;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }

            .central-container {
                max-width: 300px;
            }

            .video-play-btn {
                left: 5%;
                bottom: 10%;
                padding: 0.6rem 1.2rem;
                font-size: 0.85rem;
            }

            .circular-text {
                width: 100px;
                height: 100px;
            }

            .float-star {
                width: 80px;
            }

            .trade-icon {
                width: 55px;
                height: 55px;
                font-size: 28px;
                border-radius: 15px;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 2rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary-custom,
            .btn-secondary-custom {
                width: 100%;
                max-width: 280px;
            }
        }

/*********benefits of algo*********/
        
.landing-title {
  margin-bottom: 30px;
}
.landing-title .sub-title {
  font-size: 2rem;
  font-weight: 700;
  font-family: "Rage Italic";
  color: #ffb905;
}
.landing-title h2 {
  font-family: "Segoe UI Bold";
  text-transform: uppercase;
  font-size: 2.55rem;
}
.landing-title h2 .grad-1 {
  background: linear-gradient(45deg, #4a90e2, #50c878, #f5a623);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.landing-title p {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', 'Century Gothic', 'ITC Avant Garde Gothic', sans-serif;
  opacity: 0.8;
  width: 60%;
  margin: 0 auto;
  letter-spacing: 0.5px;
}

.vector-img {
  position: absolute;
  top: 0;
  left: -20px;
}
.vector-img img {
  height: 360px;
}

svg {
  vertical-align: baseline;
}

.benefit-box {
  position: relative;
  background: rgba(241, 242, 242, 0.5);
  padding: 40px 10px;
  box-shadow: 17px 17px 20px rgba(186, 186, 187, 0.3);
  border-radius: 30px;
}
.benefit-box svg {
  width: 40px;
  height: 40px;
}
.benefit-box::after {
  position: absolute;
  content: "";
  width: 54px;
  height: 8px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px 10px 0 0;
}
.benefit-box.pink::after {
  background: #ff3692;
}
.benefit-box.pink h2 {
  color: #ff3692;
  font-weight: 600;
}
.benefit-box.purple::after {
  background: #7238ff;
}
.benefit-box.purple h2 {
  color: #7238ff;
  font-weight: 600;
}
.benefit-box.red::after {
  background: #ff3556;
}
.benefit-box.red h2 {
  color: #ff3556;
  font-weight: 600;
}
.benefit-box.warning::after {
  background: #ffaa05;
}
.benefit-box.warning h2 {
  color: #ffaa05;
  font-weight: 600;
}
.benefit-box h6 {
  font-weight: 600;
  color: #52526c;
}

/* comprehensive-global-solution */

.solutions .demo-content {
  cursor: pointer;
}
.solutions .content {
  overflow: hidden;
}
.solutions .content .couting h2 {
  color: var(--theme-deafult);
  font-weight: 500;
  font-family: "Segoe UI Bold";
  font-size: 7.5rem;
  background: linear-gradient(180deg, #5456aa 0%, rgba(0, 2, 72, 0) 88.85%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0;
  line-height: 1;
  opacity: 0.1;
  white-space: nowrap;
}

.service-page .landing-title p {
  width: 70%;
}
.service-page .yt-box iframe {
  width: 90%;
  height: 340px;
  box-shadow: 0 0 30px 10px rgba(115, 114, 114, 0.3);
  border-radius: 5px;
}
.service-page .solution-box {
  width: 220px;
  height: 100%;
  background-color: #f5f5f5;
  box-shadow: -17px 17px 20px rgba(186, 186, 187, 0.3);
  border-radius: 15px;
  margin: 10px auto;
  padding: 25px 20px 20px 20px;
}
.service-page .solution-box .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 15px;
}
.service-page .solution-box .circle.purple {
  background-color: #deb5dd;
}
.service-page .solution-box .circle.brown {
  background-color: #c5b5b6;
}
.service-page .solution-box .circle.bluegreen {
  background-color: #b5c0c4;
}
.service-page .solution-box .circle.violet {
  background-color: #bbb5c4;
}
.service-page .solution-box .title {
  font-weight: 500;
  font-size: 20px;
  font-family: "Segoe UI Bold", sans-serif;
  margin-bottom: 20px;
}
.service-page .solution-box .title.purple {
  color: #a0009e;
}
.service-page .solution-box .title.brown {
  color: #380000;
}
.service-page .solution-box .title.bluegreen {
  color: #002c39;
}
.service-page .solution-box .title.violet {
  color: #241141;
}
.service-page .solution-box.box2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.service-page .solution-box.box2 .title {
  font-size: 18px;
}
.service-page .solution-box h2 {
  font-weight: 900;
  font-size: 25px;
  font-family: "Segoe UI Bold", sans-serif;
}
.service-page .solution-box p {
  font-family: "Segoe UI Regular", sans-serif;
  margin: 0;
}
.service-page .solution-box-2 {
  width: 100%;
  height: 345px;
  background-color: #f5f5f5;
  box-shadow: -17px 17px 20px rgba(186, 186, 187, 0.3);
  border-radius: 15px;
  margin: 10px auto;
  padding: 25px 20px 20px 20px;
}
.service-page .solution-box-2 .sb-icon {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 15px;
}
.service-page .solution-box-2 .title {
  font-weight: 500;
  font-size: 20px;
  font-family: "Segoe UI Bold", sans-serif;
  margin-bottom: 20px;
}
.service-page .solution-box-2 .title.purple {
  color: #a0009e;
}
.service-page .solution-box-2 .title.brown {
  color: #380000;
}
.service-page .solution-box-2 .title.bluegreen {
  color: #002c39;
}
.service-page .solution-box-2 p {
  font-family: "Segoe UI Regular", sans-serif;
  margin: 0;
}
.service-page .solution-box-3 {
  width: 100%;
  height: 230px;
  background-color: #f5f5f5;
  box-shadow: -17px 17px 20px rgba(186, 186, 187, 0.3);
  border-radius: 15px;
  margin: 10px auto;
  padding: 30px;
}
.service-page .solution-box-3 .title {
  font-weight: 500;
  font-size: 20px;
  font-family: "Segoe UI Bold", sans-serif;
  margin-bottom: 20px;
  text-align: center;
}
.service-page .solution-box-3 .title.purple {
  color: #a0009e;
}
.service-page .solution-box-3 .title.brown {
  color: #380000;
}
.service-page .solution-box-3 .title.bluegreen {
  color: #002c39;
}
.service-page .solution-box-3 p {
  font-family: "Segoe UI Regular", sans-serif;
  margin: 0;
  text-align: center;
}

.package-details .yt-box {
  margin-bottom: 30px;
}
.package-details .yt-box iframe {
  width: 100%;
  height: 280px;
  box-shadow: 0 0 30px 10px rgba(115, 114, 114, 0.3);
  border-radius: 5px;
}
.package-details .img-box {
  width: 100%;
  margin-bottom: 30px;
}
.package-details .img-box img {
  border-radius: 5px;
  width: 100%;
}
.package-details h2 {
  font-weight: 500;
  font-family: "Segoe UI Bold";
}
.package-details h5 {
  font-weight: 600;
}
.package-details p {
  font-family: "Segoe UI Regular";
}
.package-details .price-box {
  text-decoration: line-through;
  text-align: center;
}
.package-details .arrow {
  text-align: center;
}
.package-details .arrow img {
  max-height: 80px;
}
.package-details .current-price-box {
  text-align: center;
}

.fluid-space {
  padding: 0 calc(10px + 70 * (100vw - 300px) / 1620);
}

.demo-imgs {
  margin: -15px;
}
.demo-imgs .demo-content:hover img {
  transform: scale(1.4);
}
.demo-imgs .demo-content .cuba-demo-img {
  box-shadow: 0px 9px 40px rgba(46, 35, 94, 0.15);
  border-radius: 5px;
  position: relative;
  height: 100%;
  padding: 10px;
}
.demo-imgs .demo-content .cuba-demo-img .overflow-hidden img {
  width: 100%;
  transition: all 0.3s ease;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
}
.demo-imgs .demo-content .cuba-demo-img p {
  margin-top: 10px;
  margin-bottom: 0;
  text-align: start;
  font-weight: 600;
    font-family: 'Poppins', 'Century Gothic', 'ITC Avant Garde Gothic', sans-serif;
font-size: large;

}
.demo-imgs .demo-content .title-wrapper {
  padding: 10px 0;
}
.demo-imgs .demo-content .title-wrapper .theme-name {
  position: relative;
  font-size: 1rem;
  font-weight: 600;
  text-transform: capitalize;
}
.demo-imgs ul.dot-group {
  display: flex;
  gap: 6px;
  padding: 0;
}
.demo-imgs ul.dot-group li {
  width: 8px;
  height: 8px;
  background: #e8e8ec;
  border-radius: 100%;
}

/* Hover Zoom + Overlay + Button */
.demo-imgs .demo-content .cuba-demo-img {
  position: relative;
  overflow: hidden;
}

.demo-imgs .demo-content .cuba-demo-img .overflow-hidden {
  position: relative;
}

.demo-imgs .demo-content .cuba-demo-img .overflow-hidden img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* The overlay background */
.demo-imgs .demo-content .cuba-demo-img .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

/* Buy Now button styling */
.buy-now-btn {
  background: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

/* Hover effects */
.demo-imgs .demo-content:hover img {
  transform: scale(1.2);
}

.demo-imgs .demo-content:hover .overlay {
  opacity: 1;
}

.demo-imgs .demo-content:hover .buy-now-btn {
  opacity: 1;
  transform: scale(1);
}

/* Optional: button hover effect */
.buy-now-btn:hover {
  background: #0056b3;
  text-decoration: none;
}



.feature-box {
  padding: 30px 20px;
  text-align: left;
  position: relative;
  cursor: pointer;
}
.feature-box::after {
  position: absolute;
  content: "";
  width: 0;
  height: 5px;
  bottom: 0;
  left: 0;
  background: transparent;
  border-radius: 0 0 10px 10px;
  transition: width 0.5s;
}
.feature-box:hover::after {
  width: 100%;
  transition: width 0.5s;
}
.feature-box .feature-icon img {
  height: 26px;
  width: 100%;
}
.feature-box.bg-feature-1::after {
  background: rgb(255, 61, 61);
}
.feature-box.bg-feature-1 .feature-icon {
  background: rgba(255, 61, 61, 0.15);
}
.feature-box.bg-feature-2::after {
  background: rgb(151, 84, 255);
}
.feature-box.bg-feature-2 .feature-icon {
  background: rgba(151, 84, 255, 0.15);
}
.feature-box.bg-feature-3::after {
  background: rgb(80, 174, 255);
}
.feature-box.bg-feature-3 .feature-icon {
  background: rgba(80, 174, 255, 0.15);
}
.feature-box.bg-feature-4 .feature-icon {
  background: rgba(118, 198, 114, 0.15);
}
.feature-box.bg-feature-4::after {
  background: rgb(118, 198, 114);
}
.feature-box.bg-feature-5 .feature-icon {
  background: rgba(238, 122, 135, 0.15);
}
.feature-box.bg-feature-5::after {
  background: rgb(238, 122, 135);
}
.feature-box.bg-feature-6 .feature-icon {
  background: rgba(255, 182, 109, 0.15);
}
.feature-box.bg-feature-6::after {
  background: rgb(255, 182, 109);
}
.feature-box.bg-feature-7 .feature-icon {
  background: rgba(255, 167, 120, 0.15);
}
.feature-box.bg-feature-7::after {
  background: rgb(255, 167, 120);
}
.feature-box.bg-feature-8 .feature-icon {
  background: rgba(229, 129, 255, 0.15);
}
.feature-box.bg-feature-8::after {
  background: rgb(229, 129, 255);
}
.feature-box h5 {
  font-weight: 600;
}
.feature-box .feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-bottom: 25px;
}
.feature-box p {
  font-size: 15px;
  line-height: 1.5;
    font-family: 'Poppins', 'Century Gothic', 'ITC Avant Garde Gothic', sans-serif;

}

.feature-section .vector-img {
  right: 60px;
  top: 70px;
  left: auto;
}
.feature-section .vector-img img {
  height: 220px;
}

.common-card {
  background: #fcfcfd;
  border: 2px solid #fff;
  box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
  border-radius: 10px;
  height: 250px;
}

.customer-review .rating-title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.customer-review .rating-title {
  font-size: calc(14px + 6 * (100vw - 300px) / 1620);
  font-weight: 700;
}
.customer-review .rating-title .decore-1 {
  margin-top: -35px;
  animation: animationtop 5s infinite;
}
.customer-review .ratings li i {
  color: #ffaa05;
}
.customer-review .f-light {
  color: #52526c;
  opacity: 0.8;
}
.customer-review .customer-wrap {
  margin: 0 -28px;
}
.customer-review .customer-wrap .customer-wrapper {
  position: relative;
  padding: 12px;
}
.customer-review .customer-wrap .customer-wrapper .customer-box {
  position: relative;
  background-color: #f7f7f7;
  text-align: center;
  padding: 40px 30px;
  border-radius: 25px;
  box-shadow: 30px 30px 33px rgba(119, 119, 119, 0.25);
    font-family: 'Poppins', 'Century Gothic', 'ITC Avant Garde Gothic', sans-serif;

}
.customer-review .customer-wrap .customer-wrapper .customer-box img {
  height: 70px;
  width: auto;
}
.customer-review .customer-wrap .customer-wrapper .customer-box h6 {
  font-weight: 600;
  font-size: 1rem;
}
.customer-review .customer-wrap .customer-wrapper .outline-box {
  position: absolute;
  bottom: -6px;
  left: -5px;
}
.customer-review .customer-wrap > div {
  padding: 0 28px;
}

@keyframes animationtop {
  0% {
    transform: translate(-10px, -5px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-10px, -5px);
  }
}
.section-6 {
  position: relative;
}
.section-6 .landing-title {
  display: flex;
  align-items: center;
}
.section-6 .landing-title h2 {
  width: 53%;
  color: rgb(0, 2, 72);
  font-weight: 700;
}
.section-6 .landing-title .title-img {
  transform: rotateX(-180deg);
  width: 300px;
  margin-left: -90px;
  margin-top: -50px;
}
.section-6 .rotate-title {
  width: 15%;
  transform: rotate(-20.97deg);
  text-align: center;
  color: #ff5fa3;
  font-size: 1.6rem;
  margin-left: -30px;
}
.section-6 .build-image img {
  width: 100%;
}
.section-6 .build-content p {
  font-weight: 600;
  font-size: 1.1rem;
    font-family: 'Poppins', 'Century Gothic', 'ITC Avant Garde Gothic', sans-serif;
 
}

.section-7 .app-box {
  padding: 18px 12px 12px;
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 5px;
  background: #f9f7f7;
  box-shadow: 0px 3px 20px rgba(46, 35, 94, 0.2);
}
.section-7 .app-box h6 {
  color: #52526c;
  margin: 0 12px 0 0;
  position: relative;
}
.section-7 .app-box h6 .app-title {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-weight: 600;
}
.section-7 .app-box .app-image {
  flex: auto;
}
.section-7 .app-box .app-image .img-effect {
  box-shadow: 0px 3px 20px rgba(46, 35, 94, 0.1);
  border-radius: 5px;
}
.section-7 .app-box .app-image .img-effect.image-height a img {
  height: auto;
}
.section-7 .app-box .app-image a {
  display: block;
}
.section-7 .app-box .app-image a img {
  width: 100%;
}
.section-7 .app-box ul.dot-group {
  padding: 0 0 13px;
  display: flex;
  gap: 6px;
}
.section-7 .app-box ul.dot-group li {
  width: 8px;
  height: 8px;
  background: #b2b2b2;
  border-radius: 100%;
}

.section-8 .component-hover-effect {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  background: #fcfcfd;
  border: 2px solid #fff;
  box-shadow: 0px 4px 15px rgba(46, 35, 94, 0.15);
  border-radius: 5px;
  padding: 20px;
  justify-content: center;
  min-height: 78px;
}
.section-8 .component-hover-effect h5 {
  font-weight: 700;
  margin-bottom: 0;
  color: rgb(0, 2, 72);
}
.section-8 .component-hover-effect h4,
.section-8 .component-hover-effect small {
  font-weight: 700;
  color: rgb(0, 2, 72);
}

.animate-slider .cards-image img {
  width: 100%;
}

.fluid-space {
  padding: 0 calc(10px + 70 * (100vw - 300px) / 1620);
}

.section-space {
  padding: 80px 0;
  position: relative;
}
/***responsive***/

@media (max-width: 1024px) {
  body {
    padding-top: 0;
  }
  /* .menu-btn {
        background-color: transparent;
        border: 0;
        outline: 0;
        color: #fff;
        font-size: 2rem;
        margin-right: 10px;
        display: block;
      }
  header {
    position: relative;
    padding: 5px;
  }
  header nav .buy-btn {
    height: 35px;
    line-height: 25px;
    padding: 5px 16px;
    font-size: 16px;
  }
  header nav .menu-btn {
    background-color: transparent;
    border: 0;
    outline: 0;
    color: #fff;
    font-size: 2rem;
    margin-right: 10px;
    display: block;
  }
  header .menu-items {
    position: absolute;
    top: 70px;
    left: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: #fff;
    padding: 0;
    height: 0;
    transition: all 0.5s ease;
    opacity: 0;
    visibility: hidden;
  }
  header .menu-items.show {
    padding: 15px 0;
    height: 430px;
    opacity: 1;
    visibility: visible;
  }
  header .menu-items li {
    padding-left: 25px;
  }
  header .menu-items li a {
    color: #002c39;
    line-height: 50px;
  }
  header .menu-items li.trans_btn {
    height: 50px;
  }
} */
@media (max-width: 768px) {
  body {
    padding-top: 0;
  }
  .landing-title h2 {
    font-size: 1.4rem;
    width: 100% !important;
  }
  .customer-review .customer-wrap {
    margin: 0;
  }
  .customer-review .customer-wrap .customer-wrapper .outline-box {
    display: none;
  }
  .customer-review .customer-wrap > div {
    padding: 10px;
  }
  .customer-review .customer-wrap .customer-wrapper .customer-box h6 {
    font-weight: 600;
    font-size: 0.825rem;
  }
  .customer-review .customer-wrap .customer-wrapper {
    padding: 0;
  }
  .customer-review .customer-wrap .customer-wrapper .customer-box {
    padding: 25px 15px;
  }
  .faq-section .vector-image img {
    display: none;
  }
}
@media (max-width: 600px) {
  .hero-section {
    height: auto;
    min-height: auto;
  }
  .hero-section::before {
    -webkit-clip-path: polygon(50% 87%, 100% 100%, 100% 0%, 0% 0%, 0% 100%);
            clip-path: polygon(50% 87%, 100% 100%, 100% 0%, 0% 0%, 0% 100%);
  }
  .hero-section .content {
    padding-top: 75px;
  }
  .hero-section .content .content-title span.sub-title {
    font-size: 1.5rem;
  }
  .hero-section .content .content-title .arrow {
    position: absolute;
    left: -110px;
    top: -10px;
    width: 100px;
  }
  .hero-section .content .btn-grp {
    gap: 35px 70px;
    flex-wrap: wrap;
  }
  .hero-section .content h1 {
    font-size: calc(25px + 35 * (100vw - 300px) / 1620);
  }
  .hero-section .content p {
    width: 100%;
  }
  .hero-section .screen1 {
    margin-top: 25px;
  }
  .vector-img img {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
  .contactSection .secImage {
    display: none;
  }
  .landing-title p {
    width: 100%;
  }
  .service-page .solution-box {
    width: 100%;
    height: auto;
    background-color: #f5f5f5;
    box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    margin: 10px auto;
    padding: 25px;
  }
}


.benefits-sec{
  padding-top: 30px !important;
}
}



/****testimonial********/

.bottom-section-grad {
  position: relative;
}
.bottom-section-grad::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #edf7ff -3.32%, rgba(227, 242, 255, 0) 144.14%);
  opacity: 0.7;
  height: 100%;
  width: 100%;
}

.testimonials .slick-slide {
  padding: 0 14px;
}
.testimonials .testimonial-box {
  position: relative;
  padding: 20px 25px;
  text-align: left;
  margin-bottom: 33px;
}
.testimonials .testimonial-box .rating-content {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.testimonials .testimonial-box .rating-content h6 {
  font-weight: 600;
}
.testimonials .testimonial-box .rating-content .ratings li i {
  color: #ffaa05;
}
.testimonials .testimonial-box p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 0;
}
.testimonials .testimonial-box h5 {
  font-size: 16px;
  margin-bottom: 0;
  font-weight: 600;
}
.testimonials .testimonial-box span {
  font-size: 13px;
}
.testimonials .testimonial-box .customer-img img{
  width: 60px;
  height: 60px;
  background: #fffafa;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -25px;
}
.testimonials .common-card {
  background: #fcfcfd;
  border: 2px solid #fff;
  box-shadow: 0px 9px 20px rgba(46, 35, 94, 0.07);
  border-radius: 10px;
  height: auto;
}

.testimonial-slider .slick-dots li {
  width: auto;
  height: auto;
}

.testimonial-slider .slick-dots li button {
  background: rgba(82, 82, 108, 0.2);
  border-radius: 20px;
  height: 5px;
  width: 11px;
  padding: 0;
  transition: all 0.5s;
}
.testimonial-slider .slick-dots li button::before {
  opacity: 0;
  display: none;
}

.testimonial-slider .slick-dots li.slick-active button {
  background: #7366ff;
  border-radius: 20px;
  width: 20px;
  transition: all 0.5s;
}