  /* Navbar collapse for mobile */
  .navbar-collapse {
      transition: transform 0.3s ease-in-out;
  }

  @media (max-width: 991.98px) {
      .navbar-collapse {
          position: fixed;
          top: 0;
          left: 0;
          height: 100vh;
          width: 280px;
          background-color: white;
          box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
          transform: translateX(-100%);
          z-index: 1000;
      }

      .navbar-collapse.show {
          transform: translateX(0);
      }

      .navbar-nav {
          padding: 1rem 1.5rem;
      }

      .nav-link {
          font-size: 1.125rem;
          padding: 0.75rem 0;
      }

      .close-btn {
          position: absolute;
          top: 1rem;
          right: 1rem;
          font-size: 1.5rem;
          cursor: pointer;
          color: #333;
          transition: color 0.3s;
      }

      .close-btn:hover {
          color: #0d6efd;
      }

      .sidebar-logo {
          padding: 1.5rem;
          border-bottom: 1px solid #e5e7eb;
      }

      body.nav-open {
          overflow: hidden;
      }
  }

  @media (min-width: 992px) {
      .navbar-collapse {
          position: static;
          height: auto !important;
          width: auto !important;
          transform: none !important;
          box-shadow: none;
      }

      .close-btn,
      .sidebar-logo {
          display: none;
      }
  }

  /* Navbar styles */
  .navbar {
      box-shadow: 0px 1px 10px #c6c6c6;
      transition: box-shadow 0.3s ease;
  }

  .navbar.scrolled {
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-link {
      position: relative;
  }

  .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: #0d6efd;
      transition: width 0.3s ease;
  }

  .nav-link:hover::after {
      width: 100%;
  }

  /* Enhanced Hamburger Icon */
  .navbar-toggler {
      border: none;
      padding: 0;
      width: 36px;
      height: 28px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: all 0.3s ease;
  }

  .navbar-toggler span {
      display: block;
      height: 3px;
      width: 100%;
      background: #1e40af;
      /* Blue to match theme */
      border-radius: 4px;
      transition: all 0.3s ease-in-out;
      transform-origin: center;
      box-shadow: none;
  }

  .navbar-toggler:focus {
      box-shadow: none !important;
  }

  .navbar-toggler:not(.collapsed) span:nth-child(1) {
      transform: translateY(12.5px) rotate(45deg);
      background: #ef4444;
      /* Red when open */
  }

  .navbar-toggler:not(.collapsed) span:nth-child(2) {
      opacity: 0;
      transform: translateX(-20px);
  }

  .navbar-toggler:not(.collapsed) span:nth-child(3) {
      transform: translateY(-12.5px) rotate(-45deg);
      background: #ef4444;
      /* Red when open */
  }

  .navbar-toggler:hover span {
      background: #3b82f6;
      /* Lighter blue on hover */
  }


  .carousel-container {
      width: 100%;
      position: relative;
  }

  .carousel-item {
      height: 100vh;
      overflow: hidden;
      position: relative;
  }

  .carousel-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: zoomAnimation 20s linear infinite;
  }

  .carousel-caption {
      bottom: 40%;
      /* top: 0; */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: left;
      max-width: 800px;
      /* margin: 0 auto; */
      padding: 20px;
      background-color: #0000003d;
  }

  .caption-title {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 3px;
      text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.8);
      opacity: 0;
      transform: translateY(50px);
  }

  .caption-description {
      font-size: 1.5rem;
      margin-bottom: 30px;
      /* max-width: 700px; */
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
      opacity: 0;
      transform: translateY(50px);
  }

  .btn-custom {
      background: linear-gradient(45deg, #ff3366, #ff9933);
      border: none;
      border-radius: 50px;
      padding: 15px 40px;
      font-weight: 600;
      font-size: 1.1rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.5s ease;
      opacity: 0;
      transform: translateY(50px);
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .btn-custom:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }

  .carousel-control-prev,
  .carousel-control-next {
      width: 60px;
      height: 60px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 0.8;
      transition: all 0.3s ease;
      margin: 0 20px;
  }

  .carousel-control-prev {
      left: 0;
  }

  .carousel-control-next {
      right: 0;
  }

  .carousel-control-prev:hover,
  .carousel-control-next:hover {
      opacity: 1;
      background: rgba(255, 255, 255, 0.3);
  }

  .carousel-indicators {
      bottom: 40px;
  }

  .carousel-indicators button {
      width: 15px;
      height: 15px;
      border-radius: 50%;
      margin: 0 8px;
      background-color: #fff;
      opacity: 0.5;
      transition: all 0.3s ease;
  }

  .carousel-indicators .active {
      opacity: 1;
      /* transform: scale(1.3); */
      background: #f79523;
  }

  .carousel-item.active .caption-title {
      animation: titleAnimation 1s ease forwards 0.5s;
  }

  .carousel-item.active .caption-description {
      animation: textAnimation 1s ease forwards 0.8s;
  }

  .carousel-item.active .btn-custom {
      animation: buttonAnimation 1s ease forwards 1.1s;
  }

  @keyframes zoomAnimation {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }

      100% {
          transform: scale(1);
      }
  }

  @keyframes titleAnimation {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes textAnimation {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes buttonAnimation {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .social-icons {
      position: absolute;
      bottom: 30px;
      right: 30px;
      z-index: 1000;
      display: flex;
      flex-direction: column;
  }

  .social-icons a {
      color: white;
      font-size: 1.3rem;
      margin: 10px 0;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      backdrop-filter: blur(5px);
  }

  .social-icons a:hover {
      background: linear-gradient(45deg, #ff3366, #ff9933);
      transform: translateY(-5px);
  }

  .logo {
      position: fixed;
      top: 30px;
      left: 30px;
      z-index: 1000;
      font-size: 2rem;
      font-weight: 800;
      color: #fff;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
      letter-spacing: 2px;
  }

  .logo span {
      color: #ff3366;
  }

  @media (max-width: 992px) {
      .caption-title {
          font-size: 3.5rem;
      }

      .caption-description {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 768px) {
      .carousel-item {
          height: 100vh;
      }

      .caption-title {
          font-size: 2.5rem;
      }

      .caption-description {
          font-size: 1rem;
      }

      .btn-custom {
          padding: 12px 30px;
          font-size: 1rem;
      }

      .carousel-control-prev,
      .carousel-control-next {
          width: 50px;
          height: 50px;
      }
  }


  .ser_body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      color: black;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      overflow-x: hidden;
  }

  .creative-accordion-container {
      /* background: rgba(255, 255, 255, 0.03);
      backdrop-filter: blur(10px);
      border-radius: 30px;
      padding: 50px;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25); */
      width: 100%;
      /* max-width: 1400px; */
      position: relative;
      overflow: hidden;
  }

  .creative-accordion-container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
      animation: pulse 15s infinite linear;
      z-index: -1;
  }

  @keyframes pulse {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .section-header {
      text-align: center;
      margin-bottom: 60px;
      position: relative;
      z-index: 2;
  }

  .section-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      margin-bottom: 20px;
      background: linear-gradient(45deg, #4ecdc4, #00b4db, #a8ff78, #4ecdc4);
      background-size: 300% 300%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      /* animation: gradientShift 8s ease infinite; */
      position: relative;
      display: inline-block;
  }

  @keyframes gradientShift {
      0% {
          background-position: 0% 50%;
      }

      50% {
          background-position: 100% 50%;
      }

      100% {
          background-position: 0% 50%;
      }
  }

  .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #d8b15e, #c59c41);
      border-radius: 3px;
  }

  .section-subtitle {
      font-size: 1.3rem;
      opacity: 0.9;
      max-width: 700px;
      margin: 30px auto 0;
      line-height: 1.6;
      color: white;
  }

  .accordion-wrapper {
      display: flex;
      flex-direction: column;
      gap: 40px;
      position: relative;
      z-index: 2;
  }

  @media (min-width: 1200px) {
      .accordion-wrapper {
          flex-direction: row;
      }
  }

  .accordion-column {
      flex: 1;
  }

  .image-column {
      flex: 1;
      display: flex;
      /* align-items: center; */
      justify-content: center;
      position: relative;
  }

  .image-container {
      width: 100%;
      max-width: 550px;
      height: 80%;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
      position: relative;
      transform-style: preserve-3d;
      perspective: 1000px;
  }

  .service-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
  }

  .image-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
      padding: 25px;
      text-align: center;
      font-weight: 600;
      font-size: 1.4rem;
      color: #4ecdc4;
      transform: translateY(5px);
      opacity: 0;
      transition: all 0.5s ease;
  }

  .image-container:hover .image-caption {
      transform: translateY(0);
      opacity: 1;
  }

  .image-container:hover .service-image {
      transform: scale(1.08);
  }

  .floating-icons {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
  }

  .floating-icon {
      position: absolute;
      font-size: 2rem;
      color: rgba(78, 205, 196, 0.3);
      animation: float 6s infinite ease-in-out;
  }

  .floating-icon:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .floating-icon:nth-child(2) {
      top: 70%;
      left: 80%;
      animation-delay: 1s;
  }

  .floating-icon:nth-child(3) {
      top: 40%;
      left: 90%;
      animation-delay: 2s;
  }

  .floating-icon:nth-child(4) {
      top: 80%;
      left: 10%;
      animation-delay: 3s;
  }

  .floating-icon:nth-child(5) {
      top: 20%;
      left: 75%;
      animation-delay: 4s;
  }

  @keyframes float {

      0%,
      100% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(10deg);
      }
  }

  .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: rgba(255, 255, 255, 0.1);
      --bs-accordion-btn-color: #fff;
      --bs-accordion-active-color: #4ecdc4;
      --bs-accordion-active-bg: rgba(78, 205, 196, 0.1);
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-btn-padding-x: 1.5rem;
      --bs-accordion-btn-padding-y: 1.2rem;
      --bs-accordion-body-padding-x: 1.5rem;
      --bs-accordion-body-padding-y: 1.5rem;
  }

  .accordion-item {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      overflow: hidden;
      margin-bottom: 20px;
      border: none;
      backdrop-filter: blur(5px);
      transition: all 0.4s ease;
  }

  .accordion-item:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: translateX(5px);
  }

  .accordion-button {
      background: rgba(255, 255, 255, 0.08);
      color: #fff;
      font-weight: 600;
      font-size: 1.1rem;
      border-radius: 15px !important;
      border-bottom-left-radius: 0px !important;
      border-bottom-right-radius: 0px !important;
      margin-bottom: 0;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .accordion-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.2), transparent);
      transition: all 0.6s ease;
  }

  .accordion-button:hover::before {
      left: 100%;
  }

  .accordion-button:not(.collapsed) {
      background: black;
      color: white;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  }

  .accordion-button::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      transition: all 0.4s ease;
      background-size: 1.2rem;
  }

  .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234ecdc4'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
      transform: rotate(-180deg);
  }

  .accordion-body {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 0 0 15px 15px;
      color: white;
      line-height: 1.7;
  }

  .service-icon {
      width: 50px;
      height: 50px;
      /* background: linear-gradient(135deg, #4ecdc4, #00b4db); */
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      color: white;
      font-size: 1.5rem;
      box-shadow: 0 5px 15px rgb(0, 0, 0);
  }

  .service-features {
      list-style: none;
      padding: 0;
      margin: 20px 0;
  }

  .service-features li {
      padding: 10px 0;
      padding-left: 35px;
      position: relative;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .service-features li:last-child {
      border-bottom: none;
  }

  .service-features li::before {
      content: '→';
      position: absolute;
      left: 0;
      color: #4ecdc4;
      font-weight: bold;
      font-size: 1.2rem;
      transition: all 0.3s ease;
  }

  .service-features li:hover::before {
      transform: translateX(5px);
  }

  .service-link {
      display: inline-flex;
      align-items: center;
      padding: 12px 30px;
      background: linear-gradient(90deg, #4ecdc4, #00b4db);
      color: white;
      text-decoration: none;
      border-radius: 50px;
      font-weight: 500;
      transition: all 0.4s ease;
      box-shadow: 0 5px 20px rgba(0, 180, 219, 0.4);
      position: relative;
      overflow: hidden;
  }

  .service-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: all 0.6s ease;
  }

  .service-link:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(0, 180, 219, 0.5);
  }

  .service-link:hover::before {
      left: 100%;
  }

  .service-link i {
      margin-left: 10px;
      transition: transform 0.3s ease;
  }

  .service-link:hover i {
      transform: translateX(5px);
  }

  @media (max-width: 1199px) {
      .creative-accordion-container {
          padding: 30px;
      }

      .section-title {
          font-size: 2.8rem;
      }

      .image-container {
          height: 350px;
      }
  }

  @media (max-width: 767px) {
      .creative-accordion-container {
          padding: 20px;
      }

      .section-title {
          font-size: 2.2rem;
      }

      .section-subtitle {
          font-size: 1.1rem;
      }

      .image-container {
          height: 280px;
      }

      .service-icon {
          width: 40px;
          height: 40px;
          font-size: 1.2rem;
      }

      .accordion-button {
          font-size: 1rem;
      }
  }

  .ab_container {
      background: white;
      border-radius: 20px;
      padding: 80px 0;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
      position: relative;
      overflow: hidden;
  }

  .ab_container::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #4ecdc4, #00b4db);
      border-radius: 50%;
      opacity: 0.05;
      z-index: 0;
  }

  .ab_container::after {
      content: '';
      position: absolute;
      bottom: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, #a8ff78, #4ecdc4);
      border-radius: 50%;
      opacity: 0.05;
      z-index: 0;
  }

  .ab_header {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
      z-index: 2;
  }

  .ab_title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: 3.5rem;
      margin-bottom: 20px;
      color: #2c3e50;
      position: relative;
      display: inline-block;
  }

  .ab_title span {
      background: linear-gradient(135deg, #304d95, #0a225c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }

  .ab_title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 5px;
      background: linear-gradient(90deg, #d8b15e, #c59c41);
      border-radius: 3px;
  }

  .ab_subtitle {
      font-size: 1.2rem;
      color: #7f8c8d;
      max-width: 700px;
      margin: 30px auto 0;
      line-height: 1.6;
  }

  .ab_content {
      position: relative;
      z-index: 2;
  }

  .ab_image {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      height: 100%;
      transition: all 0.5s ease;
  }

  .ab_image:hover {
      transform: translateY(-10px);
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.2);
  }

  .ab_image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
  }

  .ab_image:hover img {
      transform: scale(1.05);
  }

  .ab_image_overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      padding: 30px;
      color: white;
      opacity: 0;
      transition: opacity 0.5s ease;
  }

  .ab_image:hover .ab_image_overlay {
      opacity: 1;
  }

  .ab_stats {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      margin: 50px 0;
      gap: 20px;
  }

  .ab_stat {
      text-align: center;
      padding: 30px;
      background: rgba(78, 205, 196, 0.1);
      border-radius: 15px;
      flex: 1;
      min-width: 200px;
      transition: all 0.3s ease;
  }

  .ab_stat:hover {
      transform: translateY(-5px);
      background: rgba(78, 205, 196, 0.15);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .ab_stat_number {
      font-size: 3rem;
      font-weight: 800;
      color: #0a225c;
      margin-bottom: 10px;
      font-family: 'Montserrat', sans-serif;
  }

  .ab_stat_text {
      font-size: 1.1rem;
      color: #2c3e50;
      font-weight: 600;
  }

  .ab_features {
      margin: 50px 0;
  }

  .ab_feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 30px;
      padding: 25px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
  }

  .ab_feature:hover {
      transform: translateX(10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .ab_feature_icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #304d95, #0a225c);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 25px;
      color: white;
      font-size: 1.8rem;
      box-shadow: 0 10px 20px rgba(0, 180, 219, 0.3);
      flex-shrink: 0;
  }

  .ab_feature_content h3 {
      font-size: 1.5rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 10px;
  }

  .ab_feature_content p {
      color: #7f8c8d;
      line-height: 1.6;
  }

  .wc_trust_section {
      background: linear-gradient(to bottom, #f5f5f5 0%, #e0e7ff 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .wc_trust_container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
  }

  .wc_trust_heading {
      font-size: 3rem;
      font-weight: 700;
      color: #1a3c34;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
  }

  .wc_trust_heading::after {
      content: '';
      width: 80px;
      height: 4px;
      background: #d4a017;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
  }

  .wc_trust_subtitle {
      font-size: 1.2rem;
      color: #4a5568;
      margin-bottom: 60px;
      font-style: italic;
      opacity: 0.9;
  }

  .wc_trust_features {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
  }

  .wc_trust_feature {
      flex: 1 1 300px;
      max-width: 350px;
      background: #ffffff;
      border-radius: 10px;
      padding: 40px 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      transition: box-shadow 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .wc_trust_feature:hover {
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  }

  .wc_trust_feature::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(135deg, #304d95, #0a225c);
  }

  .wc_trust_icon {
      font-size: 3.5rem;
      color: #d4a017;
      margin-bottom: 20px;
  }

  .wc_trust_title {
      font-size: 1.8rem;
      font-weight: 700;
      color: #2b3d4f;
      margin-bottom: 15px;
  }

  .wc_trust_text {
      font-size: 1rem;
      color: #4a5568;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .wc_trust_detail {
      font-size: 0.9rem;
      color: #718096;
      line-height: 1.6;
  }

  .wc_trust_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0 50 Q25 25 50 50 T100 50" stroke="rgba(212,160,23,0.1)" stroke-width="1" fill="none"/><path d="M0 60 Q30 40 50 60 T100 60" stroke="rgba(212,160,23,0.1)" stroke-width="1" fill="none"/></svg>');
      opacity: 0.3;
      z-index: 0;
  }

  @media (max-width: 768px) {
      .wc_trust_heading {
          font-size: 2.2rem;
      }

      .wc_trust_subtitle {
          font-size: 1rem;
      }

      .wc_trust_feature {
          padding: 30px 15px;
      }

      .wc_trust_icon {
          font-size: 2.8rem;
      }

      .wc_trust_title {
          font-size: 1.5rem;
      }
  }


  .cta_body {
      background: linear-gradient(135deg, #1641a6, #0f2b6f, #0e2553);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px;
      margin-top: 80px;
      margin-bottom: 80px;
      border-radius: 24px;
  }

  .cta_container {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      border-radius: 24px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      padding: 50px 40px;
      width: 100%;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
  }

  .cta_container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      transform: rotate(0deg);
      animation: pulse 8s infinite linear;
      pointer-events: none;
  }

  @keyframes pulse {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .cta_heading {
      color: #fff;
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 20px;
      text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      letter-spacing: 1px;
      position: relative;
      display: inline-block;
  }

  .cta_heading::after {
      /* content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #2a19a2, #452ee5);
            border-radius: 2px; */
  }

  .cta_subheading {
      color: rgba(255, 255, 255, 0.85);
      font-size: 18px;
      margin-bottom: 40px;
      line-height: 1.6;
      font-weight: 300;
  }

  .cta_button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(90deg, #2a19a2, #452ee5);
      color: white;
      text-decoration: none;
      padding: 18px 38px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 18px;
      transition: all 0.4s ease;
      box-shadow: 0 6px 20px rgba(62, 62, 62, 0.4);
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .cta_button::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #452ee5, #2a19a2);
      opacity: 0;
      transition: opacity 0.4s ease;
      z-index: -1;
  }

  .cta_button:hover {
      transform: translateY(-4px) scale(1.03);
      box-shadow: 0 10px 25px rgba(19, 56, 158, 0.5);
  }

  .cta_button:hover::before {
      opacity: 1;
  }

  .cta_button_icon {
      margin-left: 12px;
      font-size: 20px;
      transition: transform 0.3s ease;
  }

  .cta_button:hover .cta_button_icon {
      transform: translateX(4px);
  }

  .cta_alternative {
      margin-top: 35px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 16px;
  }

  .cta_alternative a {
      color: #ff8a00;
      text-decoration: none;
      transition: all 0.3s ease;
      position: relative;
      font-weight: 600;
  }

  .cta_alternative a::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 0;
      height: 2px;
      background: #ff8a00;
      transition: width 0.3s ease;
  }

  .cta_alternative a:hover::after {
      width: 100%;
  }

  .cta_decoration {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
      z-index: 0;
  }

  .cta_decoration_item {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  }

  .cta_decoration_item:nth-child(1) {
      width: 120px;
      height: 120px;
      top: -40px;
      right: -40px;
  }

  .cta_decoration_item:nth-child(2) {
      width: 80px;
      height: 80px;
      bottom: 20px;
      left: -30px;
  }

  .cta_decoration_item:nth-child(3) {
      width: 60px;
      height: 60px;
      bottom: -20px;
      right: 30%;
  }

  @media (max-width: 576px) {
      .cta_container {
          padding: 35px 25px;
      }

      .cta_heading {
          font-size: 30px;
      }

      .cta_subheading {
          font-size: 16px;
      }

      .cta_button {
          padding: 16px 32px;
          font-size: 16px;
      }
  }

  /* Footer Styles */
  .footer {
      background: rgba(10, 25, 34, 0.95);
      backdrop-filter: blur(10px);
      padding: 60px 0 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      position: relative;
      overflow: hidden;
  }

  .footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5px;
      background: linear-gradient(90deg, #11e6e6, #46a7d7);
  }

  .footer_wave {
      position: absolute;
      top: -60px;
      left: 0;
      width: 100%;
      height: 60px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%230a1922'%3E%3C/path%3E%3C/svg%3E");
      background-size: 1200px 60px;
      animation: wave 12s linear infinite;
  }

  @keyframes wave {
      0% {
          background-position-x: 0;
      }

      100% {
          background-position-x: 1200px;
      }
  }

  .footer_container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
  }

  .footer_col {
      display: flex;
      flex-direction: column;
  }

  .footer_logo {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
  }

  .footer_logo span {
      color: #d7b15f;
  }

  .footer_logo_icon {
      margin-right: 10px;
      font-size: 32px;
      color: #e52e71;
  }

  .footer_text {
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .footer_heading {
      color: #fff;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
  }

  .footer_heading::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: linear-gradient(90deg, #ff8a00, #d7b15f);
      border-radius: 3px;
  }

  .footer_links {
      list-style: none;
  }

  .footer_link {
      margin-bottom: 12px;
  }

  .footer_link a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
  }

  .footer_link a:hover {
      color: #ff8a00;
      transform: translateX(5px);
  }

  .footer_link_icon {
      margin-right: 8px;
      font-size: 14px;
  }

  .footer_socials {
      display: flex;
      gap: 15px;
      margin-top: 20px;
  }

  .footer_social {
      width: 45px;
      height: 45px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
  }

  .footer_social::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, #ff8a00, #e52e71);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 0;
  }

  .footer_social i {
      position: relative;
      z-index: 1;
  }

  .footer_social:hover {
      transform: translateY(-5px) rotate(5deg);
      box-shadow: 0 5px 15px rgba(229, 46, 113, 0.4);
  }

  .footer_social:hover::before {
      opacity: 1;
  }

  .footer_newsletter {
      position: relative;
      margin-top: 20px;
  }

  .footer_input {
      width: 100%;
      padding: 14px 20px;
      border-radius: 50px;
      border: none;
      background: rgba(255, 255, 255, 0.1);
      color: #fff;
      font-size: 16px;
      padding-right: 120px;
  }

  .footer_input:focus {
      outline: none;
      background: rgba(255, 255, 255, 0.15);
  }

  .footer_button {
      position: absolute;
      top: 50%;
      right: 5px;
      transform: translateY(-50%);
      background: linear-gradient(90deg, #ff8a00, #e52e71);
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 50px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
  }

  .footer_button:hover {
      background: linear-gradient(90deg, #e52e71, #ff8a00);
      transform: translateY(-50%) scale(1.05);
  }

  .footer_bottom {
      max-width: 1200px;
      margin: 40px auto 0;
      padding: 20px 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
  }

  .footer_copyright {
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
  }

  .footer_bottom_links {
      display: flex;
      gap: 20px;
  }

  .footer_bottom_link {
      color: rgba(255, 255, 255, 0.6);
      text-decoration: none;
      font-size: 14px;
      transition: color 0.3s ease;
  }

  .footer_bottom_link:hover {
      color: #ff8a00;
  }

  /* Animation for elements */
  @keyframes float {
      0% {
          transform: translateY(0);
      }

      50% {
          transform: translateY(-10px);
      }

      100% {
          transform: translateY(0);
      }
  }

  .footer_social {
      animation: float 4s ease-in-out infinite;
  }

  .footer_social:nth-child(2) {
      animation-delay: 0.5s;
  }

  .footer_social:nth-child(3) {
      animation-delay: 1s;
  }

  .footer_social:nth-child(4) {
      animation-delay: 1.5s;
  }

  /* Responsive styles */
  @media (max-width: 768px) {
      .footer_container {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .footer_bottom {
          flex-direction: column;
          text-align: center;
      }

      .footer_bottom_links {
          justify-content: center;
      }
  }

  .about_hero_section {
      position: relative;
      min-height: 80vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/about_banner.jpg') no-repeat center center/cover;
      color: #ffffff;
      overflow: hidden;
      padding: 80px 0;
  }

  .about_hero_container {
      max-width: 1100px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
  }

  .about_hero_heading {
      font-size: 4rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: #ffffff;
      margin-bottom: 20px;
      animation: about_fadeIn 1.2s ease-out forwards;
  }

  @keyframes about_fadeIn {
      0% {
          opacity: 0;
          transform: translateY(50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .about_hero_subtitle {
      font-size: 1.4rem;
      font-weight: 300;
      line-height: 1.6;
      max-width: 600px;
      margin: 0 auto 40px;
      opacity: 0.9;
      animation: about_fadeIn 1.4s ease-out 0.2s forwards;
  }

  .about_hero_cta {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: linear-gradient(45deg, #e91e63, #ff6f00);
      color: #ffffff;
      font-size: 1.2rem;
      font-weight: 600;
      padding: 14px 35px;
      border-radius: 50px;
      text-decoration: none;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
      animation: about_fadeIn 1.6s ease-out 0.4s forwards;
  }

  .about_hero_cta:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  }

  .about_hero_icon {
      font-size: 1.4rem;
  }

  .about_hero_image_container {
      position: relative;
      margin-top: 40px;
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
  }

  .about_hero_image {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 15px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.5s ease, opacity 0.5s ease;
      opacity: 0;
      transform: scale(0.8);
  }

  .about_hero_image.loaded {
      opacity: 1;
      transform: scale(1);
  }

  .about_hero_image:hover {
      transform: scale(1.05);
  }

  .about_hero_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
  }

  .about_hero_particle {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.15);
      animation: about_particle_move 12s infinite ease-in-out;
  }

  @keyframes about_particle_move {

      0%,
      100% {
          transform: translateY(0) scale(1);
          opacity: 0.3;
      }

      50% {
          transform: translateY(-120px) scale(1.3);
          opacity: 0.6;
      }
  }

  .about_hero_particle:nth-child(1) {
      width: 60px;
      height: 60px;
      top: 15%;
      left: 10%;
      animation-delay: 0s;
  }

  .about_hero_particle:nth-child(2) {
      width: 40px;
      height: 40px;
      top: 70%;
      left: 85%;
      animation-delay: 3s;
  }

  .about_hero_particle:nth-child(3) {
      width: 80px;
      height: 80px;
      top: 50%;
      left: 25%;
      animation-delay: 6s;
  }

  @media (max-width: 768px) {
      .about_hero_heading {
          font-size: 2.5rem;
      }

      .about_hero_subtitle {
          font-size: 1.1rem;
          max-width: 90%;
      }

      .about_hero_cta {
          font-size: 1rem;
          padding: 12px 30px;
      }

      .about_hero_icon {
          font-size: 1.2rem;
      }

      .about_hero_image {
          width: 250px;
          height: 180px;
      }
  }

  .ab_intro_section {
      position: relative;
      padding: 100px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
  }

  .ab_intro_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
  }

  .ab_intro_background::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background:
          radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.15), transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.1), transparent 50%),
          radial-gradient(circle at 40% 40%, rgba(244, 63, 94, 0.08), transparent 50%);
      animation: ab_bg_pulse 15s ease-in-out infinite;
  }

  @keyframes ab_bg_pulse {

      0%,
      100% {
          opacity: 0.6;
      }

      50% {
          opacity: 1;
      }
  }

  .ab_intro_container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
  }

  .ab_intro_content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
  }

  .ab_intro_text_container {
      position: relative;
  }

  .ab_intro_heading {
      font-size: 4rem;
      font-weight: 700;
      margin-bottom: 30px;
      background: linear-gradient(135deg, #304d95, #0a225c);
      /* primary, secondary */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      position: relative;
      animation: ab_text_reveal 1.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(50px);
  }

  @keyframes ab_text_reveal {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .ab_intro_heading::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 0;
      width: 100px;
      height: 5px;
      background: linear-gradient(90deg, #c59c41, #d8b15e);
      /* primary, accent */
      border-radius: 5px;
  }

  .ab_intro_text {
      font-size: 1.3rem;
      line-height: 1.8;
      color: #4b5563;
      margin-bottom: 50px;
      max-width: 90%;
      animation: ab_text_reveal 1.5s 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(50px);
  }

  .ab_intro_highlight {
      color: #254084;
      /* accent */
      font-weight: 600;
  }

  .ab_intro_stats {
      display: flex;
      gap: 30px;
      margin-bottom: 50px;
      animation: ab_text_reveal 1.5s 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(50px);
  }

  .ab_intro_stat {
      text-align: center;
  }

  .ab_intro_stat_number {
      font-size: 3rem;
      font-weight: 800;
      background: linear-gradient(135deg, #304d95, #0a225c);
      /* primary, accent */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      line-height: 1;
  }

  .ab_intro_stat_label {
      font-size: 1rem;
      color: #6b7280;
      margin-top: 5px;
  }

  .ab_intro_values {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      animation: ab_text_reveal 1.5s 0.9s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(50px);
  }

  .ab_intro_value_item {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(37, 99, 235, 0.1);
      border-radius: 16px;
      padding: 30px 20px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
  }

  .ab_intro_value_item::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
      transition: left 0.7s;
  }

  .ab_intro_value_item:hover::before {
      left: 100%;
  }

  .ab_intro_value_item:hover {
      transform: translateY(-10px);
      border-color: rgba(37, 99, 235, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .ab_intro_value_icon {
      font-size: 3rem;
      background: linear-gradient(135deg, #2563eb, #14b8a6);
      /* primary, secondary */
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      display: block;
      transition: transform 0.4s ease;
  }

  .ab_intro_value_item:hover .ab_intro_value_icon {
      transform: scale(1.2) rotate(5deg);
  }

  .ab_intro_value_title {
      font-size: 1.4rem;
      font-weight: 700;
      color: #1e293b;
      /* dark */
      margin-bottom: 15px;
  }

  .ab_intro_value_text {
      font-size: 1rem;
      color: #4b5563;
      line-height: 1.6;
  }

  .ab_intro_image_container {
      position: relative;
      perspective: 1000px;
  }

  .ab_intro_image_wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
      transform: rotateY(-5deg) rotateX(5deg);
      transition: transform 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      animation: ab_image_float 6s ease-in-out infinite;
  }

  @keyframes ab_image_float {

      0%,
      100% {
          transform: rotateY(-5deg) rotateX(5deg) translateY(0);
      }

      50% {
          transform: rotateY(-5deg) rotateX(5deg) translateY(-20px);
      }
  }

  .ab_intro_image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
      transition: transform 1s ease;
  }

  .ab_intro_image_wrapper:hover {
      transform: rotateY(0) rotateX(0) scale(1.03);
  }

  .ab_intro_image_wrapper:hover .ab_intro_image {
      transform: scale(1.1);
  }

  .ab_intro_image_overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 30px;
      background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
      color: #ffffff;
      transform: translateY(100%);
      transition: transform 0.5s ease;
  }

  .ab_intro_image_wrapper:hover .ab_intro_image_overlay {
      transform: translateY(0);
  }

  .ab_intro_image_caption {
      font-size: 1.2rem;
      font-weight: 600;
      margin-bottom: 10px;
  }

  .ab_intro_image_text {
      font-size: 1rem;
      opacity: 0.9;
  }

  .ab_intro_floating_elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }

  .ab_intro_floating_element {
      position: absolute;
      width: 80px;
      height: 80px;
      border-radius: 20% 80% 30% 70% / 40% 60% 50% 50%;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent);
      animation: ab_float 12s infinite ease-in-out;
      opacity: 0.4;
  }

  .ab_intro_floating_element:nth-child(1) {
      top: 10%;
      left: 5%;
      animation-delay: 0s;
      width: 60px;
      height: 60px;
  }

  .ab_intro_floating_element:nth-child(2) {
      top: 70%;
      left: 80%;
      animation-delay: 3s;
      width: 100px;
      height: 100px;
  }

  .ab_intro_floating_element:nth-child(3) {
      top: 40%;
      left: 90%;
      animation-delay: 6s;
      width: 50px;
      height: 50px;
  }

  @keyframes ab_float {
      0% {
          transform: translate(0, 0) rotate(0deg);
          border-radius: 20% 80% 30% 70% / 40% 60% 50% 50%;
      }

      25% {
          transform: translate(40px, -40px) rotate(90deg);
          border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      }

      50% {
          transform: translate(80px, 0) rotate(180deg);
          border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
      }

      75% {
          transform: translate(40px, 40px) rotate(270deg);
          border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      }

      100% {
          transform: translate(0, 0) rotate(360deg);
          border-radius: 20% 80% 30% 70% / 40% 60% 50% 50%;
      }
  }

  @media (max-width: 1200px) {
      .ab_intro_heading {
          font-size: 3.8rem;
      }

      .ab_intro_content {
          gap: 60px;
      }
  }

  @media (max-width: 992px) {
      .ab_intro_content {
          grid-template-columns: 1fr;
          gap: 50px;
          text-align: center;
      }

      .ab_intro_heading::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .ab_intro_text {
          max-width: 100%;
          margin-left: auto;
          margin-right: auto;
      }

      .ab_intro_stats {
          justify-content: center;
      }

      .ab_intro_image_wrapper {
          max-width: 600px;
          margin: 0 auto;
      }
  }

  @media (max-width: 768px) {
      .ab_intro_heading {
          font-size: 3rem;
      }

      .ab_intro_text {
          font-size: 1.2rem;
      }

      .ab_intro_values {
          grid-template-columns: 1fr;
          gap: 20px;
      }

      .ab_intro_stats {
          flex-wrap: wrap;
      }

      .ab_intro_stat {
          flex: 1 0 45%;
          margin-bottom: 20px;
      }

      .ab_intro_image {
          height: 400px;
      }
  }

  @media (max-width: 576px) {
      .ab_intro_heading {
          font-size: 2.5rem;
      }

      .ab_intro_text {
          font-size: 1.1rem;
      }

      .ab_intro_stat_number {
          font-size: 2.5rem;
      }

      .ab_intro_image {
          height: 300px;
      }
  }

  .mv_section {
      position: relative;
      padding: 120px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: #ffffff;
      overflow: hidden;
  }

  .mv_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
  }

  .mv_background_line {
      position: absolute;
      width: 3px;
      height: 100%;
      background: linear-gradient(to bottom, rgba(59, 130, 246, 0.2), transparent);
      left: 50%;
      transform: translateX(-50%);
      animation: mv_line_glow 10s infinite ease-in-out;
  }

  @keyframes mv_line_glow {

      0%,
      100% {
          opacity: 0.4;
      }

      50% {
          opacity: 0.8;
      }
  }

  .mv_background_dot {
      position: absolute;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent);
      animation: mv_dot_float 12s infinite ease-in-out;
  }

  .mv_background_dot:nth-child(2) {
      top: 20%;
      left: 10%;
      animation-delay: 0s;
  }

  .mv_background_dot:nth-child(3) {
      top: 60%;
      left: 85%;
      animation-delay: 3s;
      width: 30px;
      height: 30px;
  }

  .mv_background_dot:nth-child(4) {
      top: 40%;
      left: 15%;
      animation-delay: 6s;
      width: 15px;
      height: 15px;
  }

  @keyframes mv_dot_float {

      0%,
      100% {
          transform: translateY(0) scale(1);
      }

      50% {
          transform: translateY(-40px) scale(1.2);
      }
  }

  .mv_container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
  }

  .mv_timeline {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 100px;
      align-items: center;
  }

  .mv_timeline_item {
      display: flex;
      align-items: center;
      width: 100%;
      position: relative;
      padding: 40px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(243, 244, 246, 0.8));
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .mv_timeline_item.mission {
      flex-direction: row-reverse;
      margin-left: 20%;
  }

  .mv_timeline_item.vision {
      margin-right: 20%;
  }

  .mv_timeline_item:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }

  .mv_timeline_item::before {
      content: '';
      position: absolute;
      top: 50%;
      width: 20px;
      height: 20px;
      background: linear-gradient(135deg, #d8b15f, #c59b40);
      border-radius: 50%;
      z-index: 3;
  }

  .mv_timeline_item.mission::before {
      left: -10px;
      transform: translate(-50%, -50%);
  }

  .mv_timeline_item.vision::before {
      right: -10px;
      transform: translate(50%, -50%);
  }

  .mv_timeline_content {
      flex: 1;
      padding: 0 40px;
      text-align: left;
  }

  .mv_timeline_heading {
      font-size: 2.5rem;
      font-weight: 800;
      color: #1e293b;
      margin-bottom: 20px;
      background: linear-gradient(135deg, #304d95, #0a225c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      animation: mv_text_reveal 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(30px);
  }

  .mv_timeline_text {
      font-size: 1.2rem;
      line-height: 1.7;
      color: #4b5563;
      margin-bottom: 20px;
      animation: mv_text_reveal 1.2s 0.3s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(30px);
  }

  .mv_timeline_highlight {
      color: #304d95;
      font-weight: 600;
  }

  .mv_timeline_details {
      font-size: 1rem;
      color: #6b7280;
      line-height: 1.6;
      animation: mv_text_reveal 1.2s 0.5s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
      opacity: 0;
      transform: translateY(30px);
  }

  @keyframes mv_text_reveal {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  .mv_timeline_image {
      width: 300px;
      height: 200px;
      object-fit: cover;
      border-radius: 12px;
      border: 2px solid rgba(59, 130, 246, 0.2);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      transition: transform 0.5s ease, box-shadow 0.5s ease;
      opacity: 0;
      transform: scale(0.9);
  }

  .mv_timeline_image.loaded {
      opacity: 1;
      transform: scale(1);
  }

  .mv_timeline_item:hover .mv_timeline_image {
      transform: scale(1.05);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }

  .mv_timeline_icon {
      position: absolute;
      top: -40px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #3b82f6, #224bc5);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      font-size: 1.8rem;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      animation: mv_icon_pulse 2s ease-in-out infinite;
  }

  .mv_timeline_item.mission .mv_timeline_icon {
      right: 40px;
  }

  .mv_timeline_item.vision .mv_timeline_icon {
      left: 40px;
  }

  @keyframes mv_icon_pulse {

      0%,
      100% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.1);
      }
  }

  @media (max-width: 1200px) {
      .mv_timeline_item {
          padding: 30px;
      }

      .mv_timeline_heading {
          font-size: 2.2rem;
      }

      .mv_timeline_image {
          width: 250px;
          height: 180px;
      }
  }

  @media (max-width: 992px) {
      .mv_timeline_item {
          flex-direction: column !important;
          margin-left: 0 !important;
          margin-right: 0 !important;
          text-align: center;
      }

      .mv_timeline_content {
          padding: 20px 0;
      }

      .mv_timeline_item::before {
          top: -10px;
          left: 50% !important;
          transform: translate(-50%, 0) !important;
      }

      .mv_timeline_icon {
          top: -50px !important;
          left: 50% !important;
          transform: translateX(-50%) !important;
      }

      .mv_timeline_image {
          margin-top: 20px;
      }
  }

  @media (max-width: 768px) {
      .mv_section {
          padding: 80px 0;
      }

      .mv_timeline_heading {
          font-size: 2rem;
      }

      .mv_timeline_text {
          font-size: 1.1rem;
      }

      .mv_timeline_details {
          font-size: 0.9rem;
      }

      .mv_timeline_image {
          width: 200px;
          height: 150px;
      }
  }

  @media (max-width: 576px) {
      .mv_timeline_heading {
          font-size: 1.8rem;
      }

      .mv_timeline_text {
          font-size: 1rem;
      }

      .mv_timeline_image {
          width: 180px;
          height: 120px;
      }

      .mv_timeline_icon {
          width: 40px;
          height: 40px;
          font-size: 1.5rem;
      }
  }

  .why_choose_section {
      padding: 100px 0;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      position: relative;
      overflow: hidden;
  }

  .why_choose_container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
  }

  .why_choose_header {
      text-align: center;
      margin-bottom: 80px;
  }

  .why_choose_title {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(45deg, #d7b05d, #e2c279, #f59e0b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 20px;
      position: relative;
      display: inline-block;
  }

  .why_choose_title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 100px;
      height: 4px;
      background: linear-gradient(90deg, #e2c279, #f59e0b);
      border-radius: 2px;
  }

  .why_choose_subtitle {
      font-size: 1.3rem;
      color: #d1d5db;
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
  }

  .why_choose_grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
  }

  .why_choose_card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 40px 30px;
      text-align: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      overflow: hidden;
      z-index: 1;
  }

  .why_choose_card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.7s;
      z-index: -1;
  }

  .why_choose_card:hover::before {
      left: 100%;
  }

  .why_choose_card:hover {
      transform: translateY(-10px);
      border-color: rgba(79, 70, 229, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .why_choose_icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #4f46e5, #a855f7);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      transition: all 0.4s ease;
  }

  .why_choose_card:hover .why_choose_icon {
      transform: scale(1.1) rotate(5deg);
      background: linear-gradient(135deg, #a855f7, #f59e0b);
  }

  .why_choose_icon i {
      font-size: 2.5rem;
      color: white;
  }

  .why_choose_card_title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: white;
  }

  .why_choose_card_text {
      font-size: 1.1rem;
      color: #d1d5db;
      line-height: 1.6;
      margin-bottom: 20px;
  }

  .why_choose_feature_list {
      text-align: left;
      margin-top: 20px;
  }

  .why_choose_feature_item {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
      color: #d1d5db;
      font-size: 1rem;
  }

  .why_choose_feature_item i {
      color: #f59e0b;
      margin-right: 10px;
      font-size: 1.2rem;
  }

  .why_choose_highlight {
      background: linear-gradient(135deg, #4f46e5, #a855f7);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 600;
  }

  .why_choose_decoration {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
  }

  .why_choose_orb {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(79, 70, 229, 0.15), transparent);
      animation: why_choose_float 20s infinite linear;
      opacity: 0.7;
  }

  .why_choose_orb:nth-child(1) {
      width: 200px;
      height: 200px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .why_choose_orb:nth-child(2) {
      width: 150px;
      height: 150px;
      top: 70%;
      left: 80%;
      animation-delay: 5s;
  }

  .why_choose_orb:nth-child(3) {
      width: 100px;
      height: 100px;
      top: 40%;
      left: 90%;
      animation-delay: 10s;
  }

  .why_choose_orb:nth-child(4) {
      width: 120px;
      height: 120px;
      top: 80%;
      left: 10%;
      animation-delay: 15s;
  }

  @keyframes why_choose_float {
      0% {
          transform: translate(0, 0) rotate(0deg);
      }

      25% {
          transform: translate(50px, -50px) rotate(90deg);
      }

      50% {
          transform: translate(100px, 0) rotate(180deg);
      }

      75% {
          transform: translate(50px, 50px) rotate(270deg);
      }

      100% {
          transform: translate(0, 0) rotate(360deg);
      }
  }

  .why_choose_badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: linear-gradient(135deg, #f59e0b, #eab308);
      color: white;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      box-shadow: 0 5px 15px rgba(245, 158, 11, 0.4);
      animation: why_choose_pulse 2s infinite;
  }

  @keyframes why_choose_pulse {
      0% {
          transform: scale(1);
      }

      50% {
          transform: scale(1.05);
      }

      100% {
          transform: scale(1);
      }
  }

  @media (max-width: 992px) {
      .why_choose_title {
          font-size: 3rem;
      }

      .why_choose_grid {
          grid-template-columns: 1fr;
          max-width: 600px;
          margin: 0 auto;
      }
  }

  @media (max-width: 768px) {
      .why_choose_title {
          font-size: 2.5rem;
      }

      .why_choose_subtitle {
          font-size: 1.1rem;
      }

      .why_choose_card {
          padding: 30px 20px;
      }

      .why_choose_card_title {
          font-size: 1.4rem;
      }

      .why_choose_card_text {
          font-size: 1rem;
      }
  }

  .active_link {
      font-weight: 600;
  }

  .whatsapp_fixed {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 1000;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .whatsapp_button {
      position: relative;
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #25D366, #128C7E);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s;
      animation: whatsapp_glow 3s ease-in-out infinite;
  }

  .whatsapp_button:hover {
      transform: scale(1.15);
      box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
  }

  .whatsapp_icon {
      font-size: 2.8rem;
      color: #ffffff;
      transition: transform 0.4s ease;
  }

  .whatsapp_button:hover .whatsapp_icon {
      transform: rotate(360deg);
  }

  .whatsapp_tooltip {
      position: absolute;
      bottom: 90px;
      right: 0;
      background: linear-gradient(145deg, #1e293b, #2d3748);
      color: #ffffff;
      padding: 12px 24px;
      border-radius: 10px;
      font-size: 1rem;
      font-weight: 500;
      opacity: 0;
      transform: translateY(15px);
      transition: opacity 0.4s, transform 0.4s;
      pointer-events: none;
      white-space: nowrap;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }

  .whatsapp_button:hover .whatsapp_tooltip {
      opacity: 1;
      transform: translateY(0);
  }

  .whatsapp_tooltip::before {
      content: '';
      position: absolute;
      bottom: -8px;
      right: 25px;
      width: 0;
      height: 0;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      border-top: 8px solid #1e293b;
  }

  .whatsapp_orbits {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
  }

  .whatsapp_orbit {
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 2px solid rgba(59, 130, 246, 0.2);
      animation: whatsapp_orbit_spin 6s linear infinite;
  }

  .whatsapp_orbit:nth-child(2) {
      width: 120px;
      height: 120px;
      border-color: rgba(236, 72, 153, 0.2);
      animation-duration: 8s;
      animation-direction: reverse;
  }

  .whatsapp_orbit_particle {
      position: absolute;
      width: 8px;
      height: 8px;
      background: linear-gradient(135deg, #3b82f6, #ec4899);
      border-radius: 50%;
      top: -4px;
      left: 50%;
      transform: translateX(-50%);
  }

  @keyframes whatsapp_orbit_spin {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  @keyframes whatsapp_glow {

      0%,
      100% {
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
      }

      50% {
          box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
      }
  }

  @media (max-width: 768px) {
      .whatsapp_fixed {
          bottom: 30px;
          right: 30px;
          width: 70px;
          height: 70px;
      }

      .whatsapp_button {
          width: 60px;
          height: 60px;
      }

      .whatsapp_icon {
          font-size: 2.5rem;
      }

      .whatsapp_tooltip {
          font-size: 0.9rem;
          padding: 10px 20px;
      }

      .whatsapp_orbit {
          width: 90px;
          height: 90px;
      }

      .whatsapp_orbit:nth-child(2) {
          width: 110px;
          height: 110px;
      }
  }

  @media (max-width: 576px) {
      .whatsapp_fixed {
          bottom: 20px;
          right: 20px;
          width: 60px;
          height: 60px;
      }

      .whatsapp_button {
          width: 50px;
          height: 50px;
      }

      .whatsapp_icon {
          font-size: 2.2rem;
      }

      .whatsapp_tooltip {
          font-size: 0.8rem;
          padding: 8px 16px;
      }

      .whatsapp_orbit {
          width: 80px;
          height: 80px;
      }

      .whatsapp_orbit:nth-child(2) {
          width: 100px;
          height: 100px;
      }

      .whatsapp_orbit_particle {
          width: 6px;
          height: 6px;
      }
  }

  .contact_hero {
      position: relative;
      height: 80vh;
      background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 123, 255, 0.3)), url('images/contact_banner.jpg');
      background-size: cover;
      background-position: center;
      /* background-attachment: fixed; */
      display: flex;
      align-items: center;
      /* justify-content: center; */
      color: #fff;
      /* text-align: center; */
      overflow: hidden;
  }

  .contact_hero_glass {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.2);
      max-width: 600px;
      animation: slideIn 1.2s ease-in-out;
  }

  .contact_hero_heading {
      font-size: 4rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 3px;
      background: linear-gradient(45deg, #007bff, #00ddeb);
      -webkit-background-clip: text;
      background-clip: text;
      color: white;
      margin-bottom: 1.5rem;
      animation: fadeInDown 1s ease-in-out;
  }

  .contact_hero_subline {
      font-size: 1.6rem;
      font-weight: 300;
      line-height: 1.8;
      color: #e0e0e0;
      margin-bottom: 2.5rem;
      animation: fadeInUp 1s ease-in-out 0.3s;
      animation-fill-mode: backwards;
  }

  .contact_hero_btn {
      background: linear-gradient(45deg, #007bff, #00ddeb);
      border: none;
      padding: 15px 40px;
      font-size: 1.2rem;
      font-weight: 500;
      text-transform: uppercase;
      border-radius: 50px;
      color: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact_hero_btn:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 123, 255, 0.4);
  }

  .contact_hero_particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
  }

  /* Animations */
  @keyframes slideIn {
      0% {
          opacity: 0;
          transform: scale(0.8);
      }

      100% {
          opacity: 1;
          transform: scale(1);
      }
  }

  @keyframes fadeInDown {
      0% {
          opacity: 0;
          transform: translateY(-50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes fadeInUp {
      0% {
          opacity: 0;
          transform: translateY(50px);
      }

      100% {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Responsive Design */
  @media (max-width: 768px) {
      .contact_hero_heading {
          font-size: 2.5rem;
      }

      .contact_hero_subline {
          font-size: 1.3rem;
      }

      .contact_hero_glass {
          padding: 20px;
      }
  }

  @media (max-width: 576px) {
      .contact_hero_heading {
          font-size: 2rem;
      }

      .contact_hero_subline {
          font-size: 1.1rem;
      }

      .contact_hero_btn {
          padding: 10px 30px;
          font-size: 1rem;
      }
  }

  .qc_lb_form_container {
      background: linear-gradient(135deg, #0089fc, #00c9ef);
      padding: 60px;
      border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 650px;
      box-sizing: border-box;
      margin: 0 auto;
  }

  .qc_lb_form_title {
      color: #fff;
      font-size: 24px;
      margin-bottom: 25px;
      text-align: center;
      font-weight: 600;

  }

  .qc_lb_input,
  .qc_lb_select,
  .qc_lb_textarea {
      width: 80%;
      padding: 15px 20px;
      margin-bottom: 20px;
      border: none;
      border-radius: 50px;
      background-color: #fff;
      font-size: 16px;
      color: #333;
      box-sizing: border-box;
      outline: none;
  }

  .qc_lb_select {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%23999999" viewBox="0 0 24 24"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 20px center;
  }

  .qc_lb_textarea {
      border-radius: 20px;
      resize: vertical;
  }

  .qc_lb_input::placeholder,
  .qc_lb_textarea::placeholder,
  .qc_lb_select option {
      color: #a0a0a0;
  }

  .qc_lb_button {
      width: 50%;
      padding: 15px;
      border: none;
      border-radius: 50px;
      background: black;
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .qc_lb_button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 600px) {
      .qc_lb_form_container {
          padding: 30px;
          border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
      }
  }

  /* Top Section (Need Help?) */
  .qc_top_section {
      text-align: center;
      padding: 50px 0;
      width: 100%;
      max-width: 800px;
  }

  .qc_top_heading {
      font-size: 36px;
      color: #333;
      margin-bottom: 20px;
      font-weight: bold;
  }

  .qc_top_underline {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 30px;
  }

  .qc_top_line {
      display: block;
      height: 4px;
      width: 40px;
      border-radius: 2px;
      margin: 0 5px;
  }

  .qc_top_line.blue {
      background-color: #5088c7;
  }

  .qc_top_line.purple {
      background-color: #00caef;
  }

  .qc_top_description {
      font-size: 18px;
      color: #666;
      line-height: 1.6;
      max-width: 700px;
      margin: 0 auto;
  }

  .qc_sec {
      margin-top: 50px;
      margin-bottom: 50px;
  }

  .con_qc_sec_container {
      font-family: 'Poppins', sans-serif;
      color: white;
      line-height: 1.6;
      position: relative;
      padding: 5px 25px;
      max-width: 1200px;
      margin: 80px auto;
      background: linear-gradient(135deg, #1a2a6c, #093459, #0e6299);
      overflow: hidden;
      border-radius: 80px;
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
  }

  /* Animated background shapes */
  .con_qc_sec_background_shapes {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      /* Ensure shapes are behind content */
      pointer-events: none;
  }

  .con_qc_sec_shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.4;
      /* Increased opacity for better visibility */
      animation: con_qc_sec_float 15s infinite linear;
  }

  .con_qc_sec_shape_1 {
      width: 300px;
      height: 300px;
      background: linear-gradient(45deg, #ff6b6b, #f3a8f5);
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .con_qc_sec_shape_2 {
      width: 200px;
      height: 200px;
      background: linear-gradient(45deg, #4ecdc4, #44a08d);
      top: 60%;
      right: 10%;
      animation-delay: 3s;
      animation-duration: 20s;
  }

  .con_qc_sec_shape_3 {
      width: 150px;
      height: 150px;
      background: linear-gradient(45deg, #ffd93d, #ff9a3d);
      bottom: 10%;
      left: 20%;
      animation-delay: 6s;
      animation-duration: 25s;
  }

  .con_qc_sec_shape_4 {
      width: 250px;
      height: 250px;
      background: linear-gradient(45deg, #6a11cb, #2575fc);
      top: 20%;
      right: 20%;
      animation-delay: 9s;
      animation-duration: 18s;
  }

  .con_qc_sec_shape_5 {
      width: 180px;
      height: 180px;
      background: linear-gradient(45deg, #11998e, #38ef7d);
      bottom: 30%;
      right: 5%;
      animation-delay: 12s;
      animation-duration: 22s;
  }

  @keyframes con_qc_sec_float {
      0% {
          transform: translate(0, 0) rotate(0deg);
      }

      25% {
          transform: translate(20px, 40px) rotate(90deg);
      }

      50% {
          transform: translate(40px, 0) rotate(180deg);
      }

      75% {
          transform: translate(20px, -40px) rotate(270deg);
      }

      100% {
          transform: translate(0, 0) rotate(360deg);
      }
  }

  .con_qc_sec_hero {
      padding: 40px 0 40px;
      text-align: center;
      z-index: 1;
      /* Ensure hero is above shapes */
  }

  .con_qc_sec_hero h1 {
      font-size: 3.5rem;
      font-weight: 700;
      /* margin-bottom: 20px; */
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }

  .con_qc_sec_hero p {
      font-size: 1.3rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.9;
  }

  .con_qc_sec_content {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      margin-bottom: 30px;
      z-index: 1;
      /* Ensure content is above shapes */
  }

  .con_qc_sec_form_container {
      flex: 1;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .con_qc_sec_form_container::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: -1;
      animation: con_qc_sec_rotate 20s linear infinite;
  }

  @keyframes con_qc_sec_rotate {
      0% {
          transform: rotate(0deg);
      }

      100% {
          transform: rotate(360deg);
      }
  }

  .con_qc_sec_form_header {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
  }

  .con_qc_sec_form_header i {
      font-size: 28px;
      color: #fff;
      margin-right: 15px;
  }

  .con_qc_sec_form_header h2 {
      font-size: 28px;
      font-weight: 600;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      margin: 0;
  }

  .con_qc_sec_form_group {
      margin-bottom: 20px;
      position: relative;
  }

  .con_qc_sec_form_icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: #a0a0a0;
      z-index: 2;
  }

  .con_qc_sec_form_control {
      width: 100%;
      padding: 15px 20px 15px 50px;
      border: none;
      border-radius: 50px;
      background-color: rgba(255, 255, 255, 0.9);
      font-size: 16px;
      color: #333;
      outline: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .con_qc_sec_form_control:focus {
      background-color: #fff;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transform: translateY(-2px);
  }

  .con_qc_sec_form_textarea {
      border-radius: 20px;
      resize: vertical;
      min-height: 120px;
      padding-top: 15px;
  }

  .con_qc_sec_form_control::placeholder {
      color: #a0a0a0;
  }

  .con_qc_sec_submit_btn {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 50px;
      background: linear-gradient(90deg, #d8b15f, #c69c42);
      color: #fff;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 10px;
  }

  .con_qc_sec_submit_btn i {
      margin-left: 10px;
      transition: transform 0.3s ease;
  }

  .con_qc_sec_submit_btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  }

  .con_qc_sec_submit_btn:hover i {
      transform: translateX(5px);
  }

  .con_qc_sec_contact_info {
      flex: 1;
      min-width: 300px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.2);
  }

  .con_qc_sec_contact_info::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
      z-index: -1;
      animation: con_qc_sec_rotate 25s linear infinite reverse;
  }

  .con_qc_sec_contact_header {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
  }

  .con_qc_sec_contact_header i {
      font-size: 28px;
      color: #fff;
      margin-right: 15px;
  }

  .con_qc_sec_contact_header h2 {
      font-size: 28px;
      font-weight: 600;
      text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
      margin: 0;
  }

  .con_qc_sec_contact_item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 25px;
  }

  .con_qc_sec_contact_icon {
      background: rgba(255, 255, 255, 0.2);
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 15px;
      flex-shrink: 0;
  }

  .con_qc_sec_contact_details h3 {
      font-size: 1.2rem;
      margin-bottom: 5px;
      font-weight: 600;
  }

  .con_qc_sec_contact_details p {
      opacity: 0.9;
      margin-bottom: 0;
  }

  .con_qc_sec_social_links {
      display: flex;
      margin-top: 30px;
  }

  .con_qc_sec_social_link {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      margin-right: 10px;
      transition: all 0.3s;
      color: white;
      text-decoration: none;
  }

  .con_qc_sec_social_link:hover {
      background: #3498db;
      transform: translateY(-3px);
  }

  @media (max-width: 768px) {
      .con_qc_sec_hero {
          padding: 60px 0 30px;
      }

      .con_qc_sec_hero h1 {
          font-size: 2.5rem;
      }

      .con_qc_sec_hero p {
          font-size: 1.1rem;
      }

      .con_qc_sec_form_container,
      .con_qc_sec_contact_info {
          padding: 30px 20px;
      }

      .con_qc_sec_shape {
          display: none;
      }

      .con_qc_sec_shape_1,
      .con_qc_sec_shape_2 {
          display: block;
          width: 150px;
          height: 150px;
      }

      .con_qc_sec_container {
          margin: 20px 5px !important;
          border-radius: 20px;
      }
  }

  .ser_hero_main {
      /* min-height: 100vh; */
      background: linear-gradient(135deg, rgba(26, 42, 58, 0.85) 0%, rgba(44, 62, 80, 0.9) 100%),
          url('images/service_banner.jpg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
  }

  .ser_hero_container {
      position: relative;
      z-index: 10;
      padding-top: 80px;
      padding-bottom: 80px;
  }

  .ser_hero_content {
      color: #ffffff;
      max-width: 800px;
  }

  .ser_hero_badge {
      display: inline-block;
      background: rgba(52, 152, 219, 0.2);
      color: #3498db;
      padding: 8px 20px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      border: 1px solid rgba(52, 152, 219, 0.3);
      animation: pulse 2s infinite;
  }

  .ser_hero_title {
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      background: linear-gradient(to right, #ffffff, #3498db);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 0.5s;
  }

  .ser_hero_subtitle {
      font-size: 1.4rem;
      margin-bottom: 30px;
      color: #ecf0f1;
      font-weight: 300;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 0.8s;
  }

  .ser_hero_description {
      font-size: 1.1rem;
      line-height: 1.8;
      margin-bottom: 40px;
      color: #bdc3c7;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 1.1s;
  }

  .ser_hero_highlight {
      color: #eed59f;
      font-weight: 600;
  }

  .ser_hero_buttons {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 1.4s;
  }

  .ser_hero_button_primary {
      background: linear-gradient(to right, #3498db, #2ecc71);
      border: none;
      padding: 12px 35px;
      font-size: 1.1rem;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
  }

  .ser_hero_button_primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
  }

  .ser_hero_button_secondary {
      background: transparent;
      border: 2px solid #3498db;
      padding: 10px 30px;
      font-size: 1.1rem;
      border-radius: 50px;
      color: #3498db;
      font-weight: 600;
      transition: all 0.3s ease;
  }

  .ser_hero_button_secondary:hover {
      background: rgba(52, 152, 219, 0.1);
      transform: translateY(-3px);
  }

  .ser_hero_features {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 50px;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s forwards 1.7s;
  }

  .ser_hero_feature {
      display: flex;
      align-items: center;
      gap: 15px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      padding: 15px 20px;
      flex: 1;
      min-width: 200px;
      transition: transform 0.3s ease;
  }

  .ser_hero_feature:hover {
      transform: translateY(-5px);
  }

  .ser_hero_feature_icon {
      font-size: 1.8rem;
      color: #dbb35e;
  }

  .ser_hero_feature_text {
      font-size: 0.95rem;
      color: #ecf0f1;
      font-weight: 500;
  }

  .ser_hero_background_elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      overflow: hidden;
  }

  .ser_hero_circle {
      position: absolute;
      border-radius: 50%;
      background: rgba(52, 152, 219, 0.1);
      animation: float 6s ease-in-out infinite;
  }

  .ser_hero_circle_1 {
      width: 300px;
      height: 300px;
      top: 10%;
      right: 5%;
      animation-delay: 0s;
  }

  .ser_hero_circle_2 {
      width: 200px;
      height: 200px;
      bottom: 15%;
      left: 5%;
      animation-delay: 2s;
  }

  .ser_hero_circle_3 {
      width: 150px;
      height: 150px;
      top: 50%;
      left: 10%;
      animation-delay: 4s;
  }

  .ser_hero_particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(52, 152, 219, 0.6);
      border-radius: 50%;
      animation: particleMove 10s linear infinite;
  }

  @keyframes fadeInUp {
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes pulse {
      0% {
          box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
      }

      70% {
          box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
      }

      100% {
          box-shadow: 0 0 0 0 rgba(52, 152, 219, 0);
      }
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }

      100% {
          transform: translateY(0) rotate(360deg);
      }
  }

  @keyframes particleMove {
      0% {
          transform: translateY(0) translateX(0);
          opacity: 0;
      }

      10% {
          opacity: 1;
      }

      90% {
          opacity: 1;
      }

      100% {
          transform: translateY(-100vh) translateX(100px);
          opacity: 0;
      }
  }

  @media (max-width: 768px) {
      .ser_hero_title {
          font-size: 2.5rem;
      }

      .ser_hero_subtitle {
          font-size: 1.2rem;
      }

      .ser_hero_description {
          font-size: 1rem;
      }

      .ser_hero_buttons {
          justify-content: center;
      }

      .ser_hero_feature {
          min-width: 100%;
      }
  }

  .ser_intro_section {
      background-color: #ffffff;
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .ser_intro_container {
      position: relative;
      z-index: 10;
  }

  .ser_intro_header {
      text-align: center;
      margin-bottom: 70px;
  }

  .ser_intro_badge {
      display: inline-block;
      background: linear-gradient(to right, #304d95, #2e64cc);
      color: white;
      padding: 8px 25px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  }

  .ser_intro_title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
  }

  .ser_intro_title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #3498db, #2e64cc);
      border-radius: 2px;
  }

  .ser_intro_subtitle {
      font-size: 1.2rem;
      color: #7f8c8d;
      max-width: 600px;
      margin: 0 auto;
  }

  .ser_intro_content {
      display: flex;
      align-items: center;
      gap: 50px;
      margin-bottom: 70px;
  }

  .ser_intro_text {
      flex: 1;
  }

  .ser_intro_description {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #5a6c7d;
      margin-bottom: 30px;
  }

  .ser_intro_highlight {
      color: #1f4197;
      font-weight: 600;
  }

  .ser_intro_stats {
      display: flex;
      gap: 30px;
      margin-top: 40px;
  }

  .ser_intro_stat {
      text-align: center;
  }

  .ser_intro_stat_number {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
      line-height: 1;
  }

  .ser_intro_stat_text {
      font-size: 0.9rem;
      color: #7f8c8d;
      margin-top: 5px;
  }

  .ser_intro_image {
      flex: 1;
      position: relative;
  }

  .ser_intro_img_main {
      width: 100%;
      border-radius: 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      transition: transform 0.5s ease;
  }

  .ser_intro_image:hover .ser_intro_img_main {
      transform: translateY(-10px);
  }

  .ser_intro_img_badge {
      position: absolute;
      top: -20px;
      right: -20px;
      background: #e74c3c;
      color: white;
      padding: 15px;
      border-radius: 50%;
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
      animation: pulse 2s infinite;
  }

  .ser_intro_img_badge_number {
      font-size: 1.5rem;
      font-weight: 700;
      line-height: 1;
  }

  .ser_intro_img_badge_text {
      font-size: 0.7rem;
      line-height: 1;
  }

  .ser_intro_services {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
  }

  .ser_intro_service {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 30px;
      transition: all 0.3s ease;
      border-left: 4px solid #33529f;
      position: relative;
      overflow: hidden;
  }

  .ser_intro_service::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(to right, transparent, rgba(52, 152, 219, 0.1), transparent);
      transition: left 0.5s ease;
  }

  .ser_intro_service:hover::before {
      left: 100%;
  }

  .ser_intro_service:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }

  .ser_intro_service_icon {
      font-size: 2.5rem;
      color: #203979;
      margin-bottom: 20px;
  }

  .ser_intro_service_title {
      font-size: 1.3rem;
      font-weight: 700;
      color: #304d95;
      margin-bottom: 15px;
  }

  .ser_intro_service_text {
      font-size: 0.95rem;
      color: #5a6c7d;
      line-height: 1.6;
  }

  .ser_intro_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.05;
  }

  .ser_intro_shape {
      position: absolute;
      background: linear-gradient(135deg, #3498db, #2ecc71);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
  }

  .ser_intro_shape_1 {
      width: 200px;
      height: 200px;
      top: 10%;
      right: 5%;
      animation-delay: 0s;
  }

  .ser_intro_shape_2 {
      width: 150px;
      height: 150px;
      bottom: 15%;
      left: 5%;
      animation-delay: 2s;
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }

      100% {
          transform: translateY(0) rotate(360deg);
      }
  }

  @keyframes pulse {
      0% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
      }

      70% {
          transform: scale(1.05);
          box-shadow: 0 0 0 10px rgba(231, 76, 60, 0);
      }

      100% {
          transform: scale(1);
          box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
      }
  }

  @media (max-width: 992px) {
      .ser_intro_content {
          flex-direction: column;
          text-align: center;
      }

      .ser_intro_title::after {
          left: 50%;
          transform: translateX(-50%);
      }

      .ser_intro_stats {
          justify-content: center;
      }
  }

  @media (max-width: 768px) {
      .ser_intro_title {
          font-size: 2.2rem;
      }

      .ser_intro_description {
          font-size: 1rem;
      }

      .ser_intro_stats {
          flex-wrap: wrap;
      }
  }

  .ser_categories_section {
      background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
      padding: 100px 0;
      position: relative;
      overflow: hidden;
  }

  .ser_categories_container {
      position: relative;
      z-index: 10;
  }

  .ser_categories_header {
      text-align: center;
      margin-bottom: 70px;
  }

  .ser_categories_badge {
      display: inline-block;
      background: linear-gradient(to right, #304d95, #2e64cc);
      color: white;
      padding: 8px 25px;
      border-radius: 30px;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 20px;
      box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  }

  .ser_categories_title {
      font-size: 2.8rem;
      font-weight: 700;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
  }

  .ser_categories_title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(to right, #3498db, #2e64cc);
      border-radius: 2px;
  }

  .ser_categories_subtitle {
      font-size: 1.2rem;
      color: #7f8c8d;
      max-width: 600px;
      margin: 0 auto;
  }

  .ser_categories_tabs {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
      margin-bottom: 50px;
  }

  .ser_categories_tab {
      background: white;
      border: none;
      padding: 12px 25px;
      border-radius: 50px;
      font-weight: 600;
      color: #5a6c7d;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      display: flex;
      align-items: center;
      gap: 10px;
  }

  .ser_categories_tab.active {
      background: linear-gradient(to right, #3498db, #2e64cc);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 10px 20px rgba(52, 152, 219, 0.3);
  }

  .ser_categories_tab_icon {
      font-size: 1.2rem;
  }

  .ser_categories_content {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }

  .ser_categories_service {
      display: none;
      padding: 0;
  }

  .ser_categories_service.active {
      display: block;
      animation: fadeIn 0.5s ease;
  }

  .ser_categories_service_header {
      background: linear-gradient(to right, #304d95, #2e64cc);
      color: white;
      padding: 40px;
      position: relative;
      overflow: hidden;
  }

  .ser_categories_service_title {
      font-size: 2.2rem;
      font-weight: 700;
      margin-bottom: 10px;
  }

  .ser_categories_service_subtitle {
      font-size: 1.1rem;
      opacity: 0.9;
      margin-bottom: 20px;
  }

  .ser_categories_service_price {
      font-size: 1.5rem;
      font-weight: 600;
      background: rgba(255, 255, 255, 0.2);
      display: inline-block;
      padding: 8px 20px;
      border-radius: 30px;
      backdrop-filter: blur(10px);
  }

  .ser_categories_service_body {
      padding: 40px;
  }

  .ser_categories_service_description {
      font-size: 1.1rem;
      line-height: 1.8;
      color: #5a6c7d;
      margin-bottom: 30px;
  }

  .ser_categories_service_benefits {
      margin-bottom: 40px;
  }

  .ser_categories_service_benefits_title {
      font-size: 1.3rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 20px;
      position: relative;
      padding-left: 20px;
  }

  .ser_categories_service_benefits_title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 8px;
      height: 8px;
      background: #0d2664;
      border-radius: 50%;
  }

  .ser_categories_service_benefits_list {
      list-style: none;
      padding: 0;
  }

  .ser_categories_service_benefit {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      font-size: 1rem;
      color: #5a6c7d;
  }

  .ser_categories_service_benefit_icon {
      color: #113693;
      margin-right: 10px;
      font-size: 1.1rem;
  }

  .ser_categories_service_details {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 40px;
  }

  .ser_categories_service_detail {
      background: #f8f9fa;
      border-radius: 10px;
      padding: 25px;
      transition: all 0.3s ease;
  }

  .ser_categories_service_detail:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }

  .ser_categories_service_detail_icon {
      font-size: 2rem;
      color: #113693;
      margin-bottom: 15px;
  }

  .ser_categories_service_detail_title {
      font-size: 1.1rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 10px;
  }

  .ser_categories_service_detail_text {
      font-size: 0.9rem;
      color: #5a6c7d;
      line-height: 1.6;
  }

  .ser_categories_service_cta {
      text-align: center;
      margin-top: 40px;
      padding-top: 30px;
      border-top: 1px solid #e9ecef;
  }

  .ser_categories_service_button {
      background: linear-gradient(to right, #304d95, #2e64cc);
      border: none;
      padding: 12px 35px;
      font-size: 1.1rem;
      border-radius: 50px;
      color: white;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
  }

  .ser_categories_service_button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(52, 152, 219, 0.6);
      color: white;
  }

  .ser_categories_background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      opacity: 0.05;
  }

  .ser_categories_shape {
      position: absolute;
      background: linear-gradient(to right, #3498db, #2e64cc);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
  }

  .ser_categories_shape_1 {
      width: 200px;
      height: 200px;
      top: 10%;
      right: 5%;
      animation-delay: 0s;
  }

  .ser_categories_shape_2 {
      width: 150px;
      height: 150px;
      bottom: 15%;
      left: 5%;
      animation-delay: 2s;
  }

  @keyframes fadeIn {
      from {
          opacity: 0;
          transform: translateY(20px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }

      100% {
          transform: translateY(0) rotate(360deg);
      }
  }

  @media (max-width: 768px) {
      .ser_categories_title {
          font-size: 2.2rem;
      }

      .ser_categories_service_header {
          padding: 30px 20px;
      }

      .ser_categories_service_body {
          padding: 30px 20px;
      }

      .ser_categories_service_title {
          font-size: 1.8rem;
      }

      .ser_categories_tabs {
          flex-direction: column;
          align-items: center;
      }

      .ser_categories_tab {
          width: 100%;
          max-width: 300px;
          justify-content: center;
      }
  }

  .ser_process_container {
      max-width: 1400px;
      width: 100%;
      background: rgba(15, 23, 42, 0.7);
      border-radius: 24px;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
      overflow: hidden;
      padding: 60px 40px;
      position: relative;
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .ser_process_container::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #3b82f6, #10b981, #3b82f6, transparent);
  }

  .ser_process_header {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
  }

  .ser_process_title {
      font-size: 3.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #60a5fa 0%, #34d399 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
  }

  .ser_process_subtitle {
      font-size: 1.3rem;
      color: #94a3b8;
      max-width: 800px;
      margin: 0 auto;
      line-height: 1.7;
  }

  .ser_process_timeline {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
  }

  .ser_process_timeline::before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      width: 4px;
      background: linear-gradient(to bottom, #3b82f6, #10b981);
      transform: translateX(-50%);
      border-radius: 10px;
  }

  .ser_process_steps {
      display: flex;
      flex-direction: column;
      gap: 80px;
  }

  .ser_process_step {
      display: flex;
      align-items: center;
      position: relative;
      width: 100%;
  }

  .ser_process_step:nth-child(odd) {
      flex-direction: row;
  }

  .ser_process_step:nth-child(even) {
      flex-direction: row-reverse;
  }

  .ser_process_step_content {
      flex: 1;
      padding: 40px;
      background: rgba(30, 41, 59, 0.7);
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: all 0.4s ease;
      position: relative;
      overflow: hidden;
  }

  .ser_process_step_content::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
  }

  .ser_process_step_content:hover::before {
      opacity: 1;
  }

  .ser_process_step_content:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  }

  .ser_process_step_icon {
      width: 120px;
      height: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin: 0 40px;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      font-size: 2.8rem;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
      transition: all 0.4s ease;
  }

  .ser_process_step:nth-child(1) .ser_process_step_icon {
      background: linear-gradient(135deg, #3b82f6, #60a5fa);
      color: white;
  }

  .ser_process_step:nth-child(2) .ser_process_step_icon {
      background: linear-gradient(135deg, #10b981, #34d399);
      color: white;
  }

  .ser_process_step:nth-child(3) .ser_process_step_icon {
      background: linear-gradient(135deg, #f59e0b, #fbbf24);
      color: white;
  }

  .ser_process_step:nth-child(4) .ser_process_step_icon {
      background: linear-gradient(135deg, #8b5cf6, #a78bfa);
      color: white;
  }

  .ser_process_step_icon:hover {
      transform: scale(1.1) rotate(5deg);
  }

  .ser_process_step_title {
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 15px;
      color: #f1f5f9;
      position: relative;
      display: inline-block;
  }

  .ser_process_step_title::after {
      content: '';
      position: absolute;
      bottom: -8px;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #10b981);
      border-radius: 2px;
  }

  .ser_process_step_content p {
      font-size: 1.1rem;
      color: #cbd5e1;
      line-height: 1.7;
  }

  .ser_process_step_number {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: #0f172a;
      border: 3px solid;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.3rem;
      z-index: 3;
  }

  .ser_process_step:nth-child(1) .ser_process_step_number {
      border-color: #3b82f6;
      color: #3b82f6;
  }

  .ser_process_step:nth-child(2) .ser_process_step_number {
      border-color: #10b981;
      color: #10b981;
  }

  .ser_process_step:nth-child(3) .ser_process_step_number {
      border-color: #f59e0b;
      color: #f59e0b;
  }

  .ser_process_step:nth-child(4) .ser_process_step_number {
      border-color: #8b5cf6;
      color: #8b5cf6;
  }

  .ser_process_footer {
      text-align: center;
      margin-top: 80px;
      padding: 40px;
      background: rgba(30, 41, 59, 0.5);
      border-radius: 16px;
      border-left: 4px solid #3b82f6;
      position: relative;
      overflow: hidden;
  }

  .ser_process_footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
      transition: left 0.7s ease;
  }

  .ser_process_footer:hover::before {
      left: 100%;
  }

  .ser_process_footer_text {
      font-size: 1.3rem;
      color: #e2e8f0;
      font-weight: 500;
      position: relative;
      z-index: 1;
  }

  .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
  }

  .floating-element {
      position: absolute;
      background: rgba(59, 130, 246, 0.1);
      border-radius: 50%;
      animation: float 15s infinite linear;
  }

  .floating-element:nth-child(1) {
      width: 80px;
      height: 80px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
  }

  .floating-element:nth-child(2) {
      width: 120px;
      height: 120px;
      top: 70%;
      left: 80%;
      animation-delay: -5s;
  }

  .floating-element:nth-child(3) {
      width: 60px;
      height: 60px;
      top: 40%;
      left: 90%;
      animation-delay: -10s;
  }

  @keyframes float {
      0% {
          transform: translateY(0) rotate(0deg);
      }

      50% {
          transform: translateY(-20px) rotate(180deg);
      }

      100% {
          transform: translateY(0) rotate(360deg);
      }
  }

  @media (max-width: 1100px) {
      .ser_process_timeline::before {
          left: 90px;
      }

      .ser_process_step {
          flex-direction: row !important;
      }

      .ser_process_step_icon {
          margin: 0 30px 0 0;
      }

      .ser_process_step:nth-child(even) .ser_process_step_icon {
          margin: 0 0 0 30px;
      }

      .ser_process_step_number {
          left: 90px;
      }
  }

  @media (max-width: 768px) {
      .ser_process_container {
          padding: 40px 20px;
      }

      .ser_process_title {
          font-size: 2.5rem;
      }

      .ser_process_timeline::before {
          left: 40px;
      }

      .ser_process_step_icon {
          width: 80px;
          height: 80px;
          margin: 0 20px 0 0;
          font-size: 2rem;
      }

      .ser_process_step_content {
          padding: 25px;
      }

      .ser_process_step_title {
          font-size: 1.5rem;
      }

      .ser_process_step_number {
          width: 40px;
          height: 40px;
          left: 40px;
          font-size: 1.1rem;
      }
  }

  @media (max-width: 576px) {
      .ser_process_step {
          flex-direction: column !important;
          text-align: center;
      }

      .ser_process_step_icon {
          margin: 0 0 20px 0;
      }

      .ser_process_step_content {
          width: 100%;
      }

      .ser_process_timeline::before {
          display: none;
      }

      .ser_process_step_number {
          position: relative;
          left: auto;
          transform: none;
          margin-bottom: 20px;
      }
  }

  .ser_process_body {
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
      color: #e2e8f0;
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 40px 20px;
  }

  .igb_container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 15px;
  }

  .igb_row {
      margin-bottom: 30px;
  }

  .igb_image-container {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      margin-bottom: 20px;
  }

  .igb_image-container:hover {
      transform: translateY(-5px);
  }

  .igb_image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
  }

  .igb_content-box {
      background-color: #f8f9fa;
      border-radius: 8px;
      padding: 25px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      height: 100%;
  }



  @media (max-width: 768px) {
      .igb_image {
          height: 200px;
      }

      .igb_content-box {
          margin-top: 20px;
      }
  }

  .list_box{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }