 /* Hero Section */
 .hero-section {
    width: 120vw;
    height: 70vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    padding: 45px 245px 0 118px;
    position: relative;
    background: linear-gradient(90deg, #0798ff0d 0%, #ffffff 100%);
    overflow: hidden;
}

.bg-gradent {
    position: absolute;
    left: -150px;
    top: 0;
    width: 520px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(7, 153, 255, 0.45) 0%, rgba(7, 153, 255, 0.25) 40%, rgba(7, 153, 255, 0.1) 65%, rgba(7, 153, 255, 0) 75%);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.bg-gradent-right {
    position: absolute;
    right: 30%;
    top: -50px;
    width: 520px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(7, 153, 255, 0.45) 0%, rgba(7, 153, 255, 0.25) 40%, rgba(7, 153, 255, 0.1) 65%, rgba(7, 153, 255, 0) 75%);
    filter: blur(220px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hero-section-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 450px;
    width: 100%;
    margin-left: -4rem;
    background-color: rgba(255, 255, 255, 0.158);
    border-radius: 44px;
    backdrop-filter: blur(50px);
    border: 1px solid #ffffffe9;
    position: relative;
    z-index: 9;
    padding: 0 3rem;
}

/* Slider Specific Styles */
.hero-slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.hero-slide-item.active-hero-slide {
    opacity: 1;
    pointer-events: auto;
}

.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.8s ease-in-out 0.2s;
    max-width: 500px;
}

.hero-slide-item.active-hero-slide .hero-content-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.hero-logo {
    height: 53px;
    width: 187px;
    object-fit: contain;
}

.hero-title {
    text-transform: uppercase;
    font-size: 30px;
    font-weight: 400;
    line-height: 44px;
    text-align: left;
    color: #000;
    font-family: "CircularStd", sans-serif !important;
}

.hero-title span {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 400;
    line-height: 44px;
    text-align: left;
    color: #000;
    font-family: "CircularStd", sans-serif !important;
}

.hero-subtitle {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: auto;
    text-align: left;
    color: #00000068;
    max-width: 500px;
}

.hero-slide-image {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.8s ease-in-out 0.3s;
}

.hero-slide-item.active-hero-slide .hero-slide-image {
    transform: translateX(0);
    opacity: 1;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(7, 153, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider-dot:hover {
    background-color: rgba(7, 153, 255, 0.6);
}

.hero-slider-dot.active-dot {
    background-color: #0799ff;
    border-color: #ffffff;
    transform: scale(1.2);
}

/* Navigation Arrows */
.hero-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.hero-slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.hero-slider-nav.prev-hero-slide {
    left: -50px;
}

.hero-slider-nav.next-hero-slide {
    right: -50px;
}

.hero-slider-nav::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #0799ff;
    border-right: 2px solid #0799ff;
    transition: border-color 0.3s ease;
}

.hero-slider-nav.prev-hero-slide::after {
    transform: rotate(-135deg);
    margin-left: 3px;
}

.hero-slider-nav.next-hero-slide::after {
    transform: rotate(45deg);
    margin-right: 3px;
}

@media (max-width: 1200px) {
    .hero-section {
        padding: 80px 100px 0 80px;
    }
    
    .hero-section-wrapper {
        margin-left: -2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        width: 100vw;
        padding: 20px 15px;
        height: 60vh;
        background: linear-gradient(180deg, #0798ff0d 0%, #ffffff 100%);
        display: flex;
        align-items: center;
    }

    .bg-gradent {
        left: -200px;
        top: -100px;
        width: 400px;
        height: 400px;
        filter: blur(100px);
    }

    .bg-gradent-right {
        right: -200px;
        top: 50%;
        width: 400px;
        height: 400px;
        filter: blur(180px);
    }

    .main-container {
        padding: 0 15px;
        width: 100%;
    }

    .hero-section-wrapper {
        margin-left: 0;
        padding: 1.5rem 1rem;
        height: 100%;
        max-height: 85vh;
        border-radius: 24px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-slider-container {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-slide-item {
        position: absolute;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1rem;
        padding: 0;
        height: 100%;
    }

    .hero-content-wrapper {
        align-items: center;
        text-align: center;
        gap: 12px;
        width: 100%;
        flex-shrink: 0;
    }

    .hero-logo {
        height: 35px;
        width: auto;
        max-width: 140px;
    }

    .hero-title {
        font-size: 18px;
        line-height: 26px;
        text-align: center;
    }

    .hero-title br {
        display: none;
    }

    .hero-title span {
        font-size: 20px;
        line-height: 28px;
    }

    .hero-subtitle {
        font-size: 13px;
        text-align: center;
    }

    .hero-slide-image {
        width: 100%;
        max-width: 280px;
        height: auto;
        margin: 0 auto;
        flex-shrink: 1;
    }

    /* Mobile Navigation Arrows */
    .hero-slider-nav {
        width: 35px;
        height: 35px;
        background-color: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(7, 153, 255, 0.3);
    }

    .hero-slider-nav.prev-hero-slide {
        left: 10px;
    }

    .hero-slider-nav.next-hero-slide {
        right: 10px;
    }

    .hero-slider-nav::after {
        width: 8px;
        height: 8px;
    }

    /* Mobile Slider Controls */
    .hero-slider-controls {
        bottom: 15px;
        gap: 8px;
    }

    .hero-slider-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    html, body{
        width: 100vw;
        overflow-x: hidden;
    }
    .hero-section {
        padding: 15px 10px;
    }

    .hero-section-wrapper {
        padding: 1.2rem 0.8rem;
        max-height: 90vh;
        border-radius: 20px;
    }

    .hero-logo {
        height: 30px;
        max-width: 120px;
    }

    .hero-title {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-title span {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-subtitle {
        font-size: 12px;
    }

    .hero-slide-image {
        max-width: 240px;
    }

    .hero-slider-nav {
        width: 30px;
        height: 30px;
    }

    .hero-slider-nav.prev-hero-slide {
        left: 8px;
    }

    .hero-slider-nav.next-hero-slide {
        right: 8px;
    }

    .hero-slider-controls {
        bottom: -10rem;
        gap: 6px;
    }
    .hero-section-wrapper{
        background-color: transparent;
        border: none;
    }
}

/* About Us Section */

.about-us-section {
    padding: 50px 0;
    width: 100%;
    background: #fff;
    position: relative;
}
.about-us-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 65px;
}
.about-us-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
.about-us-title-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 730px;
}
.about-us-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.about-us-image-wrapper {
    width: 636px;
    height: 470px;
    border-radius: 20px;
}
.about-us-image {
    height: 100%;
    width: 636px;
    border-radius: 20px;
}
.about-us-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 1.5rem;
    color: #000;
}
.about-us-title {
    font-size: 23px;
    line-height: 38px;
    font-weight: 500;
    text-align: left;
}
.about-us-para-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}
.about-us-para {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    text-align: left;
}
.about-us-btn {
    position: relative;
    width: 200px;
    border: 1px solid #000;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
    transition: color 0.45s ease;
    z-index: 1;
}

.about-us-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.about-us-btn::before {
    content: "";
    position: absolute;
    bottom: -130%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: #000;
    border-radius: 50% 50% 0 0;
    transition: bottom 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.right-arrow path {
    stroke: #001623;
    stroke-width: 1.5;
    stroke-linecap: square;
    transition: stroke 0.45s ease;
}

.about-us-btn:hover::before {
    bottom: 0;
}

.about-us-btn:hover::after {
    opacity: 1;
}

.about-us-btn:hover {
    color: #fff;
}

.about-us-btn:hover .right-arrow path {
    stroke: #fff;
}


/* Testing Section */

.testing-section {
    width: 100%;
    padding: 66px 0 140px;
    background: linear-gradient(180deg, #001623 0%, #000000 100%);
}
.testing-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 52px;
}
.testing-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 60px;
}
.second-section-title {
    font-size: 30px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    font-family: "CircularStd", sans-serif !important;
}
.section-para {
    font-size: 1rem;
    font-weight: 400;
    line-height: auto;
    color: #fff;
    text-align: center;
    letter-spacing: 10%;
}
.testing-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 52px;
}
.testing-card {
    width: 570px;
    /* height: 420px; */
    background: linear-gradient(180deg, #ffffff13 0%, #ffffff13 100%);
    border-radius: 12px;
    border: 1px solid #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: left;
    color: #fff;
    padding: 45px 120px 58px 53px;
    gap: 25px;
}
.line {
    width: 120px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 8px;
}
.testing-icon {
    height: 54px;
    width: 54px;
}
.testing-title {
    font-size: 35px;
    line-height: auto;
    letter-spacing: 2%;
    font-weight: 600;
    text-align: left;
}
.testing-para {
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 2%;
    font-weight: 300;
    text-align: left;
}

/* Toolset */

.toolset-section {
    width: 100%;
    background: #fff;
    padding: 120px 0;
    background: linear-gradient(90deg, #b1acac3b 0%, #ffffff3b 40%, #FFFFFF 100%);
    position: relative;
}
.toolset-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 84px;
}
.toolset-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 40px;
}
.toolset-para {
    font-size: 15px;
    line-height: auto;
    letter-spacing: 10%;
    font-weight: 400;
    color: #1A212A;
    text-align: center;
}
.toolset-logo-wrapper-parent{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
.toolset-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 94px;
}
.toolset-image {
    height: 51px;
}

/* We Support Section */

.we-support-section {
    width: 100%;
    padding: 80px 0;
    background: #050D15;

}
.we-support-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.we-support-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.we-support-card-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
}
.we-support-card {
    height: 375px;
    width: 317px;
    border: 1px solid #fff;
    display: flex;
    flex-direction: column;
    justify-content: left;
    padding: 23px 43px 36px 30px;
    gap: 12px;
    color: #fff;
    border-radius: 12px;
}
.we-support-card-icons-wrapper {
    height: 56px;
    width: 56px;
    background-color: #1A212A;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.we-support-card-icons {
    height: 28px;
    width: 28px;
}
.we-support-card-title {
    font-size: 24px;
    line-height: auto;
    letter-spacing: 2%;
    font-weight: 500;
    margin-bottom: 1rem;
}
.we-support-card-para {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 2%;
    font-weight: 200;
    margin-top: 1rem;
}


/* Client Section  */

.clients-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
}
.clients-section-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 93px;
}
.clients-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0 180px;
}
.clients-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}
.clients-logo {
    height: auto;
    width: auto;
    height: 36px;
}

  /* Simple Testimonial Slider */
  .simple-testimonial-container {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    background-color: #000;
    padding: 120px 60px;
}

.simple-testimonial-label {
    text-align: center;
    color: #6B7280;
    font-size: 1.4rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 800;
}

.simple-testimonial-heading {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    font-weight: 700;
    padding: 1rem 2rem 1.5rem;
    line-height: 1.4;
    max-width: 1200px;
    margin: 0 auto;
}

/* Slider Wrapper */
.simple-slider-wrapper {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.simple-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Individual Slide */
.simple-slide {
    position: absolute;
    left: 50%;
    top: 50%;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border-radius: 20px;
    overflow: hidden;
}

.simple-slide-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.simple-slide-text {
    color: #D1D5DB;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.simple-slide-author {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
}

/* Navigation Buttons */
.simple-nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: 1px solid rgba(156, 156, 156, 0.3);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 100;
}

.simple-nav-button:hover {
    border-color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-50%) scale(1.05);
}

.simple-nav-button.simple-nav-prev {
    left: -40px;
}

.simple-nav-button.simple-nav-next {
    right: -40px;
}

.simple-nav-button svg {
    width: 24px;
    height: 24px;
    stroke: #9C9C9C;
}

.simple-nav-button:hover svg {
    stroke: #FFFFFF;
}

/* Dots Navigation */
.simple-dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.simple-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.simple-dot.simple-dot-active {
    background: #FFFFFF;
    width: 30px;
    border-radius: 5px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .simple-slider-wrapper {
        height: 450px;
    }

    .simple-nav-button.simple-nav-prev {
        left: 10px;
    }

    .simple-nav-button.simple-nav-next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .simple-testimonial-heading {
        font-size: 24px;
        padding: 1rem 1rem 0rem;
    }

    .simple-slider-wrapper {
        height: 400px;
    }

    .simple-slide-card {
        padding: 35px 30px;
    }

    .simple-slide-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .simple-slide-author {
        font-size: 16px;
    }

    .simple-nav-button {
        width: 45px;
        height: 45px;
    }

    .simple-nav-button.simple-nav-prev {
        left: -45px;
    }

    .simple-nav-button.simple-nav-next {
        right: -45px;
    }
}

@media (max-width: 480px) {
    .simple-testimonial-heading {
        font-size: 20px;
    }

    .simple-slider-wrapper {
        height: 380px;
    }

    .simple-slide-card {
        padding: 30px 25px;
    }

    .simple-slide-text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .simple-slide-author {
        font-size: 15px;
    }
}





















/* Blog Section  */

.blog-section {
    width: 100%;
    padding: 120px 0;
    position: relative;
}
.blog-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 47px;
}
.blog-title-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.blog-content-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 72px;
}
.blog-left-wrapper {
    display: flex;
}
.blog-card-big {
    display: flex;
    flex-direction: column;
    justify-content: left;
    max-width: 500px;
}
.blog-image-big {
    width: 500px;
    height: 270px;
    border-radius: 20px;
}
.blog-card-content {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 11px;
    padding: 1rem;
}
.blog-card-title {
    font-size: 22px;
    line-height: auto;
    letter-spacing: 2%;
    font-weight: 400;
    color: #000;
}
.blog-card-para {
    font-size: 12px;
    line-height: 20px;
    font-weight: 200;
    color: #2A2A2A;
    max-width: 420px;
}
.blog-btn {
    font-size: 20px;
    line-height: auto;
    font-weight: 400;
    color: #000;
    margin-top: 1rem;
}
.blog-right-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: left;
}
.blog-card-small {
    display: flex;
    justify-content: left;
    gap: 26px;
    padding: 1rem;
}
.blog-image-small {
    height: 166px;
    width: 166px;
    border-radius: 10px;
}
.blog-card-content-small {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    max-width: 636px;
}
.blog-card-title-sm {
    font-size: 22px;
    line-height: auto;
    letter-spacing: 2%;
    font-weight: 400;
    color: #000;
}
.blog-card-para-sm {
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    font-weight: 200;
    color: #2A2A2A;
    margin-bottom: 1rem;
    max-width: 320px;
}
.blog-btn-sm {
    font-size: 13px;
    line-height: auto;
    letter-spacing: 0;
    font-weight: 400;
    color: #000;
}
.blog-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
/* .blogs-btn {
    max-width: 212px;
    border: 1px solid #000;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 36px;
    gap: 10px;
    color: #000;
    text-decoration: none;
} */

.blogs-btn {
    position: relative;
    width: 200px;
    border: 1px solid #000;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 16px 6px;
    gap: 10px;
    color: #000;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    overflow: hidden;
    transition: color 0.45s ease;
    z-index: 1;
}

.blogs-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -2;
}

