.sectionPadingrl {
    padding-right: 3rem;
    padding-left: 3rem;
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .sectionPadingrl {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .sectionPadingrl {
        padding-right: 0.5rem;
        padding-left: 0.5rem;
    }
}
.imgLogo{
  max-width: 60% !important;
  height: auto;
  margin: 0px;
}
.imgLogo1{
  max-width: 70% !important;
  height: auto;
  margin: 0px;
}
.sp{
  padding-top: 100px;

}
.topic{
      margin-top: 10px !important;
    }
    .whatwedo{
         padding-top: 80px;
        padding-bottom:50px;
    }
    .aboutBack{
          background-color: #F4FAFE !important;
    }
    .bottomPadding{
        padding-bottom: 100px !important;
    }
    .colorpara{
        color: black !important;
    }
    .accordion-item{
        background-color: #29ABE2 !important;
    }
    .digital_h2_span{
        color: #29ABE2 !important; 
    }
     .sectionPadding{
        padding-top:50px;
        padding-bottom: 100px;
     }
     .nsSpace{
        padding-top: 50px;
        padding-bottom: 50px;
     }
     .gcdpt{
        padding-top: 0px;
        padding-bottom: 50px;
     }
     .countrPadding{
        padding-top: 50px;
        padding-bottom: 10px;
     }
     .font_wieght{
        color: #0e0129;
    font-weight: 700;
    font-family: "Barlow Condensed", sans-serif !important;
    text-transform: capitalize;
     }
     /* .footerBg{
        background-image: url(../../assets/img/map.jpg);
        background-position: center center;
        background-repeat: no-repeat;
        background-size: cover;
        height: 100%;
        position: relative;
        z-index: 1; 
     }
  */
  /* .footerBg{
    background-image: url(../../assets/img/map.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
    position: relative;
    z-index: 1; 
    padding-top: 50px;
    padding-bottom: 30px;
} */

.footerBg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8); /* White with 80% opacity */
    z-index: -1; /* Behind the content */
}
.logoHieght{
    max-width: 60% !important;
}


.navbar .navbar-expand-md {
max-height: -1em !important;
}
     .section-padding{
        padding-top:80px !important;
        padding-bottom: 80px !important;
     }
     .crpto_top{
        padding-top: 50px;
     }
     .wrapper-bg{
        background-color: #2E3192 !important;
     }
     .icones{
        display: flex !important;
     }
     .about_bg{
        background-color: #F4FAFE !important;
     }
     .section_pd{
        margin-top: 80px;
        margin-bottom: 80px;
     }
      .testimonial{
        padding-top: 80px;
      }
    .ftBorder{
         border-top: 2px solid #EBEBEB !important;
    }
    .ptb{
        padding-top: 40px;
    }
    #ft_address{
        color: #29ABE2 !important;
    }
   .icon-color
   {
    color: #29ABE2 !important;
   }
   .lineHeightp{
    line-height: 50px;
   }
   #hed_colo{
    color: #29ABE2;
   }
   .blog_padding{
    padding-top: 0px;
   }
   .boxPadding{
    margin-right:-2rem;
   }

  /* ===== BACKGROUND ANIMATIONS ===== */
.banner-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

/* Animated Circles */
.bg-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(41, 171, 226, 0.1);
    animation: circle-float 30s infinite linear;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -30px;
    right: 10%;
    animation-delay: 10s;
    animation-direction: reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 85%;
    animation-delay: 20s;
}

@keyframes circle-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(40px, -30px) rotate(90deg); }
    50% { transform: translate(-20px, 40px) rotate(180deg); }
    75% { transform: translate(30px, 20px) rotate(270deg); }
}

/* Particle Effects */
.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: particle-move 20s infinite linear;
}

.particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 15%; animation-delay: 0s; }
.particle:nth-child(2) { width: 6px; height: 6px; top: 60%; left: 80%; animation-delay: 5s; }
.particle:nth-child(3) { width: 3px; height: 3px; top: 40%; left: 30%; animation-delay: 10s; }
.particle:nth-child(4) { width: 5px; height: 5px; top: 70%; left: 40%; animation-delay: 15s; }

@keyframes particle-move {
    0%, 100% { transform: translate(0, 0); opacity: 0.3; }
    25% { transform: translate(30px, -20px); opacity: 0.6; }
    50% { transform: translate(-20px, 30px); opacity: 0.4; }
    75% { transform: translate(25px, 15px); opacity: 0.5; }
}

/* ===== CAROUSEL WRAPPER ===== */
.carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.carousel-track {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100vh;
    opacity: 0;
    visibility: hidden;
    transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(30px);
    display: flex;
    align-items: center;
}

.carousel-slide.active {    
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

/* ===== BANNER TEXT STYLES ===== */
.banner-area-six {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    /* background: linear-gradient(135deg, #0a192f 0%, #1a365d 100%); */
    background: linear-gradient(45deg, #ccd8e0, #2892cc, #2376f3);
}

.banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.banner-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.banner-btn {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
}

.default-btn.six {
    background: linear-gradient(135deg, #29ABE2 0%, #1a8bc8 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(41, 171, 226, 0.3);
}

.default-btn.six:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(41, 171, 226, 0.5);
}

.default-btn.active {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.default-btn.active:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-3px);
}

/* ===== IMAGE CONTAINER WITH SUBTLE EFFECTS ===== */
.banner-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.banner-img {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.banner-img img {
    width: 100%;
    height: auto;
    display: block;
    animation: float-smooth 8s ease-in-out infinite;
    transform-origin: center;
}

@keyframes float-smooth {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.02);
    }
}

/* Floating Dots */
.floating-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dot {
    position: absolute;
    background: rgba(77, 171, 247, 0.15);
    border-radius: 50%;
    animation: float-dot 15s infinite linear;
}

.dot-1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.dot-2 {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 10%;
    animation-delay: 2s;
    background: rgba(77, 171, 247, 0.1);
}

.dot-3 {
    width: 10px;
    height: 10px;
    top: 30%;
    right: 15%;
    animation-delay: 4s;
    background: rgba(77, 171, 247, 0.2);
}

.dot-4 {
    width: 7px;
    height: 7px;
    bottom: 25%;
    right: 20%;
    animation-delay: 6s;
    background: rgba(77, 171, 247, 0.12);
}

.dot-5 {
    width: 5px;
    height: 5px;
    bottom: 40%;
    left: 25%;
    animation-delay: 8s;
    background: rgba(77, 171, 247, 0.08);
}

@keyframes float-dot {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(10px, -15px);
    }
    50% {
        transform: translate(5px, 10px);
    }
    75% {
        transform: translate(-10px, 5px);
    }
}

/* Glow Effect */
.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(77, 171, 247, 0.1) 0%, transparent 70%);
    z-index: 1;
    filter: blur(15px);
    opacity: 0.6;
    animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Shine Effect */
.image-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    z-index: 3;
    transform: rotate(30deg);
    animation: shine 8s infinite linear;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(30deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(30deg);
    }
}

/* ===== GLASS MORPHISM ARROWS ===== */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: rgb(0, 0, 0);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.carousel-arrow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.2) 0%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 100%
    );
    border-radius: 50%;
    z-index: 1;
}

/* .carousel-arrow i {
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
} */

.carousel-arrow:hover {
    background:  rgb(28, 27, 27);

}

.carousel-arrow:hover i {
    transform: scale(1.2);
    color: #ffffff;
    text-shadow: 0 0 20px rgba(77, 171, 247, 0.5);
}

.arrow-left {
    left: 35px;
}

.arrow-right {
    right: 35px;
}

.arrow-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    color: #29ABE2;
    border-radius: 50%;
    z-index: 1;
}

.carousel-arrow:hover .arrow-hover {
    width: 200%;
    height: 200%;
    opacity: 0.8;
}

/* ===== INDICATORS WITH PROGRESS ===== */
.carousel-indicators {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 10;
}

.indicator {
    width: 60px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    transition-duration: 0.3s ease;
}

.indicator.active {
    background: rgba(255, 255, 255, 0.1);
}

.indicator-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: white;
    border-radius: 2px;
    transition: width 5s linear;
}

.indicator.active .indicator-progress {
    width: 100%;
    animation: progress 5s linear;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.4);
}


/* ===== CONTENT ANIMATIONS ===== */
.carousel-slide.active .banner-text h1 {
    animation: slide-up 0.3s ease-out 0.2s both;
}

.carousel-slide.active .banner-text p {
    animation: slide-up 0.3s ease-out 0.4s both;
}

.carousel-slide.active .banner-btn {
    animation: slide-up 0.3s ease-out 0.6s both;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .carousel-arrow {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .arrow-left {
        left: 15px;
    }

    .arrow-right {
        right: 15px;
    }

    .carousel-indicators {
        bottom: 25px;
    }

    .indicator {
        width: 40px;
        height: 2px;
    }
    
    .banner-text h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .dot {
        display: none;
    }

    .image-glow {
        filter: blur(10px);
    }
    
    .banner-text h1 {
        font-size: 2rem;
    }
    
    .banner-btn {
        flex-direction: column;
        gap: 10px;
    }
    
    .default-btn.six,
    .default-btn.active {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Tablet view (768px - 1024px) - Make buttons smaller */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Make button size smaller for tablet */
    .default-btn.six,
    .default-btn.active {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
    
    /* Keep arrows in original position for tablet */
    .carousel-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 22px !important;
    }
    
    .arrow-left {
        left: 15px !important;
        right: auto !important;
    }
    
    .arrow-right {
        left: auto !important;
        right: 15px !important;
    }
    
    /* Adjust banner text for tablet */
    .banner-text h1 {
        font-size: 2.2rem;
    }
    
    .banner-text p {
        font-size: 1rem;
    }
}

/* Mobile view (up to 767px) - Reposition arrows below image */
@media (max-width: 767px) {
    /* Keep tablet button size for mobile too */
    .default-btn.six,
    .default-btn.active {
        padding: 12px 25px !important;
        font-size: 14px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    /* Reposition arrows below image for mobile */
    .carousel-wrapper {
        position: relative;
        padding-bottom: 80px; /* Add space for arrows at bottom */
    }
    
    .carousel-arrow {
        position: absolute !important;
        top: auto !important;
        bottom: 20px !important;
        transform: none !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 24px !important;
    }
    
    .arrow-left {
        left: calc(50% - 50px) !important;
        right: auto !important;
    }
    
    .arrow-right {
        left: calc(50% + 5px) !important;
        right: auto !important;
    }
    
    /* Hide original arrows and show mobile ones */
    .carousel-wrapper > .carousel-arrow {
        display: none !important;
    }
    
    /* Show mobile arrows container */
    .mobile-arrows {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 20px !important;
        margin-top: 30px !important;
        position: relative !important;
        z-index: 100 !important;
    }
    
    /* Adjust banner text for mobile */
    .banner-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .banner-text p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .banner-text {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .banner-btn {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    /* Stack buttons vertically on very small screens */
    @media (max-width: 480px) {
        .banner-btn {
            flex-direction: column;
            gap: 12px;
        }
        
        .default-btn.six,
        .default-btn.active {
            width: 100%;
            text-align: center;
        }
        
        .carousel-arrow {
            width: 40px !important;
            height: 40px !important;
            font-size: 22px !important;
        }
        
        .arrow-left {
            left: calc(50% - 45px) !important;
        }
        
        .arrow-right {
            left: calc(50% + 5px) !important;
        }
    }
    
    /* Adjust image for mobile */
    .banner-img-wrapper {
        margin-top: 20px;
    }
    
    /* Adjust indicators position */
    .carousel-indicators {
        bottom: 70px; /* Move indicators above arrows */
    }
}

/* Desktop view (1025px and above) - Original styles */
@media (min-width: 1025px) {
    .carousel-arrow {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 26px !important;
    }
    
    .arrow-left {
        left: 35px !important;
        right: auto !important;
    }
    
    .arrow-right {
        left: auto !important;
        right: 35px !important;
    }
    
    .mobile-arrows {
        display: none !important;
    }
}
/* ===== TABLET VIEW (768px - 1024px) - Make buttons smaller ===== */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Make button size smaller for tablet */
    .default-btn.six,
    .default-btn.active {
        padding: 10px 20px !important;
        font-size: 13px !important;
        min-width: 140px !important;
    }
    
    /* Adjust banner text for tablet */
    .banner-text h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .banner-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .banner-btn {
        gap: 12px;
        margin-top: 1.5rem;
    }
}

/* ===== MOBILE VIEW (up to 767px) - Move arrows below image ===== */
@media (max-width: 767px) {
    /* Adjust button size for mobile */
    .default-btn.six,
    .default-btn.active {
        padding: 10px 20px !important;
        font-size: 13px !important;
        justify-content: center !important;
        align-items: center !important;
        min-width: 150px !important;
    }
    
    /* Main wrapper adjustment for bottom arrows */
    .carousel-wrapper {
        position: relative;
        padding-bottom: 80px; /* Space for arrows at bottom */
    }
    
    /* Hide desktop arrows */
    .carousel-wrapper > .carousel-arrow {
        display: none !important;
    }
    
    /* Show mobile arrows container - ADD THIS TO YOUR HTML */
    /* <div class="mobile-arrows"> will be added below the indicators */
    .mobile-arrows {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 30px !important;
        position: absolute !important;
        bottom: 20px !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 100 !important;
        padding: 0 20px;
    }
    
    /* Mobile arrow buttons */
    .mobile-arrow {
        width: 45px;
        height: 45px;
        background: #29ABE2;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        color: white;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .mobile-arrow:hover {
        background: rgb(255, 255, 255);
        color: #29ABE2;
        transform: scale(1.1);
    }
    
    /* Adjust indicators position to be above arrows */
    .carousel-indicators {
        bottom: 80px !important;
    }
    
    /* Adjust banner content */
    .banner-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .banner-text p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .banner-text {
        text-align: center;
        margin-bottom: 25px;
    }
    
    .banner-btn {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    /* Adjust image for mobile */
    .banner-img-wrapper {
        margin-top: 20px;
    }
    
    /* Stack buttons vertically on very small screens */
    @media (max-width: 480px) {
        .banner-btn {
            flex-direction: column;
            gap: 12px;
            align-items: center;
        }
        
        .default-btn.six,
        .default-btn.active {
            width: 100%;
            max-width: 250px;
            text-align: center;
        }
        
        .mobile-arrow {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }
        
        .mobile-arrows {
            gap: 20px;
        }
    }
}

/* ===== DESKTOP VIEW (1025px and above) - Hide mobile arrows ===== */
@media (min-width: 1025px) {
    .mobile-arrows {
        display: none !important;
    }
    
    /* Ensure desktop arrows are visible */
    .carousel-wrapper > .carousel-arrow {
        display: flex !important;
    }
}
/* ===== TABLET VIEW (768px - 1024px) - Make buttons smaller ===== */
@media (max-width: 1024px) and (min-width: 768px) {
    /* Make button size smaller for tablet */
    .default-btn.six,
    .default-btn.active {
        padding: 8px 18px !important;
        font-size: 12px !important;
        min-width: 120px !important;
    }
    
    /* Adjust banner text for tablet */
    .banner-text h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .banner-text p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.6;
    }
    
    .banner-btn {
        gap: 10px;
        margin-top: 1.2rem;
    }
    
    /* Fix arrow visibility in tablet view */
    .carousel-arrow {
        background: #29ABE2 !important; /* Remove any background issues */
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .arrow-left {
        left: 15px !important;
    }
    
    .arrow-right {
        right: 15px !important;
    }
    
    /* Hide mobile arrows in tablet */
    .mobile-arrows {
        display: none !important;
    }
    
    /* Adjust image container */
    .banner-img-wrapper {
        margin-top: 15px;
    }
    
    /* Adjust glow effect for tablet */
    .image-glow {
        filter: blur(12px);
        opacity: 0.5;
    }
    
    /* Adjust floating dots */
    .dot {
        width: 5px !important;
        height: 5px !important;
    }
    
    .dot-1, .dot-3 {
        display: none; /* Hide some dots on tablet */
    }
}

/* ===== SMALLER TABLET (768px - 900px) ===== */
/* Force small compact buttons on tablet */
@media (max-width: 1024px) and (min-width: 768px) {
    .banner-btn {
        display: inline-flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        margin-top: 15px !important;
    }
    
    .banner-btn .default-btn.six {
        padding: 7px 15px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
        border-radius: 4px !important;
        height: auto !important;
        min-height: 32px !important;
        flex: 0 0 auto !important;
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Adjust icon size */
    .banner-btn .default-btn.six i {
        font-size: 12px !important;
        margin-left: 5px !important;
    }
}
    
    .banner-text h1 {
        font-size: 1.6rem;
    }
    
    .carousel-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }


/* ===== MOBILE VIEW (up to 767px) ===== */
@media (max-width: 767px) {
    /* Show mobile arrows, hide desktop arrows */
    .carousel-arrow {
        display: none !important;
    }
    
    .mobile-arrows {
        display: flex !important;
    }
    
    /* Rest of your mobile styles... */
}
/*end banner css*/


/* Alternative: Using data attributes */
.cta-courses-item[data-bg="it-consultancy"]::before {
    background-image: url(../img/case-studies/it-consultancy.jpg);
}

.cta-courses-item[data-bg="security-analysis"]::before {
    background-image: url(../img/case-studies/security-analysis.jpg);
}

.cta-courses-item[data-bg="social-media-app"]::before {
    background-image: url(../img/case-studies/social-media-app.jpg);
}


/* css for the featured services area  */

/* Add these styles to your existing CSS file */

/* Service Cards Hover Effects - FIXED */
.single-serve {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 25px;
    height: 100%;
    transition: all 4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    z-index: 1;
    margin-bottom: 20px; /* Gap between cards */
}

/* Add gap between all sides of the div container */
.our-serve-area .row {
    margin-left: -10px;
    margin-right: -10px;
}

.our-serve-area .col-lg-4,
.our-serve-area .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px; /* Additional gap at bottom */
}

/* Gradient Border Effect - FIXED */
.single-serve::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #29ABE2, #1a8bc8, #0d6efd);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Icon and Title in Same Line */
.single-serve i {
    font-size: 30px;
    color: #29ABE2;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    display: inline-block;
    position: relative;
    z-index: 3; /* Increased z-index */
    vertical-align: middle;
 float:left;
    /* margin-right: 15px;  */
    /* padding-top: 10px; */
}

/* Title Styling - Align with icon */
.single-serve h3 {
    color: #1a365d;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3; /* Increased z-index */
    line-height: 1.4;
    overflow: hidden; /* Clear float */
    padding-top: 10px; /* Align vertically with icon */
    min-height: 50px; /* Ensure consistent height */
}

/* Clear float for description */
.single-serve p {
    color:#212121;
    font-size: 16px;
    line-height: 1.6;
    transition: all 0.4s ease;
    position: relative;
    z-index: 3; /* Increased z-index */
    clear: both; /* Clear the float from icon */
    margin-top: 10px;
    margin-bottom: 0;
}

/* Background Shine Effect - FIXED to not overlap content */
.single-serve::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
    z-index: 2; /* Lower than content but higher than background */
}

/* Content wrapper to ensure visibility */
.single-serve > * {
    position: relative;
    z-index: 3; /* Ensure content stays above effects */
}

/* Hover Effects - FIXED visibility */
.single-serve:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(41, 171, 226, 0.15);
    border-color: transparent;
}

.single-serve:hover::before {
    opacity: 1;
}

.single-serve:hover::after {
    left: 100%;
}

.single-serve:hover i {
    color:#29ABE2;
    transform: scale(1.1);
    animation: iconFloat 0.6s ease;
}

.single-serve:hover h3 {
    color: white;
    transform: translateX(5px);
}

.single-serve:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Icon Floating Animation - Simplified */
@keyframes iconFloat {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
    100% {
        transform: translateY(0) scale(1.1);
    }
}

/* Background Color Change on Hover - FIXED */
.single-serve {
    background: linear-gradient(135deg, white 0%, #f8fafc 100%);
}

.single-serve:hover {
    background: linear-gradient(135deg, #29ABE2 0%, #1a8bc8 100%);
}

/* Add subtle pulse animation to cards - Fixed to not interfere with hover */
@keyframes cardPulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    50% {
        box-shadow: 0 4px 20px rgba(41, 171, 226, 0.08);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
}

.single-serve {
    animation: cardPulse 4s infinite;
    animation-play-state: running;
}

/* Pause animation on hover */
.single-serve:hover {
    animation-play-state: paused;
}

/* Different animation delays for each card */
.single-serve:nth-child(1) { animation-delay: 0s; }
.single-serve:nth-child(2) { animation-delay: 0.4s; }
.single-serve:nth-child(3) { animation-delay: 0.8s; }
.single-serve:nth-child(4) { animation-delay: 1.2s; }
.single-serve:nth-child(5) { animation-delay: 1.6s; }
.single-serve:nth-child(6) { animation-delay: 2s; }
.single-serve:nth-child(7) { animation-delay: 2.4s; }
.single-serve:nth-child(8) { animation-delay: 2.8s; }
.single-serve:nth-child(9) { animation-delay: 3.2s; }

/* Section Title Enhancement */
.section-title-six {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.section-title-six span {
    color: #29ABE2;
    font-weight: 500;
    font-size: 17px;
    /* letter-spacing: 2px; */
    /* text-transform: uppercase; */
    display: block;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

/* .section-title-six span::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #29ABE2;
    border-radius: 50%;
} */

.section-title-six h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a365d;
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.section-title-six h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #29ABE2, #1a8bc8);
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .single-serve {
        padding: 20px 15px;
    }
    
    .single-serve i {
        font-size: 35px;
        /* margin-right: 12px; */
    }
    
    .single-serve h3 {
        /* font-size:      px; */
        min-height: 30px;
        padding-top: 10px;
    }
    
    .single-serve p {
        font-size: 14px;
    }
    
    .section-title-six h2 {
        font-size: 28px;
    }
    
    .single-serve:hover {
        transform: translateY(-5px);
    }
    
    /* Adjust gaps for mobile */
    .our-serve-area .row {
        margin-left: -8px;
        margin-right: -8px;
    }
    
    .our-serve-area .col-lg-4,
    .our-serve-area .col-md-6 {
        padding-left: 8px;
        padding-right: 8px;
        margin-bottom: 16px;
    }
}

/* Add subtle background pattern to the section */
.our-serve-area {
    position: relative;
    overflow: hidden;
}

.our-serve-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(41, 171, 226, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(41, 171, 226, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure content is above background pattern */
.our-serve-area > .container {
    position: relative;
    z-index: 1;
}
.counterPading{
    margin-top: 80px ;
    padding-top: 50px;
    padding-bottom: 30px;
}
.aboutPad{
    margin-top: 80px;
}
#needHelp{
    font-size: 25px;
    font-weight: 500;
}
/* .background3{
 background-image: url(../../assets/img/vide);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
} */
.testimonial{
    margin-bottom: 80px;
    /* margin-top: 80px; */
}
.back_color{
  background-color: #F4FAFE !important;
}
.howWeWorks{
    margin-top: 100px;
}
#servicePadding{
    padding-bottom: 80px;
}
#casePdding{
    margin-top: 80px;
}
#qouteBox{
    color: #29abe220;
}
.aboutImage{
    border-radius: 25px;
}
.parent-ceo{
    position: relative;
}
.parent-ceo .signature-inline {
    position:absolute;
    top: 87.5%;           
    left: 78%;             
    transform: translate(-50%, -50%); 
    height: 150px;
    width: 250px;
    text-align: center;
    background: white;
    border-radius: 0px 8px;
    box-shadow: 0px 15px 60px -10px rgb(109 117 143 / 33%);
}
#signature {
    width: 30%; 
}
.aboutExperts{
    margin-top: 80px;
}
#contactImage{
    border-radius: 50%;
    max-width: 80%;
    /* padding-let: 30px; */
}
.needHelp{
    font-size: 30px;
    padding: 5px;
}



/* Blog detatils css */
/* Base Styles */
.blog-details-area {
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Article Header */
.article-header-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    margin-bottom: 2rem;
    border-left: 4px solid #29ABE2;
}

.article-category-badge {
    display: inline-block;
    background-color:#29ABE2;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.article-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 1rem;
}

.article-meta-info {
    display: flex;
    gap: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.meta-item i {
    color: #29ABE2;
    font-size: 1.2rem;
}

/* Featured Image */
.article-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.featured-image {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-image-wrapper:hover .featured-image {
    transform: scale(1.03);
}

.image-overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Content Sections */
/* .content-section {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
} */

/* .lead-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
    font-weight: 500;
} */

.section-title {
    font-size: 35px;
    font-weight: 700;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    /* position: relative; */
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    /* background: linear-gradient(135deg, #3b82f6, #1d4ed8); */
    /* border-radius: 2px; */
}

/* Highlight Quote */
.highlight-quote-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #0ea5e9;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    position: relative;
}

.quote-icon {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    color: #0ea5e9;
    font-size: 2rem;
    opacity: 0.2;
}

.featured-quote {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.6;
    color: #0c4a6e;
    margin: 0;
    padding-left: 2rem;
    position: relative;
    z-index: 1;
}

.quote-author {
    margin-top: 1rem;
    text-align: right;
    color: #64748b;
    font-style: italic;
}

/* Benefits Grid */
/* .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.benefit-item:hover {
    background: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.1);
}

.benefit-icon {
    color: #10b981;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
} */

/* Service Cards */
.service-cards-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.service-card-header {
    background-color: #29ABE2;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    /* gap: 1rem; */
}

/* .service-number {
    font-size: 2.5rem;
    font-weight: 800;
    opacity: 0.9;
} */

.service-card-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    color: white !important;
}

.service-card-body {
    padding: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-features li i {
    color: #1da1f2;
    margin-top: 0.25rem;
    font-size: 16px;
}

.service-features li span {
    color: #212121;
    line-height: 1.6;
    font-size: 16px;
}



.related-posts-title {
    margin-bottom: 2rem;
}

.modern-post-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.modern-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.post-image-link {
    display: block;
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-post-card:hover .post-thumbnail {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #29ABE2;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 1.5rem;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.post-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.post-title a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.post-title a:hover {
    color: #29ABE2;
}

.post-excerpt {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #29ABE2;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.read-more-btn:hover {
    gap: 0.75rem;
    color: #29ABE2;
    letter-spacing: 5px;
}

/* Article Footer */
.modern-footer {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.social-share-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-modern {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-modern li {
    margin: 0;
}

.social-modern a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.social-facebook {
    background: #1877f2;
    color: white;
}

.social-twitter {
    background: #1da1f2;
    color: white;
}

.social-linkedin {
    background: #0077b5;
    color: white;
}

.social-pinterest {
    background: #bd081c;
    color: white;
}

.social-copy {
    background: #64748b;
    color: white;
}

.social-modern a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.listPhara{
    font-size: 16px;
    line-height: 35px;
}
.listPhara i{
    color: #1da1f2;
}
#content2{
    padding-top: 15px;
}
#post_space{
    margin-bottom: 30px;
}

/* Blog details css end */

#privacy{
    text-align: center;
    padding: 10px 0px;
    font-size: 45px;
}
#strongPrivacy{
    font-size: 22px;
}
#privacyline{
    line-height: 30px;
}

