/* Hero Section */

.hero-section {
    width: 120vw;
    height: calc(60vh);
    /* background-image: url('./Images/Hero-bg-transparent.png'); */
    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%);
}
.second-bg {
    position: absolute;
    background-image: url(./Images/about-bg-transparent.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 130vw;
    height: calc(55vh);
    top: 3rem;
    z-index: 99;
}
.bg-gradent {
    position: absolute;
    left: -150px;
    top: 0;
    width: 520px;
    height: 500px;
    background: radial-gradient(ellipse at center, #0799ff73 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 {
    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: left;
    align-items: center;
    height: 450px;
    width: 1080px;
    margin-left: -4rem;
    /* background: linear-gradient(90deg, #FFFFFF 0%, #ffffff1d 100%); */
    background-color: rgba(255, 255, 255, 0.158);
    padding: 150px 446px 228px 96px;
    border-radius: 44px;
    backdrop-filter: blur(50px);
    border: 1px solid #ffffffe9;
    position: relative;
    z-index: 9;
}
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: lef;
    gap: 10px;
}
.hero-logo {
    height: 53px;
    width: 187px;
}
.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: 20px;
    font-weight: 400;
    line-height: auto;
    text-align: left;
    color: #000;
}


/* About Us Section */

.about-us-section {
    padding: 120px 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;
    letter-spacing: 2%;
    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;
}


/* 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;
    }
}

  /* 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;
    }
    .simple-testimonial-container{
        padding: 60px;
    }
}

@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;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;   /* 🔑 very important */
}

.blog-btn-sm::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.blog-btn-sm:hover::after {
    width: 18%;
}
.blog-btn {
    font-size: 18px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    position: relative;
    display: inline-block;   /* 🔑 very important */
}

.blog-btn::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 2px;
    background-color: #000;
    transition: width 0.3s ease;
}

.blog-btn:hover::after {
    width: 18%;
}

.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;
}