.blogs-btn::before {
    content: "";
    position: absolute;
    bottom: -130%;
    left: -15%;
    width: 130%;
    height: 130%;
    background: #000;
    border-radius: 50% 50% 0 0;
    transition: bottom 0.65s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.right-arrow path {
    stroke: #001623;
    stroke-width: 1.5;
    stroke-linecap: square;
    transition: stroke 0.45s ease;
}

.blogs-btn:hover::before {
    bottom: 0;
}

.blogs-btn:hover::after {
    opacity: 1;
}

.blogs-btn:hover {
    color: #fff;
}

.blogs-btn:hover .right-arrow path {
    stroke: #fff;
}




/* Why Section  */

/* Section */
.why-section {
    width: 100%;
    background: linear-gradient(90deg, #2B8ECB 0%, #30CC8E 100%);
    padding: 120px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Container */
.main-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
}

/* Glass Box */
.why-section-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
    padding: 80px;
    overflow: hidden;
}

/* Grid */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 120px;
}

/* Cards */
.why-card {
    max-width: 420px;
}

.why-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}
.why-card-icon{
    height: 38px;
    width: 38px;
}

.why-card h3 {
    font-size: 30px;
    letter-spacing: 2%;
    text-align: center;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
}

.why-card p {
    font-size: 13px;
    line-height: 18px;
    letter-spacing: 2%;
    font-weight: 400;
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
}

/* Vertical WHY text */
.why-vertical-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%) rotate(0deg);
    font-size: 120px;
    font-weight: 700;
    letter-spacing: 6px;
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
}
.line-wrapper {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}
.line {
    width: 120px;
    height: 1px;
    background-color: #fff;
    margin-bottom: 8px;
    text-align: center;
}
/* ========================= */
/* Responsive */
/* ========================= */

@media(max-width: 1024px) {
    .why-section-wrapper {
        padding: 60px 40px;
    }

    .why-grid {
        gap: 60px;
    }

    .why-vertical-text {
        font-size: 90px;
    }
}

@media(max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-card {
        max-width: 100%;
        text-align: center;
    }

    .why-vertical-text {
        display: none;
    }
}

@media(max-width: 480px) {
    .why-section {
        padding: 80px 16px;
    }

    .why-section-wrapper {
        padding: 40px 24px;
    }

    .why-card h3 {
        font-size: 20px;
    }

    .why-card p {
        font-size: 13px;
    }
}
/* solutions section  */

.solutions-section {
    background: linear-gradient(to right, #2874A6, #48C9B0);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.solutions-section::before {
    content: 'SOLUTIONS';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    font-size: 10rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.09);
    letter-spacing: 10px;
    z-index: 0;
    white-space: nowrap;
}