/* whatsapp icon */
   .whatsapp-btn.hide-in-hero {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
    /* whatsapp icon end */
    .p-100{
        padding-top: 80px;
        padding-bottom: 30px;
    }


    /* Hero Baner New */
     /* .hero-section {
            --deep-navy: #0f2d65;
            --tech-blue: #2A5CAA;
            --safety-orange: #FF6B35;
            --cyber-green: #00FF9D;
            --light-grey: #F5F7FA;
            --gradient-blue: linear-gradient(135deg, #2A5CAA, #0A1A3A);
            --gradient-orange: linear-gradient(135deg, #FF6B35, #FF8B35);
            --gradient-tech: linear-gradient(45deg, #0A1A3A, #2A5CAA, #1E3A8A);
        } */
        
        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--deep-navy);
            color: var(--light-grey);
            overflow-x: hidden;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
              background: linear-gradient(45deg, #0d6efd,  #1a8bc8,#29ABE2);
            --tech-blue: #2A5CAA;
              --safety-orange: #FF6B35;
            --cyber-green: #00FF9D;
            --light-grey: #F5F7FA;
            --gradient-blue: linear-gradient(135deg, #2A5CAA, #0A1A3A);
            --gradient-orange: linear-gradient(135deg, #FF6B35, #FF8B35);
            --gradient-tech: linear-gradient(45deg, #0A1A3A, #2A5CAA, #1E3A8A);
        }
        
        
        /* Enhanced Animated Background */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }
        
        .mesh-grid {
            position: absolute;
            width: 100%;
            height: 100vh;
            background-image: 
                linear-gradient(var(--tech-blue) 1px, transparent 1px),
                linear-gradient(90deg, var(--tech-blue) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.2;
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% { background-position: 0 0; }
            100% { background-position: 60px 60px; }
        }
        
        .data-point {
            position: absolute;
            width: 8px;
            height: 8px;
            background-color: var(--cyber-green);
            border-radius: 50%;
            box-shadow: 0 0 15px var(--cyber-green);
            animation: floatPoint 4s ease-in-out infinite;
        }
        
        .data-point:nth-child(2n) {
            background-color: var(--safety-orange);
            box-shadow: 0 0 15px var(--safety-orange);
            animation-delay: 1s;
        }
        
        .data-point:nth-child(3n) {
            background-color: var(--tech-blue);
            box-shadow: 0 0 15px var(--tech-blue);
            animation-delay: 2s;
        }
        
        @keyframes floatPoint {
            0%, 100% { transform: translateY(0) scale(1); opacity: 0.7; }
            50% { transform: translateY(-20px) scale(1.2); opacity: 1; }
        }
        
        .circuit-line {
            position: absolute;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--tech-blue), transparent);
            animation: circuitFlow 3s linear infinite;
        }
        
        @keyframes circuitFlow {
            0% { opacity: 0; transform: translateX(-100%); }
            50% { opacity: 1; }
            100% { opacity: 0; transform: translateX(100%); }
        }
        
        /* Logo */
        .logo-container {
            margin-bottom: 2rem;
            animation: fadeInDown 1s ease-out;
        }
        
        .logo-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-blue);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: #29ABE2;
            box-shadow: 0 8px 25px rgba(11, 180, 242, 0.3);
            animation: pulseGlow 2s infinite;
        }
        
        @keyframes pulseGlow {
            0%, 100% { box-shadow: 0 8px 25px rgba(10, 119, 196, 0.3); }
            50% { box-shadow: 0 8px 30px rgba(8, 106, 205, 0.5); }
        }
        
        .logo-text {
            font-size: 2rem;
            font-weight: 800;
            background: linear-gradient(to right, #ffffff, #a8c6ff);
            -webkit-background-clip: text;
            color: white;
            
        }
        
        /* Typography */
        .tagline {
            font-size: 0.9rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #a8c6ff;
            font-weight: 600;
            margin-bottom: 1rem;
            animation: fadeIn 1s ease-out 0.3s both;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            background: linear-gradient(to right, #ffffff, #a8c6ff);
            -webkit-background-clip: text;
            color: white;
            animation: fadeInUp 1s ease-out 0.5s both;
        }
        
        .highlight {
            color: #ffffff;
-webkit-text-fill-color: #ffffff;
position: relative;
        }
        
        .hero-subtitle {
            font-size: 20px;
            color: #c2d1f0;
            margin-bottom: 2.5rem;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.7s both;
        }
        
        /* Buttons */
        .btn-custom-primary {
            background: var(--gradient-orange);
            color: white;
            border: none;
            padding: 1rem 2.2rem;
            font-weight: 600;
            border-radius: 12px;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
            animation: fadeInUp 1s ease-out 0.9s both;
            position: relative;
            overflow: hidden;
        }
        
        .btn-custom-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
        }
        
        .btn-custom-primary::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.5s ease;
        }
        
        .btn-custom-primary:hover::after {
            transform: rotate(45deg) translate(50%, 50%);
        }
        
        .btn-custom-secondary {
            background: transparent;
            color: #a8c6ff;
            border: 2px solid var(--tech-blue);
            padding: 0.9rem 2rem;
            font-weight: 600;
            border-radius: 10px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease-out 1s both;
        }
        
        .btn-custom-secondary:hover {
            background: rgba(42, 92, 170, 0.15);
            border-color: var(--safety-orange);
            color: var(--safety-orange);
            transform: translateY(-3px);
        }
        
        /* Trust Indicators */
        .trust-indicators {
            margin-top: 2.5rem;
            animation: fadeInUp 1s ease-out 1.1s both;
        }
        
        .trust-item {
            display: flex;
            align-items: center;
            margin-right: 2rem;
            margin-bottom: 1rem;
            transition: transform 0.3s ease;
        }
        
        .trust-item:hover {
            transform: translateX(5px);
        }
        
        .trust-icon {
            color: var(--cyber-green);
            font-size: 1.2rem;
            margin-right: 0.5rem;
            animation: pulse 2s infinite;
        }
        
        /* Right Side - Tech Professional */
        .tech-professional-container {
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
            animation: fadeInRight 1.2s ease-out 0.5s both;
        }
        
        @media (max-width: 768px) {
            .tech-professional-container {
                height: 500px;
                margin-top: 2rem;
            }
        }
        
        .tech-professional {
            position: relative;
            width: 100%;
            max-width: 550px;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: flex-end;
        }
        
        .floating-graphic {
            position: relative;
            width: 90%;
            height: 80%;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .tech-girl {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 3;
            filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
            animation: float 6s ease-in-out infinite;
        }
        
        .laptop-glow {
            position: absolute;
            width: 180px;
            height: 120px;
            background: rgba(0, 255, 157, 0.2);
            border-radius: 15px;
            filter: blur(15px);
            z-index: 2;
            top: 57%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: glowPulse 3s infinite;
        }
        
        @keyframes glowPulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.6; }
        }
        
        .digital-orbits {
            position: absolute;
            width: 450px;
            height: 450px;
            z-index: 1;
        }
        
        .orbit {
            position: absolute;
            border: 1px solid rgba(42, 92, 170, 0.4);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
        }
        
        .orbit:nth-child(1) { width: 100%; height: 100%; animation-duration: 25s; }
        .orbit:nth-child(2) { width: 80%; height: 80%; animation-duration: 20s; animation-direction: reverse; }
        .orbit:nth-child(3) { width: 60%; height: 60%; animation-duration: 15s; }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .floating-icon {
            position: absolute;
            width: 40px;
            height: 40px;
            background: var(--gradient-blue);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--cyber-green);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 2;
            animation: float 4s ease-in-out infinite;
        }
        
        .icon-1 { top: 15%; left: 20%; animation-delay: 0s; }
        .icon-2 { top: 25%; right: 15%; animation-delay: 1s; }
        .icon-3 { bottom: 30%; left: 10%; animation-delay: 2s; }
        .icon-4 { bottom: 20%; right: 25%; animation-delay: 3s; }
        
        /* Start Now Button on Image Side */
        .start-now-btn {
            position: absolute;
            bottom: 10%;
            right: 20%;
            background: var(--gradient-tech);
            color: white;
            border: none;
            padding: 1.2rem 2.5rem;
            font-weight: 700;
            font-size: 1.1rem;
            border-radius: 50px;
            box-shadow: 0 15px 35px rgba(10, 26, 58, 0.5);
            z-index: 10;
            cursor: pointer;
            transition: all 0.4s ease;
            animation: bounceIn 1s ease-out 1.5s both;
            overflow: hidden;
        }
        
        .start-now-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 45px rgba(10, 26, 58, 0.7);
        }
        
        .start-now-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s ease;
        }
        
        .start-now-btn:hover::before {
            left: 100%;
        }
        
        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes fadeInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        @keyframes bounceIn {
            0% { opacity: 0; transform: scale(0.3); }
            50% { opacity: 1; transform: scale(1.05); }
            70% { transform: scale(0.9); }
            100% { opacity: 1; transform: scale(1); }
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }
        
        /* Content Positioning */
        .content-wrapper {
            position: relative;
            z-index: 2;
            margin-top: 5rem;
        }
        .fa-shield-alt:before, .fa-shield-halved:before{
            color:  #29ABE2;
        }

        /* Hero banner new end  */


        .container-change{
            padding-left: 20px !important;;
        }
        #backgroundcontact{
            background-color: #1da1f2;
        }