.qa-process-section {
    width: 100%;
    min-height: 100vh;
    background: radial-gradient(
        circle at top left,
        rgba(255, 255, 255, 0.08),
        transparent 60%
      ),
      linear-gradient(180deg, #020d16 0%, #000000 100%);
    padding: 120px 24px;
    display: flex;
    align-items: center;
    position: relative;
  }
  
  .qa-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
  }
  
  /* Title */
  .qa-title {
    text-align: center;
    font-size: 26px;
    letter-spacing: 1.5px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 80px;
  }
  
  /* Steps Wrapper */
  .qa-steps {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
  
  /* Single Step */
  .qa-step {
    display: flex;
    gap: 32px;
    align-items: flex-start;
  }
  
  /* Step Number */
  .qa-step-number {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    min-width: 40px;
  }
  
  /* Content */
  .qa-step-content h3 {
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    color: linear-gradient(90deg, #FFFF 0%, #ffffff00 100%);
  }
  
  .qa-step-content p {
    font-size: 14px;
    line-height: 1.8;
    color: gray;
    max-width: 620px;
    margin-left: -4rem;
    border-left: 1px solid gray;
    padding-left: 1rem;
  }
  
  /* Subtle divider line */
  .qa-step::before {
    content: "";
    position: absolute;
    left: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    display: none;
  }
  
  /* ========================= */
  /* Responsive */
  /* ========================= */
  
  @media (max-width: 992px) {
    .qa-title {
      font-size: 24px;
      margin-bottom: 60px;
    }
  
    .qa-step {
      gap: 24px;
    }
  
    .qa-step-content h3 {
      font-size: 20px;
    }
  }
  
  @media (max-width: 768px) {
    .qa-step {
      flex-direction: column;
      gap: 12px;
    }
  
    .qa-step-number {
      font-size: 18px;
    }
  
    .qa-step-content p {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .qa-process-section {
      padding: 80px 16px;
    }
  
    .qa-title {
      font-size: 20px;
    }
  
    .qa-step-content h3 {
      font-size: 18px;
    }
  
    .qa-step-content p {
      font-size: 13px;
    }
  }
  
  .about-image{
    position: absolute;
    height: 800px;
    width: 800px;
    top: 170px;
    right: -22%;
  }
  


  /* ========================= */
/* TABLET RESPONSIVE - 768px to 1024px */
/* ========================= */

@media (max-width: 1024px) {
    /* Hero Section */
    .hero-section {
        width: 100vw;
        height: 70vh;
        padding: 80px 60px 0 60px;
    }
    
    .second-bg {
        width: 100vw;
        height: 70vh;
    }
    
    .bg-gradent {
        left: -100px;
        width: 450px;
        height: 450px;
    }
    
    .bg-gradent-right {
        right: 20%;
        width: 450px;
        height: 450px;
    }
    
    .hero-section-wrapper {
        width: 100%;
        max-width: 900px;
        height: 400px;
        margin-left: 0;
        padding: 80px 60px;
    }
    
    .hero-logo {
        height: 45px;
        width: 160px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 38px;
    }
    
    .hero-title span {
        font-size: 30px;
        line-height: 38px;
    }

    /* 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;
    }

    /* Why Section */
    .why-section-wrapper {
        padding: 60px 40px;
    }

    .why-grid {
        gap: 60px;
    }

    .why-vertical-text {
        font-size: 90px;
    }

    /* Testimonial Section */
    .testimonial-section-title {
        padding: 1rem 8rem 3rem;
    }
    
    .slider-wrapper {
        padding: 0 calc((100vw - 600px) / 2);
    }

    .testimonial-card {
        min-width: 600px;
        max-width: 600px;
    }

    .slider-container::before,
    .slider-container::after {
        width: 200px;
    }

    /* QA Process Section */
    .qa-title {
        font-size: 24px;
        margin-bottom: 60px;
    }
    
    .qa-step {
        gap: 24px;
    }
    
    .qa-step-content h3 {
        font-size: 20px;
    }
    
    .about-image {
        height: 700px;
        width: 700px;
        right: -30%;
    }

    /* 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;
    }
}

/* ========================= */
/* MOBILE RESPONSIVE - Below 768px */
/* ========================= */

@media (max-width: 768px) {
    /* Hero Section */
    .hero-section {
        width: 100vw;
        height: 60vh;
        padding: 20px 15px;
        background: linear-gradient(180deg, #0798ff0d 0%, #ffffff 100%);
    }
    
    .second-bg {
        width: 100vw;
        height: 60vh;
        background-size: cover;
    }
    
    .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);
    }
    
    .hero-section-wrapper {
        width: 100%;
        height: auto;
        min-height: 300px;
        margin-left: 0;
        padding: 50px 30px;
        border-radius: 24px;
    }
    
    .hero-content-wrapper {
        align-items: center;
        text-align: center;
    }
    
    .hero-logo {
        height: 40px;
        width: 140px;
    }
    
    .hero-title {
        font-size: 22px;
        line-height: 32px;
        text-align: center;
    }
    
    .hero-title br {
        display: none;
    }
    
    .hero-title span {
        font-size: 26px;
        line-height: 32px;
    }
    
    .section-bottom-vector-hero {
        width: 100%;
        height: auto;
    }

    /* 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;
    }

    /* 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;
    }

    /* 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;
    }

    /* QA Process Section */
    .qa-process-section {
        padding: 80px 20px;
    }
    
    .qa-title {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 50px;
    }
    
    .qa-steps {
        gap: 36px;
    }
    
    .qa-step {
        flex-direction: column;
        gap: 12px;
    }
    
    .qa-step-number {
        font-size: 18px;
    }
    
    .qa-step-content h3 {
        font-size: 20px;
    }
    
    .qa-step-content p {
        max-width: 100%;
        font-size: 14px;
        margin-left: 0;
        border-left: none;
        padding-left: 0;
    }
    
    .about-image {
        display: none;
    }

    /* 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) {
    html, body {
        width: 100vw;
        overflow-x: hidden;
    }

    /* Hero Section */
    .hero-section {
        height: 55vh;
        padding: 15px 10px;
    }
    
    .second-bg {
        height: 35vh;
        margin-top: 8rem;
    }
    
    .hero-section-wrapper {
        min-height: 280px;
        padding: 40px 20px;
        border-radius: 20px;
        background-color: transparent;
        border: none;
    }
    
    .hero-logo {
        height: 35px;
        width: 120px;
    }
    
    .hero-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .hero-title span {
        font-size: 24px;
        line-height: 28px;
    }

    /* 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;
    }

    /* 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;
    }

    /* 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;
    }

    /* QA Process Section */
    .qa-process-section {
        padding: 60px 15px;
    }
    
    .qa-title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    
    .qa-steps {
        gap: 30px;
    }
    
    .qa-step-number {
        font-size: 16px;
    }
    
    .qa-step-content h3 {
        font-size: 18px;
    }
    
    .qa-step-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    /* 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;
    }
}

/* ========================= */
/* EXTRA SMALL SCREENS - Below 360px */
/* ========================= */

@media (max-width: 360px) {
    .hero-section-wrapper {
        padding: 30px 15px;
    }
    
    .hero-logo {
        height: 30px;
        width: 100px;
    }
    
    .hero-title {
        font-size: 18px;
        line-height: 26px;
    }
    
    .hero-title span {
        font-size: 22px;
        line-height: 26px;
    }
    
    .about-us-title {
        font-size: 15px;
        line-height: 22px;
    }
    
    .about-us-para {
        font-size: 13px;
        line-height: 20px;
    }
    
    .why-card h3 {
        font-size: 20px;
    }
    
    .why-card p {
        font-size: 12px;
    }
    
    .testimonial-section-title {
        font-size: 16px;
        line-height: 24px;
    }
    
    .qa-title {
        font-size: 18px;
    }
}






.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;
    }

    .accordion-title {
        font-size: 1rem;
    }

    .ai-orb {
        max-width: 240px;
    }

    .ai-chip {
        font-size: 3rem;
    }
    .why-us-testing-image{
        width: 260px;
    }
}






.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;
    }
}