.solutions-title {
    color: white;
    font-size: 30px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-family: "CircularStd", sans-serif !important;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.solution-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    padding: 40px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    min-height: 170px;
    background-color: transparent;
    width: 317px;
    height: 257px;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.solution-card:hover::before {
    transform: translateY(0);
}

.solution-icon {
    width: 64px;
    height: 64px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-icon {
    color: #2874A6;
    transform: scale(1.1);
}

.solution-name {
    color: white;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    font-family: "Manrope", sans-serif;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

.solution-card:hover .solution-name {
    opacity: 0;
    transform: translateY(-10px);
}

.solution-hover-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.solution-subtitle {
    color: #000000;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
    font-family: "Manrope", sans-serif;
    line-height: 1.3;
}

.solution-description {
    color: #333;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
    font-family: "Manrope", sans-serif;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .solutions-section::before {
        font-size: 8rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .solutions-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .solution-card {
        padding: 35px 20px;
        min-height: 160px;
        width: 100%;
        height: 240px;
    }

    .solution-subtitle {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .solution-description {
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .solutions-section {
        padding: 60px 15px;
    }

    .solutions-section::before {
        font-size: 5rem;
        letter-spacing: 5px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .solutions-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
        margin-bottom: 30px;
    }

    .solution-card {
        padding: 30px 20px;
        min-height: 150px;
        height: 220px;
    }

    .solution-icon {
        width: 55px;
        height: 55px;
    }

    .solution-name {
        font-size: 1.05rem;
    }

    .solution-subtitle {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .solution-description {
        font-size: 12px;
    }

    .solution-hover-content {
        padding: 25px 20px;
    }
}

.solutions-icons-images-wrapper{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}



/* ========================= */
/* TABLET RESPONSIVE - 768px to 1024px */
/* ========================= */

@media (max-width: 1024px) {
    /* About Us Section */
    .about-us-section {
        padding: 80px 0;
    }
    
    .about-us-section-wrapper {
        gap: 50px;
    }
    
    .about-us-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-us-image-wrapper {
        width: 100%;
        height: auto;
    }
    
    .about-us-image {
        width: 100%;
        height: auto;
    }
    
    .about-us-content-wrap {
        padding: 1rem;
    }
    
    .about-us-title {
        font-size: 20px;
        line-height: 32px;
    }
    
    .about-us-para {
        font-size: 16px;
        line-height: 26px;
    }

    /* Testing Section */
    .testing-section {
        padding: 60px 0 100px;
    }
    
    .testing-title-wrapper {
        padding: 0 40px;
    }
    
    .second-section-title {
        font-size: 26px;
    }
    
    .section-para {
        font-size: 0.95rem;
    }
    
    .testing-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .testing-card {
        width: 100%;
        max-width: 600px;
        padding: 40px 60px 50px 45px;
    }
    
    .testing-title {
        font-size: 30px;
    }
    
    .testing-para {
        font-size: 18px;
        line-height: 26px;
    }

    /* Solutions Section */
    .solutions-section {
        padding: 60px 20px;
    }
    
    .solutions-section::before {
        font-size: 8rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
    }
    
    .solution-card {
        width: 100%;
        height: auto;
        min-height: 200px;
        padding: 35px 20px;
    }
    
    .solutions-title {
        font-size: 26px;
        margin-bottom: 50px;
    }

    /* Toolset Section */
    .toolset-section {
        padding: 80px 0;
    }
    
    .toolset-section-wrapper {
        gap: 60px;
    }
    
    .toolset-title-wrapper {
        padding: 0 30px;
    }
    
    .toolset-para {
        font-size: 14px;
    }
    
    .toolset-logo-wrapper {
        gap: 60px;
        flex-wrap: wrap;
    }
    
    .toolset-image {
        height: 45px;
    }

    /* We Support Section */
    .we-support-section {
        padding: 60px 0;
    }
    
    .we-support-card-wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .we-support-card {
        width: calc(50% - 10px);
        height: auto;
        min-height: 350px;
    }

    /* Clients Section */
    .clients-section {
        padding: 80px 0;
    }
    
    .clients-section-wrapper {
        gap: 70px;
    }
    
    .clients-title-wrapper {
        padding: 0 100px;
    }
    
    .clients-content-wrapper {
        gap: 50px;
    }

    /* Blog Section */
    .blog-section {
        padding: 80px 0;
    }
    
    .blog-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .blog-card-big {
        max-width: 600px;
    }
    
    .blog-image-big {
        width: 100%;
        height: auto;
    }

    /* Testimonial Section */
    .testimonial-section-title {
        padding: 1rem 8rem 3rem;
    }
}

/* ========================= */
/* MOBILE RESPONSIVE - Below 768px */
/* ========================= */

@media (max-width: 768px) {
    /* About Us Section */
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-section-wrapper {
        gap: 40px;
    }
    
    .about-us-title-wrap {
        gap: 12px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 32px;
    }
    
    .about-us-content-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-us-image-wrapper {
        width: 100%;
        height: auto;
    }
    
    .about-us-image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    
    .about-us-content-wrap {
        gap: 20px;
        padding: 1rem 0.5rem;
    }
    
    .about-us-title {
        font-size: 18px;
        line-height: 28px;
        text-align: center;
    }
    
    .about-us-para-wrapper {
        gap: 1rem;
        text-align: center;
    }
    
    .about-us-para {
        font-size: 15px;
        line-height: 24px;
        text-align: center;
    }
    
    .about-us-btn {
        margin: 0 auto;
    }

    /* Testing Section */
    .testing-section {
        padding: 50px 0 80px;
    }
    
    .testing-section-wrapper {
        gap: 40px;
    }
    
    .testing-title-wrapper {
        padding: 0 20px;
        gap: 0.8rem;
    }
    
    .second-section-title {
        font-size: 22px;
        line-height: 32px;
    }
    
    .section-para {
        font-size: 14px;
        line-height: 22px;
    }
    
    .testing-content-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 15px;
    }
    
    .testing-card {
        width: 100%;
        padding: 35px 30px 45px 30px;
        gap: 20px;
    }
    
    .testing-icon {
        height: 48px;
        width: 48px;
    }
    
    .testing-title {
        font-size: 26px;
    }
    
    .testing-para {
        font-size: 16px;
        line-height: 24px;
    }
    
    .line {
        width: 100px;
    }

    /* Solutions Section */
    .solutions-section {
        padding: 50px 15px;
        min-height: auto;
    }
    
    .solutions-section::before {
        font-size: 5rem;
        letter-spacing: 5px;
        transform: translate(-50%, -50%);
    }
    
    .solutions-title {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 40px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .solution-card {
        width: 100%;
        height: auto;
        min-height: 180px;
        padding: 30px 20px;
    }
    
    .solution-icon {
        width: 56px;
        height: 56px;
    }
    
    .solution-name {
        font-size: 20px;
    }

    /* Toolset Section */
    .toolset-section {
        padding: 60px 0;
    }
    
    .toolset-section-wrapper {
        gap: 50px;
    }
    
    .toolset-title-wrapper {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 22px;
        line-height: 32px;
    }
    
    .toolset-para {
        font-size: 13px;
        line-height: 20px;
    }
    
    .toolset-logo-wrapper-parent {
        gap: 2rem;
    }
    
    .toolset-logo-wrapper {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .toolset-image {
        height: 40px;
    }

    /* We Support Section */
    .we-support-section {
        padding: 50px 15px;
    }
    
    .we-support-section-wrapper {
        gap: 40px;
    }
    
    .we-support-card-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .we-support-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        padding: 30px 25px;
    }
    
    .we-support-card-title {
        font-size: 22px;
    }
    
    .we-support-card-para {
        font-size: 15px;
        line-height: 24px;
    }

    /* Why Section */
    .why-section {
        padding: 60px 16px;
    }
    
    .why-section-wrapper {
        padding: 50px 30px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-card {
        max-width: 100%;
        text-align: center;
    }
    
    .why-card h3 {
        font-size: 24px;
    }
    
    .why-card p {
        font-size: 14px;
        line-height: 20px;
    }
    
    .why-vertical-text {
        display: none;
    }

    /* Clients Section */
    .clients-section {
        padding: 60px 0;
    }
    
    .clients-section-wrapper {
        gap: 50px;
    }
    
    .clients-title-wrapper {
        padding: 0 30px;
    }
    
    .clients-content-wrapper {
        gap: 40px;
        padding: 0 20px;
    }
    
    .clients-logo {
        height: 32px;
    }

    /* Testimonial Section */
    .testimonial {
        padding: 30px 15px;
        min-height: auto;
    }
    
    .testimonial-section-title {
        padding: 1rem 2rem 2.5rem;
        font-size: 20px;
        line-height: 30px;
    }
    
    .section-label {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .slider-wrapper {
        padding: 0 20px;
    }
    
    .testimonial-card {
        min-width: calc(100vw - 40px);
        max-width: calc(100vw - 40px);
    }
    
    .card-content {
        padding: 30px 25px;
    }
    
    .testimonial-text {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .testimonial-author {
        font-size: 16px;
    }
    
    .slider-controls {
        margin-top: 35px;
        gap: 15px;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-btn svg {
        width: 26px;
        height: 26px;
    }
    
    .slider-container::before,
    .slider-container::after {
        width: 80px;
    }

    /* Blog Section */
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-wrapper {
        gap: 35px;
    }
    
    .blog-title-wrapper {
        padding: 0 20px;
    }
    
    .blog-content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 0 20px;
    }
    
    .blog-left-wrapper {
        width: 100%;
    }
    
    .blog-card-big {
        max-width: 100%;
    }
    
    .blog-image-big {
        width: 100%;
        height: auto;
    }
    
    .blog-card-content {
        padding: 1rem 0.5rem;
    }
    
    .blog-card-title {
        font-size: 20px;
    }
    
    .blog-card-para {
        font-size: 13px;
        line-height: 22px;
        max-width: 100%;
    }
    
    .blog-right-wrapper {
        width: 100%;
    }
    
    .blog-card-small {
        flex-direction: column;
        align-items: center;
        padding: 1rem 0.5rem;
        gap: 20px;
    }
    
    .blog-image-small {
        width: 100%;
        height: auto;
        max-width: 250px;
    }
    
    .blog-card-content-small {
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    
    .blog-card-title-sm {
        font-size: 20px;
    }
    
    .blog-card-para-sm {
        font-size: 13px;
        line-height: 22px;
        max-width: 100%;
    }
    
    .blog-btn-wrapper {
        padding: 0 20px;
    }
}

/* ========================= */
/* SMALL MOBILE - Below 480px */
/* ========================= */

@media (max-width: 480px) {
    /* About Us Section */
    .about-us-section {
        padding: 50px 0;
    }
    
    .about-us-section-wrapper {
        gap: 30px;
    }
    
    .section-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .about-us-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .about-us-para {
        font-size: 14px;
        line-height: 22px;
    }
    
    .about-us-btn {
        width: 180px;
        padding: 14px 20px;
        font-size: 14px;
    }

    /* Testing Section */
    .testing-section {
        padding: 40px 0 60px;
    }
    
    .second-section-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .section-para {
        font-size: 13px;
        line-height: 20px;
    }
    
    .testing-card {
        padding: 30px 20px 40px 20px;
        gap: 18px;
    }
    
    .testing-icon {
        height: 44px;
        width: 44px;
    }
    
    .testing-title {
        font-size: 24px;
    }
    
    .testing-para {
        font-size: 15px;
        line-height: 22px;
    }
    
    .line {
        width: 80px;
    }

    /* Solutions Section */
    .solutions-section::before {
        font-size: 3.5rem;
    }
    
    .solutions-title {
        font-size: 20px;
        margin-bottom: 35px;
    }
    
    .solution-card {
        min-height: 160px;
        padding: 25px 15px;
    }
    
    .solution-icon {
        width: 52px;
        height: 52px;
    }
    
    .solution-name {
        font-size: 18px;
    }

    /* Toolset Section */
    .toolset-section {
        padding: 50px 0;
    }
    
    .toolset-section-wrapper {
        gap: 40px;
    }
    
    .toolset-para {
        font-size: 12px;
    }
    
    .toolset-logo-wrapper {
        gap: 30px;
    }
    
    .toolset-image {
        height: 36px;
    }

    /* We Support Section */
    .we-support-section {
        padding: 40px 10px;
    }
    
    .we-support-card {
        padding: 25px 20px;
    }
    
    .we-support-card-icons-wrapper {
        height: 50px;
        width: 50px;
    }
    
    .we-support-card-icons {
        height: 24px;
        width: 24px;
    }
    
    .we-support-card-title {
        font-size: 20px;
    }
    
    .we-support-card-para {
        font-size: 14px;
        line-height: 22px;
    }

    /* Why Section */
    .why-section {
        padding: 50px 12px;
    }
    
    .why-section-wrapper {
        padding: 40px 20px;
    }
    
    .why-grid {
        gap: 35px;
    }
    
    .why-card h3 {
        font-size: 22px;
    }
    
    .why-card p {
        font-size: 13px;
        line-height: 18px;
    }

    /* Clients Section */
    .clients-section {
        padding: 50px 0;
    }
    
    .clients-title-wrapper {
        padding: 0 20px;
    }
    
    .clients-content-wrapper {
        gap: 35px;
        padding: 0 15px;
    }
    
    .clients-logo {
        height: 28px;
    }

    /* Testimonial Section */
    .testimonial {
        padding: 25px 10px;
    }
    
    .testimonial-section-title {
        padding: 0.8rem 1rem 2rem;
        font-size: 18px;
        line-height: 26px;
    }
    
    .card-content {
        padding: 25px 20px;
    }
    
    .testimonial-text {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .testimonial-author {
        font-size: 15px;
    }
    
    .slider-controls {
        margin-top: 30px;
    }
    
    .slider-btn {
        width: 42px;
        height: 42px;
    }

    /* Blog Section */
    .blog-section {
        padding: 50px 0;
    }
    
    .blog-wrapper {
        gap: 30px;
    }
    
    .blog-content-wrapper {
        gap: 35px;
        padding: 0 15px;
    }
    
    .blog-card-content {
        padding: 0.8rem 0.3rem;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
    
    .blog-card-para {
        font-size: 12px;
        line-height: 20px;
    }
    
    .blog-btn {
        font-size: 18px;
    }
    
    .blog-card-small {
        padding: 0.8rem 0.3rem;
    }
    
    .blog-card-title-sm {
        font-size: 18px;
    }
    
    .blog-card-para-sm {
        font-size: 12px;
        line-height: 20px;
    }
    
    .blog-btn-sm {
        font-size: 12px;
    }
    
    .blogs-btn {
        width: 180px;
        padding: 14px 5px;
        font-size: 14px;
    }
}




.our-testing-section{
    width: 100%;
    /* padding: 60px 0; */
    position: relative;
    background: linear-gradient(180deg, #001623 0%, #000000 100%);
}
.testing-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-us-testing-section-title {
    text-transform: uppercase;
    font-size: 35px;
    font-weight: 500;
    line-height: 54px;
    text-align: left;
    color: #FFFFFF;
    font-family: "CircularStd", sans-serif !important;
    margin-bottom: 0px;
    text-align: center;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-orb {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    animation: float 6s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(66, 153, 225, 0.3) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.orb-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #1e3a5f 0%, #0a1929 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 60px rgba(66, 153, 225, 0.4);
    overflow: hidden;
}

.orb-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(45deg, #4299e1, #2b6cb0, #1a365d);
    opacity: 0.6;
    animation: rotate 8s linear infinite;
}

.orb-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.ai-chip {
    font-size: 5rem;
    font-weight: 700;
    color: #4299e1;
    text-shadow: 0 0 30px rgba(66, 153, 225, 0.8);
    letter-spacing: 4px;
}

.circuit-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #4299e1, transparent);
    height: 2px;
    animation: circuit 3s linear infinite;
}

.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #4299e1;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
    box-shadow: 0 0 10px #4299e1;
}

.accordion-container {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.accordion-item {
    /* background: rgba(255, 255, 255, 0.03); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.9);
    transition: background 0.3s ease;
    margin-bottom: 22px;
}


.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 15px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.accordion-title {
    font-size: 22px;
    line-height: 44px;
    text-align: left;
    font-weight: 500;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
    stroke: #94a3b8;
    transition: stroke 0.3s ease;
    transform: rotate(90deg);
}

.accordion-item:hover .accordion-icon svg {
    stroke: #4299e1;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon svg {
    stroke: #4299e1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-content-inner {
    padding: 0 32px 28px 32px;
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1rem;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.why-us-testing-image{
    width: 360px;
    border-radius: 30px;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes circuit {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate(var(--tx), var(--ty));
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .ai-orb {
        max-width: 350px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .testing-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.75rem;
        letter-spacing: 1px;
        margin-bottom: 40px;
    }

    .ai-orb {
        max-width: 280px;
    }

    .ai-chip {
        font-size: 3.5rem;
    }

    .accordion-header {
        padding: 22px 20px;
    }

    .accordion-title {
        font-size: 1.1rem;
    }

    .accordion-content-inner {
        padding: 0 20px 22px 20px;
        font-size: 0.95rem;
    }

    .content-wrapper {
        gap: 40px;
    }
    .why-us-testing-image{
        width: 260px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.5rem;
        line-height: 40px;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .ai-orb {
        max-width: 240px;
    }

    .ai-chip {
        font-size: 3rem;
    }
    .why-us-testing-image{
        width: 260px;
    }
}



 /* CTA Section */
 .cta-main-section {
    width: 100%;
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}

/* Subtle background decoration */
.cta-main-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(45, 86, 137, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-main-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(100, 181, 246, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-container-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.cta-content-wrapper {
    background: #ffffff;
    border-radius: 24px;
    padding: 80px 60px;
    box-shadow: 0 10px 60px rgba(45, 86, 137, 0.08);
    border: 1px solid rgba(45, 86, 137, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
}

/* Decorative gradient border effect */
.cta-content-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2D5689 0%, #64b5f6 100%);
}

.cta-text-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-main-title {
    font-size: 42px;
    font-weight: 600;
    background: linear-gradient(90deg, #1A212A 0%, #2D5689 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "CircularStd", sans-serif;
    line-height: 1.3;
}

.cta-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: #666666;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.cta-button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}

.cta-primary-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #2D5689 0%, #1A212A 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(45, 86, 137, 0.3);
    overflow: hidden;
}

.cta-primary-button::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: left 0.5s ease;
}

.cta-primary-button:hover::before {
    left: 100%;
}

.cta-primary-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(45, 86, 137, 0.4);
}

.cta-primary-button .material-icons {
    font-size: 22px;
    transition: transform 0.3s ease;
}

.cta-primary-button:hover .material-icons {
    transform: translateX(4px);
}

.cta-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 18px 36px;
    font-size: 18px;
    font-weight: 600;
    color: #2D5689;
    background: transparent;
    border: 2px solid #2D5689;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    font-family: "Manrope", sans-serif;
    transition: all 0.3s ease;
}

.cta-secondary-button:hover {
    background: #2D5689;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(45, 86, 137, 0.2);
}

.cta-secondary-button .material-icons {
    font-size: 22px;
}

/* Features/Trust badges */
.cta-features-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2D5689;
    font-size: 15px;
    font-weight: 500;
}

.cta-feature-item .material-icons {
    font-size: 24px;
    color: #64b5f6;
}

/* ========================= */
/* TABLET RESPONSIVE - 768px to 1024px */
/* ========================= */
@media (max-width: 1024px) {
    .cta-main-section {
        padding: 80px 0;
    }

    .cta-content-wrapper {
        padding: 60px 40px;
        gap: 28px;
    }

    .cta-main-title {
        font-size: 36px;
    }

    .cta-subtitle {
        font-size: 17px;
    }

    .cta-primary-button,
    .cta-secondary-button {
        padding: 16px 32px;
        font-size: 17px;
    }

    .cta-features-wrapper {
        gap: 40px;
    }
}

/* ========================= */
/* MOBILE RESPONSIVE - Below 768px */
/* ========================= */
@media (max-width: 768px) {
    .cta-main-section {
        padding: 60px 0;
    }

    .cta-container-wrapper {
        padding: 0 16px;
    }

    .cta-content-wrapper {
        padding: 50px 30px;
        gap: 24px;
        border-radius: 20px;
    }

    .cta-main-title {
        font-size: 30px;
    }

    .cta-subtitle {
        font-size: 16px;
    }

    .cta-button-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 16px;
    }

    .cta-primary-button,
    .cta-secondary-button {
        width: 100%;
        max-width: 400px;
        padding: 16px 28px;
        font-size: 16px;
    }

    .cta-features-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .cta-feature-item {
        font-size: 14px;
    }
}

/* ========================= */
/* SMALL MOBILE - Below 480px */
/* ========================= */
@media (max-width: 480px) {
    .cta-main-section {
        padding: 50px 0;
    }

    .cta-content-wrapper {
        padding: 40px 24px;
        gap: 20px;
    }

    .cta-main-title {
        font-size: 26px;
    }

    .cta-subtitle {
        font-size: 15px;
    }

    .cta-primary-button,
    .cta-secondary-button {
        padding: 15px 24px;
        font-size: 15px;
    }

    .cta-feature-item {
        font-size: 13px;
    }

    .cta-feature-item .material-icons {
        font-size: 20px;
    }
}




.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    /* margin-top: 50px; */
}

.blog-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: auto;
}

/* .blog-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 62px;
} */

.blog-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 48px;
}

.read-more-btn {
    display: inline-block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.read-more-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #1A212A 0%, #2D5689 100%);
    transition: width 0.3s ease;
}

.read-more-btn:hover::after {
    width: 25%;
}

.read-more-btn:hover {
    color: linear-gradient(90deg, #1A212A 0%, #2D5689 100%);
}

/* Tablet View */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .blog-title {
        font-size: 36px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .blog-section {
        padding: 60px 20px;
    }

    .blog-header {
        margin-bottom: 40px;
    }

    .blog-subtitle {
        font-size: 14px;
    }

    .blog-title {
        font-size: 28px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-image {
        height: 240px;
    }

    .blog-content {
        padding: 25px 20px 30px;
    }

    .blog-card-title {
        font-size: 20px;
        min-height: auto;
    }

    .blog-description {
        font-size: 14px;
        min-height: auto;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-section {
        padding: 50px 15px;
    }

    .blog-title {
        font-size: 24px;
    }

    .blog-image {
        height: 200px;
    }
}