  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


  * {
    box-sizing: border-box;
  }

  html {
    overflow-x: hidden;
  }

  body {
    margin: 0;
    padding: 0;
    font-family: "poppins", sans-serif !important;
    box-sizing: border-box !important;

  }

  a {
    text-decoration: none !important;
  }

  .container {
    max-width: 1160px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  /*------------scroll-annimination-------------*/
  [data-aos="custom-slide-left"] {
    opacity: 0;
    transform: translateX(-100vw);
    transition-property: transform, opacity;
  }

  [data-aos="custom-slide-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
  }

  [data-aos="custom-slide-right"] {
    opacity: 0;
    transform: translateX(100vw);
    transition-property: transform, opacity;
  }

  [data-aos="custom-slide-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
  }

  /*------------scroll-annimination end-------------*/
  /* -----------------------top header-------------------- */
  .top-header {
    background-color: #1a2636 !important;
    color: #adb6be;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    /* padding: 0px 20%; */
    font-size: 14px;
    height: 44px;

  }

  .top-header .left,
  .top-header .right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15.5px !important;
  }

  .top-header .left {
    gap: 8.5px !important;
    margin-left: 7.8px !important;
  }

  .top-header a {
    color: #adb6be !important;
    text-decoration: none;
  }


  .top-header .email i {
    margin-right: 5px !important;
    width: 14px !important;
    height: 14px !important;
    color: #adb6be !important;
  }

  .social-icon {
    display: flex;

    width: 150px;
    justify-content: end;
    gap: 17px;

  }

  .social-icon a {
    color: #adb6be !important;
    font-size: 15.8px;
    font-weight: 300;

  }

  .social-icon a i {

    line-height: 20px;


  }

  .top-header .social-icon a:hover {
    color: white !important;
  }

  .call-now {
    background-color: #0c4791 !important;
    color: #ffffff !important;

    border-radius: 4px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    height: 44px;
    cursor: pointer;
    width: 122.58px !important;
    text-align: center;

  }

  .call-now label {
    line-height: 10px !important;
    font-size: 14px;
    color: #ffffff;
    margin-top: -4px;
  }

  .call-now a {
    line-height: 2px !important;
    color: #ffffff !important;
  }

  .noc-status {
    display: flex;
    align-items: center;
    gap: 12px !important;
    color: white;
  }

  .noc-status .dot {
    height: 20px;
    width: 20px;
    background-color: #3BD671;
    border-radius: 50%;
    position: relative;
    animation: pulse 1.5s infinite;

  }

  @keyframes pulse {
    0% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 #3BD671;
    }

    70% {
      transform: scale(1);
      box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
      transform: scale(0.95);
      box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
  }

  /* -------------------------------top header End-------------------- */

  /* -------------------------------navbar---------------------------- */

  .navbar-nav .nav-link {
    color: #000000 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    font-family: "Poppins" !important;

    padding: 20px 0px 20px 22px !important;
    height: 100%;
  }

  .dropdown-menu {
    border-radius: 12px !important;
    padding: 0px !important;

    background-color: #ffffff !important;
    color: #000000 !important;
    font-size: 14px !important;
    overflow: hidden !important;
  }

  .navbar-nav .nav-link:hover {
    color: #0c4791 !important;
    font-family: "Poppins", sans-serif !important;
  }

  .dropdown-item:hover {
    background-color: #0c4791 !important;
    color: #ffffff !important;
    font-weight: 300 !important;
  }

  .sidebar-toggle {
    display: none;
  }

  .mobile-toggle-btn {
    display: inline-block;
    cursor: pointer;
    padding: 10px;
    z-index: 1100;


  }

  .nav-button-icon {
    width: 20px;
    height: 1px;
    background-color: #000;
    margin: 5px 0;
    border-radius: 1px;

  }


  .mobile-toggle-btn:hover {
    background-color: #0c4791;
    opacity: 1;
  }

  .mobile-toggle-btn:hover .nav-button-icon {
    background-color: #ffffff;

  }


  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 350px;
    height: 100vh;
    background: #f8f9fa;
    transform: translateX(-100%);
    transition: transform 0.3s ease 0.3s;
    z-index: 1050;
  }

  .sidebar-toggle:checked~.sidebar-overlay {
    transform: translateX(0);
    transition-delay: 0s;
  }

  .sidebar-toggle:checked~.sidebar {
    transform: translateX(0);
    transition-delay: 0.3s;
  }

  .sidebar-header {
    padding: 10px 20px;
    border-bottom: 1px solid #dee2e6;
    position: relative;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .sidebar-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #6c757d;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
  }

  .sidebar-close:hover {
    background-color: #e9ecef;
  }

  .sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .sidebar-nav li {
    border-bottom: 1px solid #e9ecef;
  }

  .dropdown-submenu::after {
    content: none !important;
  }





  .sidebar-nav a {
    display: block;
    padding: 15px 20px;
    color: #495057;
    text-decoration: none;
    transition: background-color 0.2s;
  }

  .sidebar-nav a:hover {
    background-color: #e9ecef;
    color: #495057;
  }

  .dropdown-submenu {
    display: block;
    padding: 12px 20px !important;
    cursor: pointer;
    color: #495057;
    font-family: "poppins" !important;
  }

  .dropdown-submenu:hover {
    background-color: #e9ecef;
  }


  .dropdown-submenu .dropdown-menu {
    position: static;
    float: none;
    width: 100%;
    margin-top: 0;
    border: none;
    box-shadow: none;
    background-color: #ffffff;
    font-family: "Poppins";
    display: none;
  }

  .dropdown-submenu .dropdown-item {
    padding: 10px 30px !important;
    font-size: 14px;
    font-family: "poppins" !important;
    letter-spacing: 0.2px !important;
  }

  .dropdown-item {
    padding: 12px 16px !important;
    font-size: 14px !important;
    font-family: "poppins";
    font-weight: 300 !important;
  }

  .dropdown-toggle-input {
    display: none;
  }

  .dropdown-toggle::after {
    display: none !important;
  }



  .sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease 0s;
    /* default: no delay */
    transform: translateX(-100%);
    z-index: 1040;
  }


  @media (min-width: 992px) {
    .mobile-toggle-btn {
      display: none;
    }

    .sidebar {
      display: none;
    }

    .sidebar-overlay {
      display: none;
    }

    /* Desktop hover dropdown */
    .dropdown:hover>.dropdown-menu {
      display: block !important;
    }

    .dropdown-menu {
      margin-top: 0;
      top: 100%;
    }

    .dropdown {
      position: relative;
    }

    .dropdown-submenu1 {
      position: relative;
    }

    .dropdown-submenu1:hover>.dropdown-menu1 {
      display: block;
    }


    .dropdown-menu1 {
      position: absolute;
      top: 0;
      left: 100%;
      display: none;
      background-color: #ffffff;
      border-radius: 10px;
      padding: 0;
      min-width: 220px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      list-style: none;
    }

    .dropdown-menu1 .dropdown-item1 {
      padding: 10px 20px;
      font-size: 14px;
      font-family: "Poppins", sans-serif;
      color: #000;
      text-decoration: none;
      display: block;
      white-space: nowrap;
      list-style: none;

      cursor: pointer;
      color: #495057;
      font-family: "poppins" !important;
    }

    .dropdown-menu1 .dropdown-item1:hover {
      background-color: #0c4791;
      color: #fff;
    }

  }

  /* Mobile view - hide normal collapse, show sidebar toggle */
  @media (max-width: 991.98px) {
    .navbar-collapse {
      display: none !important;
    }

    .mobile-toggle-btn {
      display: block;
      background: none;
      border: none;
      font-size: 18px;
      color: #000000;
      font-weight: 300;
      background-color: transparent;
      padding: 0px 16px;
      border: 1px solid #bacee2;
      border-radius: 4px;
      opacity: 0.5;
    }

  }

  .navbar {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #b4edf194 !important;
    color: #000000 !important;
    padding: 0px !important;
    height: 70px !important;
  }

  .navbar-brand img {
    height: 48.75px;
    width: 150px;
    margin-left: 2.5px;
  }

  .dropdown-toggle::after {
    margin-left: 4px !important;
  }

  .nav-arrow {
    font-size: 12px !important;


    color: #000000;
    margin-left: 1px;
    opacity: 0.8;
  }

  .submenu-arrow {
    font-size: 12px !important;


    color: #000000;
    margin-right: 5px;
    opacity: 0.8;
    margin-top: 4px;
    float: right;
  }

  .nav-arrow:hover {
    color: #0c4791;
  }

  .navbar,
  .navbar .container,
  .dropdown,
  .dropdown-menu,
  .dropdown-submenu1 {
    overflow: visible !important;
  }

  /* -------------------------------navbar End---------------------------- */

  /* -------------------------------navbar End---------------------------- */

  /*-----------------------------footer------------------------------------*/
  .footer-container {
    position: relative;
    background-image: url("/cloud-patron/images/background/Footer-Background-Image.png");
    background-color: #033a7e;
    background-size: cover;
    font-family: 'poppins';
    background-position: center;


    color: #fff;
    z-index: 0;
    width: 100%;
    min-height: 462.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
    height: 462px;
  }

  .footer-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #033a7e;
    opacity: 0.6;
    z-index: 1;
  }

  .footer-container>* {
    position: relative;
    z-index: 2;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 26px;
    max-width: 277px;
    font-size: 16px;

  }

  .footer-Quick-links {
    display: flex;
    flex-direction: column;
    width: 230.8px;
    margin-top: 20px;
    padding-left: 5px;
  }

  .footer-scanningcontainer {
    display: flex;
    flex-direction: column;
    width: 242.8px;
    margin-top: 16px;
  }

  .footer-servive-container {
    display: flex;
    flex-direction: column;
    max-width: 322px;
    margin-top: 16px;
  }

  .footer-container h5 {
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 24px;
    padding-top: 5px;
  }

  .footer-header-title {
    font-weight: 500 !important;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: 'poppins';
  }

  .footer-container ul {
    list-style: none;
    padding-left: 0;
  }

  .footer-container ul li {
    line-height: 26.41px;

  }

  .footer-container ul li a {
    color: #ffffff;
    text-decoration: none;

  }

  .footer-title {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    font-family: 'poppins';

  }

  .footer-title:hover {
    text-decoration: none;
  }

  .footer-container ul li a:hover {
    color: #05ADED;

  }

  .footer-container .highlight {
    font-weight: 600;
    color: #fff;
  }

  .footer-container .logo img {
    width: 190px;
    height: 61.75px;
    margin-bottom: 15px;
    color: #fff;
  }

  .footer-inner-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-left: 20px !important;
    gap: 24px;
    padding-top: 10px !important;

  }


  .footer-icon-title {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    line-height: 1.7;

  }

  .footer-icon-title i {
    margin-top: 5px;
    font-size: 16px;
  }

  .footer-icon-title label {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    font-family: 'poppins';
  }

  .footer-icon-title :hover {
    color: #05ADED;
  }

  .bottom-bar {

    text-align: center;
    background-color: #0c4791;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #ffffff;
    font-weight: 400;
    height: 46.41px;
  }

  .bottom-bar p {
    line-height: 24px;
    margin: 0px !important;
  }

  .service-footer-title {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 16px;
    font-family: 'poppins';
    font-weight: 300;
    line-height: 26.41px;
    ;

  }

  .service-footer-title label {
    margin: 0px !important;
  }

  .footer-container h5 li :hover {
    color: #0274be;
    text-decoration: none;
    cursor: pointer;
  }

  .footer-icon {
    font-size: 15px;
    font-weight: 600;
    line-height: 5px;
    letter-spacing: -4px;
    margin-right: 8px;
  }

  @media (max-width: 786px) {
    .footer-container {
      height: fit-content;

    }

    .footer-inner-container {
      flex-direction: column;
    }
  }

  /*-----------------------------footer end------------------------------------*/

  /* ================================================================================
                                   SECTION: Home Section
   ================================================================================== */

  /*-----------------------------Home-Banner------------------------------------*/
  .bannerSection {
    background-image: url("/cloud-patron/images/background/ai2.png");
    padding: 60px 0px;
    min-height: 524px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .hero {
    display: flex;
    justify-content: space-between;
    align-items: center;

    box-sizing: border-box;
    gap: 30px;

    overflow: visible;

  }

  .hero-text h1 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
  }

  .hero-text p {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
  }

  .subtitle {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 30px;

  }

  .subtitle p {
    font: 16px "Poppins", sans-serif;
  }

  .subtitle label {
    width: 14px !important;
    height: 2px !important;
    background-color: #ffffff;
    margin-top: -7px;

  }

  .description {
    font: 16px "Poppins", sans-serif;
    line-height: 1.7;
  }



  .btn {
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    display: inline-block;
    width: 150px;
    height: 46px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
    padding: 10px !important;

  }

  .btn-primary {
    background-image: linear-gradient(to right, #00bfff, #0c4791);
    color: white;
  }

  .btn-primary:hover {
    background-image: linear-gradient(to right, #005a9c, #00bfff);
  }

  /* Image Section */

  .hero-text {
    flex: 1;
    padding: 12px;
    height: 404px;
    max-width: 570px;
    align-items: flex-start;
    justify-content: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .hero-image {

    display: flex;
    justify-content: center;
  }

  .hero-image img {
    width: 440px;
    height: 384px;
  }

  @media (max-width: 992px) {
    .hero {
      flex-direction: column;
      text-align: center;
      padding: 40px 5%;
      gap: 20px;
    }

    .hero-text {
      height: auto;
      align-items: center;
      max-width: 100%;
    }

    .hero-text h1 {
      font-size: 1.8rem;
    }

    .description {
      font-size: 0.95rem;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      max-width: 380px;
    }
  }

  @media (max-width: 768px) {
    .hero-text h1 {
      font-size: 1.6rem;
    }

    .description {
      font-size: 0.9rem;
    }

    .btn {
      width: 140px;
      height: 42px;
      font-size: 0.9rem;
    }

    .hero-image img {
      max-width: 320px;
    }
  }

  @media (max-width: 480px) {
    .hero-text h1 {
      font-size: 1.4rem;
    }

    .bannerSection {
      padding-top: 0px;
    }

    .subtitle {
      justify-content: left;
    }

    .subtitle p {
      text-align: left;
    }

    .description {
      font-size: 0.85rem;
      text-align: left;
    }

    .btn {
      width: 130px;
      height: 40px;
      font-size: 0.85rem;
    }

    .hero-image img {
      max-width: 260px;
    }
  }

  /*-----------------------------Home-Banner End------------------------------------*/

  /*-----------------------------Home-Our-client------------------------------------*/


  .clients-section {
    padding-top: 40px;

  }

  .our-client-container {
    max-width: 900px;
    margin: auto;
  }

  .section-titles {
    color: #0c4791;
    font-size: 2rem;
    font-weight: 600;
    text-align: center;


  }

  .carousel-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    height: fit-content;
    border-radius: 20px;
  }

  .client-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 10px;
    min-height: 120px;
  }

  .client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .client-logo img {
    max-width: 150px;
    max-height: 57px;
    object-fit: contain;
  }






  .client-carousel-indicators {
    /* position: static !important; */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0px !important;
    margin-top: -20px !important;
    height: 26.6px;
  }

  .client-carousel-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: none;
    transition: background-color 0.3s ease;
    opacity: 1;
  }

  .client-carousel-indicators .active {
    background-color: #3b82f6;
  }


  .client-carousel-button {
    width: 7px !important;
    height: 7px !important;
    padding: 0px;
    background-color: #adb6be;
  }



  @media (max-width: 768px) {
    .section-titles {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .client-row {
      gap: 30px;
      flex-wrap: wrap;
    }

    .client-logo {
      width: 120px;
      height: 60px;
    }
  }

  @media (max-width: 576px) {
    .client-row {
      gap: 20px;
    }

    .client-logo {
      width: 100px;
      height: 50px;
    }
  }









  /*-----------------------------Home-Our-client END------------------------------------*/

  /*-----------------------------Home-About Section------------------------------------*/

  .about-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    font-family: "Poppins", sans-serif;
    padding: 80px 0px 0px;
    margin: 0 auto;
    align-items: center;
    max-width: 1000px;
  }

  .about-card {
    background: white;
    border-radius: 15px;
    padding: 25px 30px;
    max-width: 450px;
    min-height: 346px;

    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  }

  .about-card h2 {
    color: #0c4791;
    margin-bottom: 15px;
    font-size: 30px;
    font-weight: 500;
  }

  .about-card p {
    color: #7a7a7a;
    margin-bottom: 20px;
    line-height: 1.6;
    font-family: "poppins" sans-serif;
    font-size: 16px;
  }

  .about-card button {
    background: linear-gradient(to right, #00bfff, #0c4791);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
  }

  .about-card button:hover {
    background: linear-gradient(to right, #0c4791, #00bfff);
  }

  .about-points {
    padding: 20px;
    width: fit-content;
  }

  .point {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 400;
    font-family: "poppins" sans-serif;
    color: #54595F;
  }

  .point i {
    color: #0c4791;
    font-size: 24px;

    margin-right: 10px;
  }

  .point strong {
    font-weight: 600;
  }

  /* Animations */

  /* ✅ Responsive Design */
  @media (max-width: 992px) {
    .about-container {
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    .about-card {
      width: 90%;
    }

    .about-points {
      width: 90%;
    }
  }

  @media (max-width: 576px) {
    .about-card h3 {
      font-size: 24px;
    }

    .about-card p,
    .point {
      font-size: 15px;
    }

    .about-card {
      padding: 20px;
    }
  }

  /*-----------------------------Home-About Section End------------------------------------*/

  /*-----------------------------Home-differentiators Section------------------------------------*/

  .differentiators {
    position: relative;
    background-image: url("/cloud-patron/images/background/tech-bg.png");
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    color: white;
    z-index: 1;
    min-height: 428.28px;
  }

  .differentiators::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0c4791;
    opacity: 0.6;
    z-index: 1;
  }

  .differentiators>* {
    position: relative;
    z-index: 2;
  }

  .differentiators_container {
    margin: auto;
    text-align: center;
  }

  .animate-bottom {
    opacity: 0;
  }

  .differentiators h3 {
    font-family: 32px "Poppins", sans-serif;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .differentiators p {
    font-size: 1rem;
    font-weight: 500;
    font-family: "poppins" sans-serif;

    max-width: 800px;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
  }

  .differentiators_cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;

  }


  .differentiators_card {
    background: white;
    color: #333;
    border-radius: 12px;
    padding: 10px 20px;
    width: 366px;
    display: flex;

    gap: 16px;
    align-items: center;
    max-width: 366px;
    min-height: 146px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .differentiators_card img {
    width: 70px;
    height: 70px;
  }

  .differentiators_card div {
    display: flex;
    flex-direction: column;

    align-items: flex-start;
    justify-content: center;
    gap: 2px;
  }

  .differentiators_card div label {
    color: #1e293b;
    line-height: 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: "poppins" sans-serif;
    margin: 0px;
    text-align: left;
  }

  .differentiators_card div p {
    color: #7a7a7a;

    font-size: 14px;
    font-weight: 400;
    text-align: left;

    margin: 0px !important;
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .differentiators_cards {
      flex-direction: column;
      align-items: center;
    }

    .differentiators_card {
      width: 90%;
    }

    .differentiators h3 {
      font-size: 2rem;
    }
  }

  /*-----------------------------Home-differentiators Section END------------------------------------*/

  /*-----------------------------Home-Service Section ------------------------------------*/

  .service_header {
    text-align: center;
    font-size: 32px;
    color: #0c4791;
    margin: 60px 0px;
    font-weight: 600;
  }

  .grid1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: space-around;
    max-width: 900px;
    margin: auto;
    margin-bottom: 80px;

  }

  .service_card {
    position: relative;
    background: url("/cloud-patron/images/background/tech-bg.png") no-repeat center center / cover;
    color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    background-position: center;

    justify-content: center;
    flex-direction: column;

    text-align: center;
    transform: translateY(-12px);
    border: 8px solid white;
    width: 300px;
    height: 300px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .service_card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #25386e;
    opacity: 0.7;
    z-index: 1;
  }

  .service_card img {
    width: 100px;

    position: relative;
    z-index: 2;
    border: 2px dashed #ffffff;
    padding: 20px;
    border-radius: 40px;
  }

  .service_card h4 {
    font-size: 20px;
    font-weight: 600;
    position: relative;
    z-index: 2;
    margin-top: 12px;
  }

  .service_card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.25);
  }

  /* Hover overlay info */
  .info-box1 {
    position: absolute;
    inset: 0;
    background: white;
    color: #7a7a7a;
    padding: 20px;
    border-radius: 0px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.4s ease, transform 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
  }

  .service_card:hover .info-box1 {
    opacity: 1;
    transform: translateY(0);
  }

  .info-box1 p {

    text-align: center;
    font-size: 14px;
    line-height: 30px;
    margin-bottom: 12px;
    font-family: 'poppins';
    font-weight: 500;
  }

  .info-box1 button {
    margin-top: 0;
    padding: 8px 20px;
    background-color: #0c4791;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .grid1 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .grid1 {
      grid-template-columns: 1fr;
    }
  }

  /*-----------------------------Home-Service Section END ------------------------------------*/

  /*-----------------------------Home-booking consultant Section ------------------------------------*/

  /*booking consultant*/
  .consultation-section {
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 0px;

    background: #a48cff;
    background-image: url('/cloud-patron/images/background/trial-bg.png');
    color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    flex-wrap: wrap;
    gap: 40px;
  }

  .consultation-img {
    flex: 1 1 400px;

    max-width: 500px;
  }

  .consultation-img img {
    width: 100%;
    height: auto;
  }



  .consultation-content h4 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'poppins';

  }

  .consultation-content p {
    font-size: 14px;
    font-weight: 400;
    font-family: "poppins" sans-serif;
    margin-bottom: 25px;
    line-height: 25px;
  }

  .consultation-content button {
    padding: 12px 25px;
    font-size: 16px;
    background-color: #fff;
    color: #0c4791;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .consultation-content button:hover {
    background-color: #0c4791;
    color: #fff;
  }

  .consultation-img:hover img {
    animation: bounceImage 0.6s ease infinite alternate;
  }

  @keyframes bounceImage {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(-10px);
    }
  }

  @media (max-width: 768px) {
    .consultation-section {
      flex-direction: column;
      text-align: center;
    }

    .consultation-content h3 {
      font-size: 24px;
    }

    .consultation-content p {
      font-size: 16px;
    }
  }

  /*-----------------------------Home-booking consultant Section END ------------------------------------*/

  /*compilance certificate*/
  /*-----------------------------Home-Compliance and Certifications Section ------------------------------------*/
  .compliance-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0px;
    gap: 50px;
    flex-wrap: wrap;
  }

  .compliance-img {
    flex: 1;
    text-align: center;
  }

  .compliance-img img {
    width: 100%;
    max-width: 473px;
    max-height: 461px;

  }

  .compliance-img:hover img {
    animation: bounceImage 0.6s ease infinite alternate;
  }

  .compliance-content {
    flex: 1;
  }

  .compliance-content h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1e293b;
    font-weight: 600;
  }

  .compliance-content p {
    color: #7a7a7a;

    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'poppins';
  }

  .compliance-content button {
    padding: 10px 25px;
    background: linear-gradient(to right, #00bfff, #004aad);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }

  .compliance-content button:hover {
    background: linear-gradient(to right, #004aad, #00bfff);
  }

  /* Animations */

  @media (max-width: 768px) {
    .compliance-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }

    .compliance-content button {
      margin-top: 20px;
    }
  }

  /*-----------------------------Home-Compliance and Certifications Section END------------------------------------*/

  /*-----------------------------Home-Comprehensive Security Scanning------------------------------------*/

  .service_container1 {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
    margin: 60px 0px 100px;
  }

  @media (max-width: 768px) {
    .service_container1 {
      flex-direction: column;
      text-align: center;
    }
  }

  .service_content {
    flex: 1;
    min-width: 320px;

    text-align: left;
  }

  .service_content h3 {
    font-size: 32px;
    font-weight: 600;
    font-family: "poppins" sans-serif;
    color: #1e293b;
    margin-bottom: 20px;

  }

  .para {
    color: #7a7a7a;
    display: flex;
    font-size: 16px;
    font-family: "poppins" sans-serif;
    font-weight: 400;
    margin-bottom: 20px;

    text-align: left;
  }

  .service_content .btn {
    background-image: linear-gradient(to right, #00bfff, #005a9c);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
  }

  .service_content .btn:hover {
    background-image: linear-gradient(to right, #005a9c, #00bfff);
  }

  .image {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
  }

  .image img {
    max-width: 90%;
    height: auto;
  }

  .image:hover img {
    transform: scale(1.03) translateY(-5px);
  }

  @media (max-width: 768px) {
    .image {
      margin-top: 30px;
    }
  }

  /*-----------------------------Home-Comprehensive Security Scanning END------------------------------------*/

  /*-----------------------------Home-remote staffing------------------------------------*/

  /*remote staffing it resource*/
  .remote-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 20px;
  }

  .remote-img {
    flex: 1;

    opacity: 0;
  }

  .remote-img img {
    width: 100%;
    max-width: 500px;
    max-height: 350px;
  }

  .remote-img:hover img {
    animation: bounceImage 0.6s ease infinite alternate;
  }

  .remote-content {
    flex: 1;
  }

  .remote-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1d1d1d;
  }

  .remote-content p {
    color: #7a7a7a;

    margin-bottom: 20px;
    font-family: "poppins" sans-serif !important;
    font-weight: 400;
    font-size: 16px;
  }

  .remote-content button {
    padding: 10px 25px;
    background: linear-gradient(to right, #00bfff, #004aad);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
  }

  .remote-content button:hover {
    background: linear-gradient(to right, #004aad, #00bfff);
  }

  @media (max-width: 768px) {
    .remote-section {
      flex-direction: column;
      text-align: center;
      padding: 40px 20px;
    }

    .remote-content button {
      margin-top: 20px;
    }
  }

  /*-----------------------------Home-remote staffing END------------------------------------*/

  /*-----------------------------HOME our successstrory------------------------------------*/
  /*our successstrory*/
  .success-section {
    position: relative;
    background-image: url("/cloud-patron/images/background/geometric-1732847_1920.jpg");
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .success-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #0c4791;
    opacity: 0.5;
    z-index: 1;
  }

  .success-section>* {
    position: relative;
    z-index: 2;
  }

  .success-section.scrolled {
    transform: scale(1.1);
  }

  .success-details i.fa-check {
    color: #05ADED;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.5rem;
  }


  .success-title {
    font-size: 32px;
    font-weight: 600;

    color: #F9F8FE;
    text-align: center;

  }

  .success-main-container {
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
    align-items: center;

  }

  .success-details {
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #ffffff;
    font-size: 1.1rem;
    max-width: 500px;

  }

  .sucess-left-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .sucess-left-container div {
    font-size: 16px;
    font-weight: 400;
    font-family: 'poppins';
    color: #F9F8FE;

  }

  .sucess-left-container span {
    margin-right: 10px;
    font-size: 1rem;
    font-weight: 800;
    color: #2eb9f1;
  }

  .success_cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 550px;


  }


  .success-card-blue-card {
    color: white;
    border-radius: 12px;
    padding: 12px 16px;
    height: 156px;
    width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #05ADED;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  }

  .success-card-white-card {

    border-radius: 12px;
    padding: 12px 16px;
    height: 156px;
    width: 230px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background-color: #FFFFFF;
    color: #0C4791;
  }



  .success-card-white-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 3rem;
    margin: 0px;
  }

  .success-card-white-card p {
    font-size: 18px;
    font-weight: 400;
  }

  .success-card-blue-card h3 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 4rem;
    margin: 0px;

  }

  .success-card-blue-card p {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-align: left;
  }




  @media (max-width: 600px) {
    .success_cards-container {
      grid-template-columns: 1fr;
    }

    .success-card-blue-card {
      width: 100%;
    }

    .success-card-white-card {
      width: 100%;
    }
  }

  /*-----------------------------Home our successstrory END------------------------------------*/

  /*-----------------------------Home consulting services ------------------------------------*/

  .consulting-service {
    text-align: center;

    margin: 80px auto;
  }

  .container-900 {
    max-width: 900px;
    text-align: center;
    margin: auto;
  }

  .consulting-service-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0c4791;
    margin-bottom: 4rem;
    font-family: "Poppins", sans-serif;
  }

  /* Grid Card Style */
  .service-card {
    padding: 20px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Inner animated content */
  .service-content {
    padding: 15px;
    transition: transform 0.3s ease;
    font-family: "poppins" sans-serif;
  }

  .service-content:hover {
    transform: scale(1.05);
  }

  .service-content img {
    max-width: 50px;
    margin-bottom: 15px;
  }

  .service-content h5 {
    color: #0c4791;
    font-weight: 600;
    font-size: 20px;
  }

  .service-content p {
    font-family: "Poppins", Sans-serif;
    color: #7a7a7a;
    font-weight: 400;
    line-height: 1.4em;
    font-size: 14px;
  }

  .service-card {
    border: none;
  }

  @media (min-width: 768px) {

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(4),
    .service-card:nth-child(5) {
      border-right: 5px dashed #e8eff7;
    }

    .service-card:nth-child(1),
    .service-card:nth-child(2),
    .service-card:nth-child(3) {
      border-bottom: 5px dashed #e8eff7;
    }
  }

  @media (max-width: 767px) {
    .service-card {
      border-bottom: 5px dashed #e8eff7;
    }

    /* Remove last card's bottom border */
    .service-card:last-child {
      border-bottom: none;
    }
  }

  /*-----------------------------Home consulting services END ------------------------------------*/

  /*-----------------------------Home Recent blog  ------------------------------------*/

  .blog_maincontainer {
    background-color: #f7f3fc;
    padding: 80px 0px;
  }

  .blog-title {
    font-weight: 600;
    color: #0c4791;

    margin-bottom: 30px;
  }

  .blog-container {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 10px;
  }

  .blog-container::-webkit-scrollbar {
    height: 8px;
  }

  .blog strong {
    color: #7a7a7a;
  }

  .blog-container::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
  }

  .card-blog {
    width: 260px;
    height: 300px;
    border: none;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
  }

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

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

  .card-text-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: white;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  }

  .view-all-btn {
    background-image: linear-gradient(to right, #00bfff, #005a9c);
    color: white;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
    transition: 0.3s ease;
  }

  .view-all-btn:hover {
    background-image: linear-gradient(to right, #005a9c, #00bfff);
    color: white;
  }

  /*-----------------------------Home Recent blog End  ------------------------------------*/

  /*-----------------------------Home  Testimonial client  ------------------------------------*/


  .testimonial-maincontainer {
    padding: 80px 0px;
    background-color: #f7f3fc;

  }

  .testimonial-section {
    display: flex;

    gap: 40px;

    max-width: 1200px !important;
    margin: auto;
    justify-content: flex-start;
    height: fit-content;
  }

  .testimonial-left {
    background: #0C4791;
    color: white;
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    max-width: 340px;
    min-width: 280px;
    border-radius: 0px 40px;
    position: relative;
    overflow: hidden;
  }


  #testimonialCarousel {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }

  .testimonial-left h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .testimonial-left p {
    font-size: 16px;
    font-weight: 400;


    position: relative;

  }

  .testimonial-right {
    flex: 1 !important;
    max-width: 800px !important;
    height: 350px;
    overflow: hidden;

  }

  /* Override Bootstrap's default carousel transitions */
  .carousel-item {
    transition: transform 0.8s ease-in-out !important;
  }

  .carousel-item-next:not(.carousel-item-start) {
    transform: translateX(100%) !important;
  }

  .carousel-item-prev:not(.carousel-item-end) {
    transform: translateX(-100%) !important;
  }

  .carousel-item-next.carousel-item-start,
  .carousel-item-prev.carousel-item-end,
  .carousel-item.active {
    transform: translateX(0) !important;
  }

  .active.carousel-item-start {
    transform: translateX(-100%) !important;
  }

  .active.carousel-item-end {
    transform: translateX(100%) !important;
  }

  .carousel-inner {


    overflow: hidden;
  }

  .testimonial-slide {
    display: flex;
    gap: 40px;
    align-items: stretch;
  }

  .testimonial-card {
    flex: 1;

    border-radius: 20px;


    display: flex;
    flex-direction: column;
    position: relative;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #1E293B;
    margin-bottom: 20px;
    margin-right: 22px;
    font-weight: 400;
    font-style: italic;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto;
  }

  .testimonial-author img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #05ADED;
  }

  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e5e7eb;
  }

  .author-info {
    flex: 1;
  }

  .author-name {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 4px 0;
  }

  .author-title {
    font-size: 14px;
    color: #1e3a8a;
    margin: 0;
    font-weight: 500;
  }

  /* Custom carousel indicators */
  .carousel-indicators {
    position: static;
    margin: 20px 0 0 0;
    justify-content: center;
  }

  .testimonialCarousel-button {
    width: 10px !important;
    height: 10px !important;
    padding: 0px;
    border-radius: 50%;
    margin: 0px 10px 0px 0px;
    background-color: #0c4791;
    border: none;
    outline: none;
  }

  .carousel-indicators .active {
    background-color: #05ADED;

  }

  /* Responsive design */
  @media (max-width: 1024px) {
    .testimonial-section {
      flex-direction: column;
      gap: 40px;

    }

    .testimonial-left {
      max-width: 100%;
      min-width: auto;
      text-align: center;
    }

    .testimonial-slide {
      flex-direction: column;
      gap: 20px;
    }
  }

  @media (max-width: 768px) {
    .testimonial-left h2 {
      font-size: 32px;
    }

    .testimonial-card {
      padding: 30px 25px;
    }

    .testimonial-section {
      padding: 30px 15px;
    }
  }

  /*-----------------------------Home  Testimonial client End ------------------------------------*/

  /*===============================================Home Section END===========================================*/




  /* ================================================================================
                                   SECTION: About Section
   ================================================================================== */


  /*about us section*/
  .about-us-section {
    background-image: url("/cloud-patron/images/background/489.jpg");
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    background-color: #0c4791;
    background-size: cover;
    position: relative;
    background-position: center;
    color: #FFFFFF !important;
  }

  .about-us-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0c4791;
    opacity: 0.6;
    z-index: 1;
  }

  .about-us-section>* {
    position: relative;
    z-index: 2;
  }

  .about-us-overlay h3 {
    color: #FFFFFF !important;
    font-size: 40px !important;
    font-family: 'poppins';
    font-weight: 600;
    background: transparent;
  }

  /*about us  intro section*/

  .intro-section {
    text-align: center;
    max-width: 1000px;
    margin: 80px auto;
    font-size: 16px;
    padding: 0 30px;
    font-family: 'poppins';
    color: #7a7a7a;
    line-height: 1.8;

  }

  .intro-section h3 {
    font-size: 2rem;
    color: #0c3f91;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .intro-section p {
    font-size: 16px !important;
    margin-bottom: 15px;
    color: #7A7A7A !important;
    font-family: 'poppins';
    font-weight: 400 !important;
  }

  /*about card-container*/


  .about-card-container {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;

  }

  .card-content {
    display: flex;
    background: white;
    border-radius: 12px;
    height: 250px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    gap: 20px;

    max-width: 550px;
    min-height: 270px;
    width: 100%;

  }

  .about-image-section {

    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 247px;
    transition: transform 0.4s ease;
  }

  .about-image-section img {
    width: 100%;

    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.8s ease;
  }

  .card-content .about-image-section:hover img {
    transform: scale(1.2);
  }

  .card-content .content-section {


    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 20px;
  }

  .card-content .content-section h3 {
    color: #0c4791;
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 600;
  }

  .card-content .content-section p {
    color: #3F444B;
    margin-bottom: 15px;

    font-family: 'poppins';
    font-weight: 400;
    font-size: 14px;
  }

  .card-content .content-section button {
    padding: 6px 10px;
    border: 1px solid #3F444B;
    font-size: 16px;
    width: 150px;
    background: white;
    color: #3F444B;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
  }

  /************/











  /************************/
  @media (max-width: 768px) {
    .card {
      flex-direction: column;
      max-width: 100%;
    }

    .card .image-section,
    .card .content-section {
      width: 100%;
    }

    .about-card-container {
      grid-template-columns: auto;
      width: 100%;
      margin: 10px;
    }
  }


  /*--------Aboutus:-- Our vision--------------------*/


  .vision-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0px 60px;
    gap: 30px;

  }

  .vision-text {
    flex: 1;

  }

  .vision-text h3 {
    color: #0c4791;
    font-size: 2em;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }

  .vision-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
  }



  .vision-text p {
    font-size: 1rem;
    color: #7a7a7a;

  }

  .vision-image {
    flex: 1;
    text-align: center;
    max-height: 550px;
    max-height: 550px;
  }

  .vision-image img {
    width: 100%;


  }


  @media (max-width: 768px) {
    .vision-section {
      flex-direction: column;
      padding: 40px 20px;
    }
  }

  .image-section {
    flex: 1 1 400px;
    text-align: center;
  }

  .image-section img {
    width: 100%;
    max-width: 500px;
    height: auto;
  }

  .text-section {
    flex: 1 1 400px;
  }

  .text-section h3 {
    color: #0c3f91;
    font-size: 2rem;
    margin-bottom: 20px;
  }





  @media (max-width: 768px) {

    .text-section h3 {
      font-size: 2rem;
    }

    .text-section ul li {
      justify-content: center;
    }
  }


  /*--------Aboutus:-- Our vision End--------------------*/
  /*supportive service*/



  .supportive-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 40px 10px 0px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
  }

  .supportive-list-container {
    display: flex;
    flex-direction: column;
    margin: 0px;
    gap: 0px;
    padding: 0px;
  }

  .image-section img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    max-width: 480px;
    max-height: 355px;
  }



  .text-section h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #0c4791;
    font-weight: 600;
  }

  .supportive-list-container label i {
    font-weight: 900;
    font-size: 24px;
    color: #0c4791;
    margin-right: 8px;
    transform: scale(0.8);
  }

  .supportive-list-container label {
    line-height: 26.41px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    font-weight: 450;
    color: #54595F;
    margin: 0px;
    padding: 0px;

  }


  @media (max-width: 768px) {
    .supportive-container {
      flex-direction: column;
      text-align: center;
    }

    .text-section {
      max-width: 100%;
    }

    .text-section ul {
      padding-left: 0;
      list-style-position: inside;
    }
  }


  /*about us end*/
  /* ================================================================================
                                   SECTION: About Section End
   ================================================================================== */


  .why-choose-us-container {
    margin: 40px 0px;
  }

  .why-choose-us-text {
    font-size: 2rem;
    font-weight: 600;
    color: #0c4791;
  }

  .why-choose-us-img {
    flex: 1;
    text-align: center;

  }

  .why-choose-us-img img {
    max-height: 380px;
    max-width: 392px;
  }

  .why-choose-us-content {
    flex: 1;
  }



  .why-choose-us-content p {
    color: #7a7a7a;

    margin: 20px 0px;
    font-family: "poppins" sans-serif !important;
    font-weight: 400;
    font-size: 16px;
  }



  .service-client-section {
    padding: 40px !important;
    background-color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    margin-bottom: 80px !important;
  }





  .service-client-section h3 {
    font-weight: 600;
    color: #0c4791;
    margin-bottom: 15px;
  }

  .service-client-section p {
    color: #7a7a7a;
    font-size: 16px;

  }

  @media (max-width: 768px) {
    .service-client-section {
      text-align: center;

    }


  }


  .noc-services img {
    max-width: 463px;
    max-height: 306px;
  }


  /* remote staffing-section */



  .card-section {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background-color: #f9f9f9;
    justify-content: center;
  }

  .remote-staffing-headpara p {
    padding: 0px 13%;
    color: #7A7A7A;
    padding-top: 80px;
    line-height: 1.8rem;
    background-color: #f9f9f9;
    font-size: 16px;
    font-family: 'poppins' sans-serif;
    font-weight: 400;
  }

  .remote-staffing {
    flex: 1 1 calc(50% - 24px);
    max-width: 500px;
    background: white;

    padding: 40px;
    border: 3px dashed #1e40af;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;

  }

  .remote-staffing:hover {
    transform: scale(1.03);
  }

  .image-container {
    margin-bottom: 20px;

  }

  .image-container img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
  }

  .remote-staffing h3 {
    color: #1e40af;
    font-size: 20px;
    padding: 23px;
    margin-bottom: 12px;

  }


  .remote-staffing h3:hover {
    color: black;

  }

  .remote-staffing p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }

  /* Animation */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .remote-staffing {
      flex: 1 1 100%;
    }
  }


  .remote-staffing-section {
    overflow: hidden;
    padding: 40px 10%;
    background-color: #f9f9f9;
  }

  .staffing-content {
    opacity: 0;
    color: #7a7a7a;
    font-family: 700;
    transform: translateX(-100%);

  }



  /* Optional styling */
  .staffing-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
  }


  /*-----------*/
  .security-certification-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: auto;
    padding-bottom: 20px !important;
    margin-top: 20px;
    max-width: 1200px;

  }

  .certification-card {
    display: flex;
    flex: 1 1 calc(50% - 30px);
    max-width: calc(50% - 30px);
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    padding: 20px;
    align-items: center;
    gap: 20px;
    transition: transform 0.3s ease;
  }

  .certification-card:hover {
    transform: translateY(-5px);
  }

  .certification-card img {
    width: 116px;
    height: 116px;
    object-fit: contain;
  }

  .certification-content h4 {
    font-size: 26px;
    font-weight: 600;
    color: #0c4791;

  }

  .certification-content p {
    font-size: 14px;
    color: #7A7A7A;

  }

  /* Responsive */
  @media (max-width: 768px) {
    .certification-card {
      flex: 1 1 100%;
      max-width: 100%;
      flex-direction: column;
      text-align: center;
      align-items: center;
    }

    .certification-card img {
      margin-bottom: 15px;
    }

    .certification-content {
      align-items: center;
    }
  }



  /*Solution of remote staffing section*/
  .solution-remote-section {

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 10px;
    color: 0;
    flex-wrap: wrap;
    gap: 40px;
  }

  .solution-remote-img {
    flex: 1 1 400px;

    max-width: 600px;
  }

  .solution-remote-img img {
    width: 100%;
    height: auto;
  }

  .solution-remote-content {
    flex: 1 1 400px;

    max-width: 500px;
  }

  .solution-remote-content h3 {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 20px;
  }

  .solution-remote-content p {

    font-weight: 500;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.3px;

    color: #7A7A7A;

    font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  }





  .solution-remote-img:hover img {
    animation: bounceImage 0.6s ease infinite alternate;
  }

  @keyframes bounceImage {
    0% {
      transform: translateY(0);
    }

    100% {
      transform: translateY(-10px);
    }
  }


  @keyframes slideInLeft {
    from {
      transform: translateX(-80px);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideInRight {
    from {
      transform: translateX(80px);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @media (max-width: 768px) {


    .solution-remote-content h3 {
      font-size: 24px;
    }

    .solution-remote-content p {
      font-size: 15px;
    }
  }


  /*hire engineer pricing card*/


  .hire-engineer h3 {
    font-size: 1.5rem;
    color: #063c83;
    font-weight: 700;
    margin-bottom: 20px;



  }



  .pricing-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
    max-width: 1200px;

    margin-left: auto;
  }

  .profile-card,
  .profile-card2 {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    padding: 25px 0px 25px 25px;
    width: 350px;
    max-width: 100%;
    transition: transform 0.3s ease;
  }

  .profile-card:hover,
  .profile-card2:hover {
    transform: translateY(-8px);
  }

  .profile-card2 {
    background-color: #0C4791;
    color: #fff;
  }

  .profile-card2 h3 {
    color: #fff;

    font-weight: 450px;
  }

  .profile-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
  }

  .profile-card h3 {
    color: #0070f0;
  }

  .profile-card p,
  .profile-card2 p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .profile-card p {
    color: #555;
  }

  .price-section {
    background: #00a8ff;
    color: white;
    padding: 8px 16px;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    margin-left: auto;
    width: 80%;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
  }



  .price-section span {
    font-size: 18px;
    font-weight: 400;
    margin-left: 4px;
  }

  .profile-card2 .price-section {
    background-color: #0C4791;
    border: 1.5px solid #fff;
  }


  .features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
  }

  .features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .profile-card .features li {
    color: #333;
  }

  .profile-card2 .features li {
    color: #fff;
  }

  .features li i {
    font-size: 16px;
    margin-right: 10px;
    color: inherit;
  }

  .hire-btn {
    background: #E8EFF7;
    border: none;
    width: 80%;
    padding: 12px 100px;
    border-radius: 8px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .profile-card2 .hire-btn {
    background: #fff;
    color: #0C4791;
  }

  .profile-card .hire-btn:hover {
    background: #0C4791;
    color: #fff;
  }

  .profile-card2 .hire-btn:hover {
    background: #00a8ff;
    color: #0C4791;
  }

  @media (max-width: 768px) {
    .pricing-card {
      flex-direction: column;
      align-items: center;
    }
  }


  /*Careers section*/
  .Career-section-info h3 {
    font-size: 2rem;
    color: #063c83;
    font-weight: 600;
    font-family: 'poppins', sans-serif;

  }


  .Career-section-info {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease-out forwards;
  }

  @keyframes slideUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /*.......job section.....*/


  .job-listing {
    transition: background-color 0.3s ease;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    height: 80px;

  }

  .job-listing:hover {
    background-color: #f0f0f0;
  }

  .job-title {
    font-weight: 600;
    font-size: 16px;
    color: #1E293B;
  }



  .company-name,
  .job-info {
    font-weight: 400;
    font-size: 16px;
    color: #999999;
  }

  .company-name {
    font-weight: 500;
    margin-right: 10px;
  }


  .job-meta {
    text-align: right;
    font-size: 0.9rem;
  }

  .job-meta a {
    color: #3399cc;
    font-weight: 600;
    text-decoration: none;
  }

  .job-icon img {
    width: 40px;
    height: 40px;
    background-color: #ddd;
    display: inline-block;
    border-radius: 4px;
  }


  @media (max-width: 1150px) {
    .job-listing {
      height: fit-content;
    }
  }

  @media (max-width: 576px) {
    .job-meta {
      text-align: left;
      margin-top: 10px;
    }
  }

  .job-address {
    text-align: right !important;
    color: #999999 !important;
    width: 30px !important;


  }








  /* Blog  */
  .card-wrapper {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1100px;
    margin: 80px auto;
  }

  .card {
    position: relative;
    width: 260px;

    height: 300px;
    overflow: hidden;
    border-radius: 12px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    background-color: #000;
    overflow: hidden;
  }

  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-position: center;
    transition: transform 0.8s ease !important;
  }

  .card-text {
    position: absolute;
    bottom: 0;
    padding: 16px;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent 60%);
  }

  .card:hover img {
    transform: scale(1.1);
  }


  @media (max-width: 1024px) {
    .card-wrapper {
      justify-content: center;
    }

    .card {
      width: 45%;
    }
  }

  @media (max-width: 768px) {
    .card {
      width: 100%;
    }
  }

  /* Contact us*/
  .contact-section h3 {
    font-size: 2rem;
    color: #063c83;
    line-height: 1.3em;
    font-weight: 600;
  }

  .contact-section {
    margin: auto;
    padding-top: 20px;
    max-width: 900px;

  }

  .text-info1 {
    font-family: "Poppins", Sans-serif;
    font-weight: 400;

    color: #05aded !important;
    font-size: 16px;
  }

  .contact-card-container {

    display: flex;
    gap: 24px;

  }


  /* Card Styling */
  .contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);

    width: 335px;
    height: 213px;
    text-align: left;
    padding: 20px;

  }

  .contact-card:nth-child(2) {
    width: 252px;
  }

  .contact-card:nth-child(3) {
    width: 252px;
  }


  /* Card Heading */
  .contact-card h5 {
    font-weight: 600;
    color: #1e293b;

    font-size: 1.5rem;
    line-height: 1.2em;
    padding: 10px;
    margin: 0px;
    font-family: 'Poppins', sans-serif;
  }

  /* Card Text */
  .contact-card p {
    margin: 0;
    color: #7A7A7A;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
  }

  @media (max-width: 767.98px) {
    .contact-card {
      width: 100%;
      padding: 40px;
    }

    .contact-card:nth-child(2) {
      width: 100%;
      padding: 40px;
    }

    .contact-card:nth-child(3) {
      width: 100%;
      padding: 40px;
    }
  }

  .contact-card-location-icon,
  .contact-card-envelope-icon,
  .contact-card-phone {
    background-color: #0c4791;
    color: #ffffff;
    padding: 15px;
    border-radius: 50%;
    display: inline-flex;

    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
  }

  /* Individual Colors */
  .contact-card-envelope-icon {
    background-color: #05ADED;
  }

  .contact-card-phone {
    background-color: #0c4791;
  }

  /* ICON SIZE */
  .contact-card-location-icon i,
  .contact-card-envelope-icon i,
  .contact-card-phone i {
    font-size: 32px;
    color: white;
  }



  /* Container wrapping both map and form */
  .contact-map-form-wrapper {
    background: #fff;
    padding: 0 !important;
    margin-left: 0 !important;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    display: flex;
    border-radius: 12px;
    overflow: hidden;

    margin: auto !important;
    min-height: 637px;
  }

  .contact-map-form-inner {

    display: flex !important;
    flex-direction: row;
    gap: 0;
  }

  /* Map box */
  .map-box {

    flex: 1 1 50%
  }

  .map-box iframe {
    width: 100%;
    height: 550px;
    border: none;
    cursor: url('https://maps.gstatic.com/mapfiles/openhand_8_8.cur'), default;
  }

  .form-box1 {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .form-box1 h5 {
    font-family: "Raleway", Sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    color: #7a7a7a;
    margin: 0px 10px 0px 0px;
    padding: 15px 0px;


  }

  /* Form box */
  .form-box {
    background-color: #fff;

    flex: 1 1 50%;
    height: 617px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 89px;
  }

  .form-box h3 {
    font-size: 1.625rem;
    color: #0C4791;
    padding: 8px;
    font-family: 'poppins' sans-serif;
    font-weight: 500;
    line-height: 1.2;

  }

  /* Form styling */
  input,
  textarea {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: border 0.3s ease;
  }

  input:focus,
  textarea:focus {
    border: 2px solid #0c4791;
    outline: none;
  }


  textarea {
    height: 100px;
    resize: vertical;
    margin-bottom: 15px;
  }

  .form-control-wrap {
    margin-bottom: 15px;
  }

  input::placeholder {

    color: #7a7a7a;
    font-weight: 300;
  }

  /* Recaptcha */
  .recaptcha-box {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;

    width: 80%;
    margin-bottom: 20px;
    border-radius: 4px;
    background-color: #f9f9f9;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    height: 74px;
    padding: 0px 20px;
  }

  .recaptcha-box input[type="checkbox"] {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    border: 2px solid #000000;

  }

  .recaptcha-icon {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: center;
  }

  .recaptcha-icon label {
    font-size: 10px;
    font-weight: 300;
    color: #000000;
    margin: 0px;
  }

  .recaptcha-icon span {
    font-size: 8px;
    font-weight: 300;
    color: #000000;
    margin: 0px;
  }

  .recaptcha-box p {
    flex-grow: 1;
    font-size: 14px;
    color: #000000;
    margin: 0px;
  }

  .recaptcha-box img {
    width: 30px;
    height: 30px;
  }

  /* Submit button */
  .form-submit-button {
    background-color: #066aab;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    width: 100%;
    font-weight: 600;
    transition: background-color 0.3s;
    cursor: pointer;
  }

  .form-submit-button:hover {
    background-color: #0077b5;
  }


  /* Responsive */
  @media (max-width: 767.98px) {

    .map-box,
    .form-box {
      min-height: 350px;
    }

    .contact-map-form-wrapper {
      height: fit-content;
      flex-direction: column;
    }

    .recaptcha-box {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
  }










  /* blog  Managed cloud section*/


  .blog {

    display: flex;
    flex-direction: column;
    background-color: #0C4791;
    color: #fff;
    gap: 8px;
    min-height: 400px;
    position: absolute;
    top: 114px;
    width: 100%;
    z-index: 0;
  }



  .profile {
    display: flex;
    gap: 8px;
    align-items: center;

  }

  .profile p {
    line-height: 1.5rem;
    font-size: 16px;
    margin: 0px;
    color: #ffffff;
  }

  .profile i {
    color: #ffffff;
    font-size: 14px;
  }

  .row1 label {
    margin: 0px;
  }

  .row1 {
    display: flex;
    gap: 24px !important;
    color: #ffffff;
    align-items: center;

  }

  .sub-blog-bannner-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    ;
  }

  .blog-managed-cloud-section {
    display: flex;
    flex-direction: column;

    flex: 1;
    min-width: 0;
  }

  .blog-managed-cloud-section ul a {
    font-size: 16px;
    font-family: 'poppins' sans-serif;
  }


  .blog-managed-cloud-section img {
    border-radius: 16px;

    height: 479px;
    width: 719px;
    margin-bottom: 1.5rem;
  }


  .blog-managed-cloud {
    font-family: 'poppins';
    /* color: #7a7a7a; */
    line-height: 1.65em;
    max-width: 730px;


  }

  .blog-managed-cloud a {
    font-weight: 700;
    color: #046BD2;
    ;
  }

  .blog-managed-cloud h3 {
    font-size: 32px;
    font-weight: 700;

    color: #1e293b;

  }

  .blog-managed-cloud-recent-post {
    padding: 20px;
    margin: 0px 5%;

  }

  .blog-managed-cloud h4 {

    font-size: 26pxpx;
    font-weight: 700;
    font-family: 'poppins' sans-serif;
    color: #1e293b;
  }

  .blog-managed-cloud h5 {
    font-size: 2rem;
    font-weight: 650;
    line-height: 1.2em;
    color: #1E293B;
  }


  .blog-managed-cloud p {
    font-size: 1rem;
    font-weight: 400;


    color: #7A7A7A;
  }

  .blog-managed-cloud strong {
    font-weight: 700;
    color: #7A7A7A;
  }

  .blog-managed-cloud-a {
    color: #7a7a7a;
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    text-decoration: none;


  }

  .blog-managed-cloud-a :hover {
    text-decoration: none;
  }



  .blog-managed-cloud li {
    margin-bottom: 0.5rem;
    color: #7A7A7A;

  }



  .blog-managed-cloud-list li {



    color: inherit;
  }

  /* blog managed cloud recent card*/
  /*  
.blog-managed-cloud-recent-posts h4 {
  font-size: 32px;
  font-weight: 600;
  
      font-family: 'poppins', sans-serif;
line-height: 1.3em;
  color: #0C4791;
  margin-bottom: 20px;
}

.blog-managed-cloud-recent-posts img {
  width: 363.33px;
  height: 270px;
  object-fit: cover;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* Layout: 3 items in one row */
  /* .blog-related-posts {
  display: flex;
  justify-content: space-between;
  gap: 20px;
} */

  /*.blog-item {
  flex: 1;
  max-width: 32%;
}

.blog-item h5 {
  font-size: 1rem;
  margin: 10px 0 5px;
  
      font-family: 'poppins', sans-serif;
  line-height: 1.4;
}
.blog-item img
{
  margin-bottom: 10px;
}

.blog-item h5 a {
  text-decoration: none;
  color: #7A7A7A; 
  font-weight: 500;
  font-size: 20px;
}

.blog-item h5 a:hover {
  color: #0C4791;
}

.blog-item b
{

margin-top: 15px;
      font-family: "Cormorant Garamond", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.author {
  font-size: 15px;
  color: #0C4791;
}

 
*/

  .blog-managed-cloud-recent-posts h4 {
    font-size: 32px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3em;
    color: #0C4791;
    margin-bottom: 25px;
    text-align: left;
  }

  .blog-managed-cloud-recent-posts img {
    width: 100%;
    height: 270px;
    object-fit: cover;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    margin-bottom: 12px;
  }

  .blog-item {
    margin-bottom: 30px;
    text-align: left;
  }

  .blog-item p {
    margin: 0 0 8px;
  }

  .blog-item p a {
    text-decoration: none;
    color: #7A7A7A;
    font-weight: 500;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    display: inline-block;
  }

  .blog-item p a:hover {
    color: #0C4791;
  }

  .blog-item b {
    font-family: "Cormorant Garamond", sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    display: inline-block;
    margin-top: 5px;
  }

  .author {
    font-size: 15px;
    color: #0C4791;
    font-family: 'Poppins', sans-serif;
  }



  /*search card*/
  .sidebar-card {
    background: #E8EFF7;
    border-radius: 1rem;
    padding: 30px 20px 20px;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    align-self: flex-start;
    height: fit-content;
    position: sticky;
    z-index: 10;

    top: 20px;

  }


  .sidebar-card h6 {
    font-weight: bold;
    font-size: 1rem;
    color: #7A7A7A;
    padding: 15px 0px;
    margin-bottom: 0.5rem;
  }

  .sidebar-card hr {
    margin: 0.3rem 0 1rem;
    opacity: 0.3;
  }

  .recent-post {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }

  .recent-post img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
  }

  .recent-post-title {
    color: rgb(122, 122, 122);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.1rem;
  }

  .recent-post-meta {
    font-size: 0.75rem;
    color: #007bff;
  }

  .about-title {
    font-weight: 700;
    font-size: 1rem;
    color: #003366;
  }

  .about-text {
    font-family: "Poppins", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #7A7A7A;
    margin: 10px 0px 0px;
    line-height: 1.5;
    text-align: left;

  }

  .share-section {
    display: flex;
    align-items: center;
    padding: 15px 0px;
    gap: 10px;
  }

  .share-section h5 {
    font-size: 14px;
    font-weight: 600;
    color: #7A7A7A;
    margin: 0;
  }

  .share-section .line {
    flex: 1;
    height: 1px;
    background-color: orange;
    opacity: 0.3;
  }



  .search-box {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 1.5rem;
  }

  .search-box input {
    border: none;
    padding: 0.5rem 1rem;
    flex: 1;
    outline: none;
  }

  .search-box button {
    background: #003366;
    border: none;
    padding: 0 1rem;
    color: white;
  }


  .blog-managed-cloud-icon {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;

  }


  .blog-managed-cloud-icon i {
    border-radius: 50px;
    padding: 10px;
    background-color: white;
    border: 2px solid white;
    color: black;

  }


  .blog-managed-cloud-icon i:hover {
    background-color: #003366;
    color: white;

  }

  .sub-blog-button {

    background-color: #066aab;
    font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
    font-weight: 400;
    line-height: 1.65em;
    width: 100%;
    color: white;
    padding: 8px;
    border: 1px #066aab;
    border-radius: 5px;
  }



  .blogMainContainer {

    margin-top: 110px;

  }


  .sub-blog-banner-container {
    margin-bottom: 20px;
  }

  .sub-blog-banner-container h3 {
    font-size: 2rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;

  }

  .sub-blog-banner-container p {
    font-family: "Raleway", Sans-serif;
    font-size: 15px;
    font-weight: 400;


  }




  /* managed cloud supportive service */


  .manage-cloud-support {
    background-color: #f8f7fc;
    padding: 60px 0;
  }

  .manage-cloud-support h2 {
    color: #1d2c6b;
    font-weight: 700;
  }


  /*blog section*/
  .solid-circle {
    list-style-type: disc !important;
    /* solid circle ● */
    margin-left: 20px;
  }


  /* Animation for cards */


  /* Card Styles */
  .manage-cloud-support .bg-white {
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
  }

  /* Responsive Gap for Icons on small screens */
  @media (max-width: 767px) {
    .manage-cloud-support .d-flex {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }




  /*our client*/

  .logo-cards {
    background: white;
    border-radius: 12px;
    padding: 20px;

    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    display: flex;

    align-items: center;
    justify-content: center;
    width: 245px;
    height: 140px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    margin-bottom: 25px;

  }

  .logo-cards:hover {
    transform: scale(1.02);
  }

  .logo-cards img {
    width: 190px;
    height: 80px;
    object-fit: contain;
  }

  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }



  .client-section {

    padding: 60px 0;
  }

  .client-section h3 {
    font-weight: 600;
    line-height: 1.3em;
    font-weight: 600;
    font-family: 'poppins' sans-serif;
    color: #003366;
    margin-bottom: 15px;
  }

  .client-section p {
    color: #7a7a7a;
    font-size: 14px;
    line-height: 1.3em;
    font-family: 'poppins' sans-serif;
    font-weight: 400;
  }

  .client-form input,
  .client-form textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    background-color: #e6ecf5;
    border-radius: 5px;
    font-size: 14px;
    resize: none;
  }

  .client-form button {
    background-color: #00459e;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    transition: 0.3s;
  }

  .client-form img {
    width: 350px;
    height: 469px;
  }

  .client-image img {
    max-width: 321px;
    max-height: 421px;

  }


  @media (max-width: 768px) {
    .client-section {
      text-align: center;
    }

    .client-image {
      margin-top: 30px;
    }
  }





  /*vapt section*/

  .intro-text {
    font-size: 1rem;
    color: #7a7a7a;

    padding: 60px 0px 0px;



  }

  .internal-va-card {
    margin: 40px auto 0;
    background: white;
    border-radius: 12px;

    display: flex;
    align-items: center;
    overflow: hidden;
    gap: 20px;
    max-width: 1200px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #334155;
    padding: 20px;

  }

  .internal-va-card img {
    width: 240px;
    height: auto;
  }

  .internal-va-card .content h3 {
    font-size: 23px;
    font-weight: 600;
    margin: 0px !important;
    color: #000000;
  }

  .internal-va-card .content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #656565;

  }


  @media (max-width: 768px) {
    .internal-va-card {
      flex-direction: column;
      text-align: center;
    }

    .internal-va-card img {
      margin: 0 auto;
    }
  }





  /*---------------------------------------------------*/
  .vapt-section {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 20px;
  }



  .vapt-section .vapt-image img {
    width: 100%;
    max-width: 500px;
  }



  .vapt-section .vapt-content h3 {
    font-weight: 700;
    color: #0C4791;
    margin-bottom: 20px;
  }

  .vapt-section .vapt-content p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 10px;
  }

  .vapt-section .vapt-content strong {
    font-weight: 600;
  }



  @media (max-width: 768px) {
    .vapt-section {
      flex-direction: column;
      text-align: center;
    }
  }

  /*--------------------------------------------------*/



  .va-pt-box-section {
    max-width: 1200px;
    margin: auto;
    border: 3px dashed #0a459f;
    border-radius: 12px;
    padding: 30px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;

    margin-bottom: 30px;
  }

  .va-pt-box-section .text-part {
    flex: 1.2;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
  }

  .va-pt-box-section .checklist-box {
    flex: 1;
    background-color: #0a459f;
    color: #fff;
    border-radius: 12px;
    padding: 30px;
  }

  .va-pt-box-section .checklist-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .va-pt-box-section .checklist-box ul li {
    margin-bottom: 15px;
    font-size: 1.05rem;
  }

  .va-pt-box-section .checklist-box ul li i {
    margin-right: 10px;
    color: #fff;
  }

  /* Down to up animation */


  @media (max-width: 768px) {
    .va-pt-box-section {
      flex-direction: column;
      text-align: center;
    }

    .va-pt-box-section .checklist-box {
      width: 100%;
    }
  }


  /*------------asv Scan section-------*/

  .pci-section {

    padding: 60px 0;
    background-color: #f9f9ff;
  }




  .fixed-image {
    max-width: 100%;
    height: auto;
  }

  /*-------------------------------------------------*/


  /*asv scan card feature*/


  .asvscan-img {
    width: 550px;
    height: 443px;
    border-radius: 10px;
    border: 2px dashed #7a7a7a;
  }

  .asv-features-section h2 {
    color: #0a4a92;
  }

  .feature-card {
    border: 2px dashed #0a4a92;
    border-radius: 10px;

    padding: 25px;
    margin: 20px;
    height: 296px;
    text-align: center;
    transition: transform 0.3s ease;

  }

  .feature-card:hover {
    transform: translateY(-5px);
  }

  .feature-card img {
    height: 60px;
    margin-bottom: 20px;
  }

  .feature-card h4 {
    color: #0a4a92;
    margin-bottom: 10px;
  }

  .feature-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
  }

  /*-----------------------------------------------------------Benefits of pci section-----------------------------------------*/

  .benefits-of-pci {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9fb;
    padding: 60px 20px;
  }

  .benefits-of-pci-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .benefits-of-pci-image {
    flex: 1;
    text-align: center;
  }

  .benefits-of-pci-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }

  .benefits-of-pci-image:hover img {
    animation: bounce 1s;
  }

  @keyframes bounce {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  .benefits-of-pci-text {
    flex: 1;
  }

  .benefits-of-pci-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #0C4791;
    margin-bottom: 20px;
  }

  .benefits-of-pci-text p {
    font-size: 16px;
    font-weight: 400;
    color: #7a7a7a;
    margin-bottom: 12px;
  }

  .benefits-of-pci-text p strong {
    font-weight: 600;
    color: #7a7a7a;
  }

  /* Responsive layout for tablets and small screens */
  @media (max-width: 991px) {
    .benefits-of-pci-wrapper {
      flex-direction: row;
      flex-wrap: wrap;
    }

    .benefits-of-pci-image,
    .benefits-of-pci-text {
      flex: 1 1 100%;
    }

    .benefits-of-pci-text {
      padding-top: 20px;
    }
  }

  /* --------------------------------------------------------------------------------------------------------------*/


  /*  pci section  */
  .pci-section {
    text-align: center;
    padding: 60px 20px;

  }

  .pci-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 20px;
  }

  .pci-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
  }


  /*pci-support section*/
  .pci-text-center {

    color: #7a7a7a;
    padding: 5% 16% 3%;

  }






  .pci-text-center {

    color: #7a7a7a;
    padding: 5% 16% 3%;

  }

  .pci-support-section {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;

    background-color: #f9f8fd;
  }

  .support-card {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;

  }

  .card-image1 {
    background-image: url("/cloud-patron/images/background/background-img.png");
    position: relative;
    background-size: cover;
    background-position: center;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;


  }

  .card-image1::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1a1919;
    opacity: 0.5;
    z-index: 1;
  }

  .card-image1>* {
    position: relative;
    z-index: 2;
  }



  .card-image2 {

    background-image: url("/cloud-patron/images/background/background-img.png");
    position: relative;
    background-size: cover;
    background-position: center;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.6s ease;


  }

  .card-image2::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #1a1919;
    opacity: 0.5;
    z-index: 1;
  }

  .card-image2>* {
    position: relative;
    z-index: 2;
  }


  .card-text-container {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
  }

  .support-card-text {
    color: #fff;
    font-size: 23px;
    font-weight: 600;



  }





  .support-card:hover .card-image1 {
    transform: scale(1.1);
  }

  .support-card:hover .card-image2 {
    transform: scale(1.1);
  }



  /* -------- why choose section-------------------*/




  .section-title {
    font-size: 34px;
    font-weight: 700;


    color: #0f4c81;
    margin-bottom: 40px;
  }

  .cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }

  .card-top-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 50px 40px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 30%;
    cursor: pointer;
  }

  .card-top-card:hover {
    transform: translateY(-10px);
  }

  .card-top-card img {
    width: 100%;
    height: fit-content;

    margin-bottom: 20px;
  }

  .card-top-card h4 {
    font-size: 23px;
    margin-bottom: 10px;
    color: #000000;
  }

  .card-top-card p {
    font-size: 16px;
    color: #656565;
    font-weight: 300;
  }


  .top-row .card {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
  }






  @media (max-width: 1024px) {

    .top-row .card,
    .bottom-row .card {
      max-width: 100%;
      flex: 1 1 100%;
    }
  }

  /*bottom-card*/

  .sol-feature-card {
    display: flex;

    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;

  }

  .solution-feature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 550px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .solution-feature-card:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
  }

  .solution-feature-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
  }

  .solution-feature-card h3 {
    font-size: 23px;
    margin: 0 0 15px;
  }

  .solution-feature-card p {
    font-size: 1rem;
    color: #656565;
    font-weight: 300;
  }

  .pci-cards-container {
    display: flex;

    gap: 30px;
  }


  @media (max-width: 767px) {
    .card-top-card {

      width: 90%;
      margin: auto;
    }

    .pci-cards-container {
      flex-direction: column;
      width: 100%;
    }

    .solution-feature-card {
      max-width: 90%;
    }

    .compliance-section {
      flex-direction: column;
      text-align: center;
    }

    .compliance-content h3 {
      font-size: 22px;
    }
  }




  /*partner section*/
  /*partner section*/
  .partner-client {
    display: flex;

    gap: 20px;
    margin-bottom: 60px;
    max-width: fit-content;

  }

  .partner-section-info {
    font-size: 16px;
    font-family: 'poppins' sans-serif;
    font-weight: 400;
    /* padding-top: 40px; */
    text-align: center;
    color: #7a7a7a;
  }


  .partner-section-info h3 {
    color: #0C4791;
    font-weight: 600;
    font-size: 32px;
    margin-top: 20px;
    padding-top: 20px;
    font-family: 'poppins' sans-serif;
  }

  .partner {
    background: #fff;
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.1);
    padding: 30px;
    /* height: 170px; */


    text-align: center;
    cursor: pointer;
    flex: 1 1 200px;

  }





  .partner img {

    height: 70px;
    max-width: 180px;
    padding: 15px;

    border-radius: 8px;
  }

  .partner h6 {
    font-family: 'poppins' sans-serif;
    font-size: 1rem;
    padding-top: 20px;
    font-weight: 600;
    line-height: 1.25em;
    text-align: center;

  }



  /*pci cerification section*/

  .pci-certification-section-info {

    text-align: left;
    color: #7a7a7a;
  }



  .pci-certification {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: fit-content;

    justify-content: center;
    margin-bottom: 60px;

  }

  .pci-certification img {

    max-width: 550px;

    max-height: 358px;
  }

  .pci-certification-content {
    max-width: 800px;
    min-width: 600px;
  }

  .pci-certification-content h2 {
    color: #0c4791;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;

  }

  .pci-certification-content ul {
    list-style: none;
    padding: 0;
  }

  .pci-certification-content ul li {

    position: relative;
    padding-left: 25px;
    color: #54595F;
    margin-bottom: 5px;
  }

  .pci-certification-content ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #0c4791;
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .pci-certification {
      flex-direction: column;
      text-align: center;
    }

    .pci-certification-content {
      max-width: 100%;
    }
  }



  /* Team section  */

  .team-card {
    background: #fff;
    border-radius: 10px;
    width: 265px;
    height: 451px;
    padding: 15px;
    text-align: center;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.11);
    transition: transform 0.4s ease, box-shadow 0.4s ease;

    transform: translateY(30px);

    margin-bottom: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }



  .team-card img {
    width: 235px;
    height: 282px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 10px;
  }


  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .social-icons i {
    font-size: 16px;
    color: #0C4791;
    padding: 10px;
    border-radius: 50px;
    background-color: #0c479142;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .team-card h5 {
    font-family: "Poppins", Sans-serif;
    font-weight: 600;
    line-height: 1.2em;
    font-size: 1.25rem;
    color: #0C4791;
  }

  .team-card p {
    margin-bottom: 0.5em;
    color: #7a7a7a;
    font-family: 'poppins' sans-serif;
    font-weight: 400;
  }



  /*-----------------------------------------------------*/





  /*############################################################

                  service section : 1)  Managed cloud section

 ##########################################################*/


  /* service  Managed cloud section*/


  .banner-section {

    background-image: url("/cloud-patron/images/background/489.jpg");
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    background-color: #0c4791;
    background-size: cover;
    position: relative;
    background-position: center;
    color: #FFFFFF !important;
  }

  .banner-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0c4791;
    opacity: 0.6;
    z-index: 1;
  }

  .banner-section>* {
    position: relative;
    z-index: 2;
  }

  .banner-section-paragraph {

    font-size: 40px;
    font-weight: 600;

    color: #ffffff;
  }

  .background-wrapper {
    background-color: #F9F8FE;
    padding-bottom: 40px;

  }

  .background-wrapper1 {
    background-color: #F9F8FE;
    padding-bottom: 40px;

  }

  .service_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 0px !important;
    align-items: center;

    gap: 40px;
  }

  .service_container img {
    width: 540px;
    height: 288px;
  }



  .left-content {
    flex: 1;



  }

  .dotted-line {

    text-decoration: dashed;
    border-top: 4px dashed #abb8c3;
    margin: 60px 0px;
  }

  .left-content h3 {
    padding-top: 40px;
    font-size: 2rem;
    font-family: 'poppins', sans-serif;
    color: #0c4791;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .left-content p {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'poppins' sans-serif;
    margin-bottom: 15px;
    color: #7a7a7a;

  }

  .cloud-wrapper {

    flex: 1;
    align-items: center;
    border-radius: 12px;
    position: relative;
  }

  .cloud-img {
    max-width: 540px;
    max-height: 288px;
    transition: transform 0.3s ease;

  }

  .cloud-img:hover {
    transform: translateY(-20px) !important;

  }


  /* ======= Responsive ======= */
  @media (max-width: 768px) {
    .service_container {
      flex-direction: column;
      padding: 40px 20px;
    }

    .left-content h1 {
      font-size: 2rem;
    }

    .cloud-img {
      width: 90%;
    }
  }





  .section-title {
    font-weight: 600;
    color: #0c4791;
    font-size: 2rem;
  }

  .strength-card {
    padding: 40px;
    border-radius: 10px;

    transition: transform 0.5s ease, opacity 0.5s ease;
    align-items: center;
    gap: 20px;
    max-width: 451px;
  }


  .strength-card img {
    width: 70px;
    height: 70px;
  }

  /* Cross dashed lines */
  .dash-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    border-left: 3px dashed #bfbfbf;
    transform: translateX(-50%);
    z-index: 0;
  }

  .text-start h5 {
    font-weight: 600;
    color: #0c4791;
    font-size: 1.2rem;
    text-align: left;
  }

  .text-start p {

    font-weight: 400;
    color: #7a7a7a;
    font-size: 14px;
    text-align: left;
    font-family: 'poppins';
  }

  .dash-horizontal {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    border-top: 3px dashed #bfbfbf;
    transform: translateY(-50%);
    z-index: 0;
  }





  /* Responsive tweaks */
  @media (max-width: 767.98px) {
    .strength-card {
      flex-direction: column;
      text-align: center;
    }

    .dash-vertical,
    .dash-horizontal {
      display: none;
    }
  }






  /*services: our manage support section*/



  .cloud-support-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 20px;
    color: #0C4791;
  }

  .cloud-support-top-card {

    margin: 0 auto 40px;
    font-size: 16px;
    font-family: 'poppins', sans-serif;
    font-weight: 400;
    text-align: center;
  }


  .cloud-support-grid-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;

    margin: 0 auto 40px;
  }

  .cloud-support-card-top {
    background: #ffffff;
    padding: 24px;
    border-radius: 12px;
    gap: 16px;
    display: flex;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    align-items: center;
  }

  .cloud-support-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    max-width: 346px;
    max-height: 330px;
  }

  .managed-cloud-maincontainen {
    max-width: 900px !important;

  }


  .cloud-support-card img {
    width: 90px;
    height: 90px;

  }

  .cloud-support-card-top img {
    width: 90px;
    height: 90px;

  }


  .cloud-support-card h3 {
    font-size: 20px;
    text-align: center;
    color: #0c4791;
    margin-bottom: 8px;
    font-weight: 600;
  }

  .cloud-support-card-top h3 {
    font-size: 20px;
    color: #0c4791;
    margin-bottom: 8px;
    font-weight: 600;
    text-align: left;
  }

  .cloud-support-card-top p {
    font-size: 16px;
    color: #656565;
    line-height: 1.4;

    font-weight: 300;
  }


  .cloud-support-card p {
    font-size: 16px;
    color: #656565;
    line-height: 1.6;
    font-weight: 300;
    text-align: center;

  }

  @media (max-width: 768px) {
    .cloud-support-grid-row {
      grid-template-columns: 1fr;
      justify-content: center;

    }

    .cloud-support-card {
      width: 100%;
      height: fit-content;
    }
  }



  .why-choose-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    flex-wrap: wrap;
    padding: 60px 0px;
  }

  .why-choose-image {
    flex: 1;
    min-width: 300px;

  }

  .why-choose-image img {
    width: 100%;
    max-width: 500px;
    text-align: center;
    transition: transform 0.4s ease;
  }

  .why-choose-image img:hover {
    transform: translateY(-20px) !important;
  }

  .why-choose-text {
    flex: 1;
    min-width: 300px;

  }

  .why-choose-text h3 {
    color: #0C4791;
    font-size: 32px;
    font-family: 'poppins' sans-serif;
    line-height: 1.3em;
    font-weight: 600;
    margin-bottom: 24px;
  }

  .why-choose-text p {
    line-height: 1.6;
    font-family: 'poppins' sans-serif;
    font-size: 14px;
    margin-bottom: 12px;
  }

  .why-choose-text strong {
    color: #1E293B;
    font-family: 'poppins' sans-serif;
    font-size: 14px;
  }


  /* Responsive */
  @media (max-width: 768px) {
    .why-choose-section {
      flex-direction: column;
      text-align: left;
    }

    .why-choose-image img {
      max-width: 80%;
      margin: 0 auto;
    }

    .why-choose-text {
      padding-top: 20px;
    }
  }











  /*managed it support services*/
  .infrastructure-section {
    display: flex;
    justify-content: center;
    padding: 60px 20px 0px;
    color: #7a7a7a;
  }



  .manage-it-infrastructure-text {
    border-left: 4px double #05ADED;
    margin-bottom: 0.5em;
    padding-left: 12px;
    color: #7a7a7a;
    font-weight: 400;
    font-size: 16px;

    font-family: 'poppins', sans-serif;
  }


  .manage-it-support-service {

    margin: 40px 0px;
  }

  .service-it-card {
    background: #fff;

    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;

    width: 257px;
    height: 277px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-it-card:hover {
    transform: scale(1.11) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .service-it-card:hover h6 {
    color: #0C4791;
  }

  .service-it-card img {
    max-width: 100%;
    height: 140px;

    object-fit: cover;
    margin-bottom: 15px;
  }

  .service-it-card h6 {
    font-size: 1rem;
    font-weight: 500;
  }

  @media (max-width: 768px) {
    .service-it-card img {
      height: 100px;
    }
  }


  /*---------------------------------------------------------*/
  /*24 X7 services*/

  .noc-image {
    transition: transform 0.4s ease;
    width: 450px;
    height: 300px;

  }

  .noc-image:hover {
    transform: translateY(-20px) !important;
  }


  .section-title-24X7 {
    color: #0c4791;
    font-weight: 600;


  }

  .noc-features li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
  }


  /***************************************************/
  .core-noc-section {
    background: url('/cloud-patron/images/background/NOC-Services-bg.jpg') no-repeat center center/cover;
    position: relative;
    height: 340px;
    background-color: #0c4791;
    background-size: cover;
    position: relative;
    background-position: center;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

  }

  .core-noc-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #0c4791;
    opacity: 0.6;
    z-index: 1;
  }

  .core-noc-section>* {
    position: relative;
    z-index: 2;
  }


  .Comprehensive-header-title h3 {
    font-size: 32px;
    color: #0c4791;
    font-weight: 600;
  }





  .noc-icon {
    width: 40px;
    height: 40px;
  }

  /*------------------------------------------------*/


  .comprehensive-noc-services {
    margin-top: -20px;

  }

  .comprehensive-noc-services .noc-card {
    background: #fff;
    border-radius: 12px;

    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }


  .comprehensive-noc-services h6 {
    font-size: 20px;
    margin-top: 10px;
    color: #000000;
    font-weight: 600;
  }

  .noc-card img {

    max-width: 331px;
    height: 256px;
  }

  .noc-card p {
    font-size: 16px;
    margin-top: 10px;
    color: #656565;
    font-weight: 300;
  }

  .core-noc-grid-container {
    display: flex;
    justify-content: center;
    gap: 16px;

  }

  .core-noc-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px;
  }

  .core-noc-card {
    background-color: rgba(89, 126, 166, 0.5);
    border-radius: 15px;
    display: flex;


    width: 330px;
    height: 158px !important;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    margin: 0px !important;
    gap: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .core-noc-card img {
    max-width: 72px;
    max-height: 72px;
  }

  .core-noc-card h5 {
    font-size: 20px;

    color: #ffffff;
    font-weight: 600;
    text-align: left;
  }

  .core-noc-card p {
    font-size: 14px;

    color: #ffffff;
    font-weight: 400;
    text-align: left;
    line-height: 1.3;
  }











  /* blog managed cloud recent card */

  .dashed-line {
    border: none;
    border-top: 2px dashed #0C4791;
    margin: 20px 0;
  }


  .blog-managed-cloud-recent-post h4 {


    font-size: 2.3rem;
    font-weight: 650;
    line-height: 1.4em;
    color: #0C4791;

  }


  .blog-managed-cloud-recent-post img {
    height: 265px;
    width: 350px;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
  }


  .blog-related-post {
    display: flex;
    flex-wrap: wrap;


  }

  .blog-related-post a {
    text-decoration: none;

    color: #7A7A7A;
  }


  .blog-related-post p {
    color: #0C4791;
  }






  /* managed cloud supportive service */


  .manage-cloud-support {
    background-color: #f8f7fc;
    padding: 60px 0;
  }

  .manage-cloud-support h2 {
    color: #1d2c6b;
    font-weight: 700;
  }

  /* Animation for cards */


  /* Card Styles */
  .manage-cloud-support .bg-white {
    transition: all 0.3s ease-in-out;
    border-radius: 12px;
  }

  /* Responsive Gap for Icons on small screens */
  @media (max-width: 767px) {
    .manage-cloud-support .d-flex {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  }




  /*our client*/

  .logo-card {
    background: white;
    border-radius: 12px;

    padding: 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.4s ease, opacity 0.4s ease;
    margin-bottom: 25px;
    opacity: 0;
    transform: scale(0.9);
    animation: fadeInScale 0.6s ease forwards;
  }

  .logo-card:hover {
    transform: scale(1.02);
  }

  .logo-card img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
  }

  @keyframes fadeInScale {
    to {
      opacity: 1;
      transform: scale(1);
    }
  }






  /*-------------------------------------------------*/

  .asv-section {
    background-color: #f9f9ff;
    padding: 50px 0px;
    border-top: 3px dashed #0a4a92;
    border-radius: 10px;
    margin: 40px 0;

  }



  .asv-section h3 {
    color: #0a4a92;
    font-weight: 700;
    margin-bottom: 20px;
  }

  .asv-section p {
    color: #6c6c6c;
    font-size: 1.1rem;
    line-height: 1.8;
  }



  /* why cloud patron*/
  .why-cloud-patrons {

    padding: 60px 20px;
  }

  .why-cloud-patrons h3 {
    color: #0a4a92;
    font-weight: bold;
    margin-bottom: 25px;
  }

  .why-cloud-patrons p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
  }




  /*  pci section  */
  .pci-section {
    text-align: center;
    padding: 60px 20px;

  }

  .pci-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f4c81;
    margin-bottom: 20px;
  }

  .pci-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
  }


  /*pci-support section*/


  /* -------- why choose section-------------------*/


  .section-title {
    font-size: 32px;
    font-weight: 600;

    font-family: 'poppins' sans-serif;
    line-height: 1.7rem;
    color: #0c4791;
    margin-bottom: 40px;
  }

  .cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
  }


  /*partner section*/
  .partner-client {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;

    max-width: fit-content;
    padding: 10px 10% 60px;
  }

  .partner {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding-top: 37px;
    width: 200px;
    /* height: 150px; */
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;

    transform: translateY(40px);

  }


  .partner:nth-child(1) {
    animation-delay: 0.1s;
  }

  .partner:nth-child(2) {
    animation-delay: 0.2s;
  }

  .partner:nth-child(3) {
    animation-delay: 0.3s;
  }

  .partner:nth-child(4) {
    animation-delay: 0.4s;
  }



  .partner:hover {
    transform: translateY(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }



  .partner h3 {
    font-size: 1.2rem;
    margin: 0 0 15px;
  }


  /*-----------------------------------------------------*/

  /* managed it supportservices */





  /* service  Managed cloud section*/


  .hero_section {

    background-image: url('/cloud-patron/images/background/489.jpg');
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    background-color: #0C4791;
    background-size: cover;
    position: relative;
    background-position: center;
  }

  .hero_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #0C4791;
    opacity: 0.6;
    z-index: 1;
  }

  .hero_section>* {
    position: relative;
    z-index: 2;
  }

  .hero_section-paragraph {

    font-size: 40px;
    font-weight: 800;

    color: #ffffff;
  }

  .background-wrapper {
    background-color: #F9F8FE;
    padding-bottom: 40px;
  }













  /*---------------------------------------------------------*/
  /*24 X7 services*/

  .noc-image {
    transition: transform 0.4s ease;
    width: 450px;
    height: 300px;

  }

  .noc-image:hover {
    transform: translateY(-20px) !important;
  }


  .section-title-24X7 {
    color: #003366;
    font-weight: 600;
    font-size: 32px;
    margin-bottom: 20px;
  }

  .noc-features li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 14px;
    color: #1e293b;
  }





  /*helpdesk support services */

  .Helpdesk-paragraph {

    color: #7a7a7a;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    font-size: 1rem;
    padding: 40px 0px;
  }

  .helpdesk-header {

    color: #0C4791;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    text-align: center;

  }

  .arrow {
    cursor: pointer;
    font-size: 1.5rem;
    user-select: none;
  }

  @media (min-width: 768px) {
    .helpdesk-card {
      flex: 0 0 500px;
    }
  }


  .core-services-section {
    padding-top: 40px;

    background-color: #F9F8FE !important;
  }

  .slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 20px;
  }

  .helpdesk-slider-container {
    display: flex;
    width: max-content;
    gap: 20px;

  }

  .helpdesk-card {
    flex: 0 0 441px;
    background: white;
    border: 2px dashed #6D7882;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 441px;
    height: 461px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensures content starts from top */
  }

  .helpdesk-card img {
    width: 100%;
    height: fit-content;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .helpdesk-card h3 {
    font-size: 1.1rem;
    color: #0C4791;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .helpdesk-card p {
    font-size: 0.95rem;
    color: #6D7882;
    line-height: 1.5;
    flex-grow: 1;
    /* Makes the paragraph fill space */
  }

  .helpdesk-card:hover {
    border: 2px dashed #005a9c;
  }


  /* Responsive */
  @media (min-width: 768px) {
    .helpdesk-card {
      flex: 0 0 400px;
      max-width: 400px;
    }
  }

  .pagination-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 1.2rem;
    color: #334155;
    font-weight: 400;
  }

  .arrow {
    cursor: pointer;
    font-size: 2rem;
    color: #334155;
    font-weight: 300;
  }



  .HelpdeskSupport-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    flex-wrap: wrap;
  }

  .HelpdeskSupport-image {
    flex: 1;
    min-width: 300px;

  }


  .HelpdeskSupport-image img {
    width: 100%;
    max-width: 500px;
  }

  .HelpdeskSupport-text {
    flex: 1;
    min-width: 300px;

  }

  .HelpdeskSupport-text h2 {
    color: #0C4791;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .HelpdeskSupport-text p {
    line-height: 1.6;
    margin-bottom: 12px;
    color: #7A7A7A;
    font-size: 16px;
    font-weight: 400;
  }





  /* Responsive */
  @media (max-width: 768px) {
    .HelpdeskSupport-section {
      flex-direction: column;
      text-align: left;
    }

    .HelpdeskSupport-image img {
      max-width: 80%;
      margin: 0 auto;
    }

    .HelpdeskSupport-text {
      padding-top: 20px;
    }
  }





  .Comprehensivehelpdesk-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    text-align: center;
  }


  .Comprehensivehelpdesk-section-title {
    color: #0C4791 !important;
    font-size: 2rem;
    font-weight: 600;
  }

  .Comprehensivehelpdesk-subtitle {
    font-size: 16px;
    color: #7a7a7a;
    margin: 20px auto 40px;
    max-width: 900px;
  }

  .Comprehensivehelpdesk-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-collapse: collapse;
  }

  .Comprehensivehelpdesk-item {
    padding: 30px 20px;
    position: relative;
    opacity: 1;
  }


  .Comprehensivehelpdesk-item:not(:nth-child(3n)) {
    border-right: 3px dashed #7a7a7a;
  }

  .Comprehensivehelpdesk-item:not(:nth-last-child(-n+3)) {
    border-bottom: 3px dashed #7a7a7a;
  }

  .Comprehensivehelpdesk-item h3 {
    color: #0C4791;
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 800;
  }

  .Comprehensivehelpdesk-item p {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.4;
  }


  @media (max-width: 600px) {
    .Comprehensivehelpdesk-container {
      grid-template-columns: 1fr;
      border: none;
    }

    .Comprehensivehelpdesk-item {
      border: none;
      border-bottom: 3px dashed #7a7a7a;
    }
  }



  /* Grid Card Style */
  .helpdesk-service-card {
    padding: 20px 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  /* Inner animated content */
  .help-service-content {
    padding: 15px;
    transition: transform 0.3s ease;
    font-family: "poppins" sans-serif;
  }

  .help-service-content:hover {
    transform: scale(1.05);
  }

  .help-service-content img {
    max-width: 50px;
    margin-bottom: 15px;
  }

  .help-service-content h5 {
    color: #0c4791;
    font-weight: 600;
    font-size: 20px;
  }

  .help-service-content p {
    font-family: "Poppins", Sans-serif;
    color: #7a7a7a;
    font-weight: 400;
    line-height: 1.4em;
    font-size: 14px;
  }

  .helpdesk-service-card {
    border: none;
  }

  @media (min-width: 768px) {

    .helpdesk-service-card:nth-child(3n+1),
    .helpdesk-service-card:nth-child(3n+2) {
      border-right: 5px dashed #e8eff7;
    }


    .helpdesk-service-card:nth-child(-n+6) {
      border-bottom: 5px dashed #e8eff7;
    }
  }

  @media (max-width: 767px) {
    .helpdesk-service-card {
      border-bottom: 5px dashed #e8eff7;
    }

    /* Remove last card's bottom border */
    .helpdesk-service-card:last-child {
      border-bottom: none;
    }
  }





  /*cybersecurity compilance*/
  .security-service-card {
    flex: 0 0 360px;
    background: white;
    border: 2px dashed #adb6BE;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 360px !important;
    height: 514px !important;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* Ensures content starts from top */
  }

  .security-service-card img {
    max-width: 296px;
    max-height: 296px;
    object-fit: contain;
    margin-bottom: 20px;
  }

  .security-service-card h3 {
    font-size: 1.1rem;
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
  }

  .security-service-card p {
    font-size: 15px;
    color: #6D7882;
    line-height: 1.5;
    flex-grow: 1;
    font-weight: 300;
  }

  .security-service-card:hover {
    border: 2px dashed #005a9c;
  }

  @media (max-width: 768px) {
    .security-service-card {
      flex: 0 0 400px;
      max-width: 400px;
    }
  }



  /*---------------Start of -security-scaning -----------------------------*/
  /*##################################Security Scanning#######################*/

  .security-scaning {
    background-color: #f8f9fc;
  }

  .security-scaning .intro h3 {
    font-size: 2rem;
    line-height: 1.3em;
    font-weight: 600;
    color: #0C4791;
    font-family: 'poppins', sans-serif;
    color: #0C4791;
  }

  .security-scaning .intro p {
    font-size: 16px;


    color: #7a7a7a;
    font-family: 'poppins' sans-serif;
    max-width: 1200px;

    margin-left: auto;
    margin-right: auto;
  }


  /* Dashed Top Border Before ASV Section */
  .border-top-dashed {
    border-top: 1px dashed #0d3c83;
  }

  /* ASV Section */
  .asv-security-scanning-section {
    background-color: #f8f9fc;
  }

  .asv-security-scanning-section .asv-section-title {

    font-weight: 600;
    font-family: 'poppins', sans-serif;
    font-size: 2rem;
    color: #0C4791;
    text-align: left;
  }

  .asv-security-scanning-section .asv-description {
    font-size: 16px;

    font-family: 'poppins' sans-serif;
    font-family: 400;
    color: #7a7a7a;
  }

  .card-feature-card {
    border-radius: 10px;
    width: 347px;
    color: #7a7a7a;
    height: 288px;

    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    transition: box-shadow 0.3s ease;
    /* border: none; */
    background: #fff;
  }

  .card-feature-card h5 {
    color: #0c4791;

  }

  .card-feature-card p {
    color: #7a7a7a;
    font-weight: 300;
  }


  .card-feature-card img {
    height: 90px;
    width: 90px;
    align-items: center;
    justify-content: center;
  }

  .security-scaning-para {
    margin-top: 32px;
  }

  .security-scaning-para p {
    font-family: 'poppins' sans-serif;
    font-size: 16px;
    font-weight: 400;


  }

  .asv-title2 {
    font-family: 'poppins' sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-size: 24px;
    margin: 20px 0px;
    color: #0c4791;
  }

  .security-scaning-button {
    background-color: #0C4791;
    color: #fff;
    border-radius: 5px;
    font-size: 16px;
  }



  /*-----------------------------------service page start--------------------------------------------------------------------------------*/
  /* ================================================================================
                                   SECTION: service Section
   ================================================================================== */


  /* .servicing {
      padding: 60px 0;
      text-align: center;
    } */

  .servicing-heading {

    font-weight: 600;
    padding-top: 60px;
    text-align: center;
    color: #0c4791;
    font-size: 2rem;
    margin-bottom: 60px;

  }

  .servicing-box {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
    color: #1e293b;
    height: 100%;
  }

  .servicing-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }

  .servicing-box img {
    width: 86px;
    height: 86px;
    margin-bottom: 20px;
    justify-items: left;
  }

  .servicing-title {
    font-weight: 600;
    font-size: 20px;

    color: black;
    margin-bottom: 15px;
    display: block;
  }

  .servicing-box p {
    font-size: 14px;
    color: #666;
    margin: 0;
  }



  /*devops services*/


  .devops-maincontainer {
    padding-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 1100px;

    margin: auto;
  }

  .devops-maincontainer h2 {
    font-size: 30px;
    font-weight: 600;
    color: #0c4791;
  }

  .devops-maincontainer p {
    font-size: 16px;
    font-weight: 300;
    color: #7a7a7a;
  }

  .cicd-section {
    max-width: 1150px;
    margin: 60px auto;
    padding: 0 20px;
  }

  .cicd-section-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
  }

  .cicd-circle {
    width: 50px;
    height: 50px;
    background-color: #0c4791;
    color: #fff;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
  }

  .cicd-section-header h2 {
    font-size: 24px;
    font-weight: 600;
    color: #0c4791;
    margin: 0;
  }

  .cicd-card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .cicd-card {
    background-color: #fefcff;
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.33% - 20px);
    min-width: 260px;

    text-align: center;
  }

  .cicd-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
  }

  .cicd-card p {
    font-size: 14px;
    color: #7a7a7a;
    line-height: 1.5;
  }





  @media (max-width: 600px) {
    .cicd-card-container {
      flex-direction: column;
    }
  }


  .pci-text {
    color: #7a7a7a;
  }

  .pci-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
  }

  .pci-number {
    width: 45px;
    height: 45px;
    margin: 0 auto;
    background-color: #0c4791;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 12px;
  }

  /***************************************************************/

  /*testimonial page    */


  .customer-testimonial-service {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    color: #7a7a7a;
    font-weight: 400;
    line-height: 1.5em;
  }

  .customer-testimonial-service .testimonial-card {
    background-color: #fff;
    padding: 24px;
   /* width: 550px; */
    height: fit-content;

    border-radius: 12px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.13);

  }

  .customer-testimonial-service .testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;

  }

  .customer-testimonial-service .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 12px;
  }


  .customer-testimonial-service h3 {
    line-height: 1.3em;
    font-family: 'poppins' sans-serif;
    font-weight: 600;
    font-size: 32px;
    color: #0C4791;

  }


  .customer-testimonial-service .testimonial-author .name {
    color: #0C4791;
    font-weight: 600;
  }

  .customer-testimonial-service .testimonial-author .role {
    font-size: 14px;
    color: #7a7a7a;
  }


  /*scrolling buttom to top*/

  #backToTopBtn {
    position: fixed;
    bottom: 65px;
    /* offset from chat icon */
    right: 28px;
    width: 26px;
    height: 26px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: none;
    z-index: 1000;
    justify-content: center;
    align-items: center;
  }

  #backToTopBtn i {
    font-size: 14px;
  }

  /* ---------------- CHAT ICONS ------------------- */
  .chat-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index:1000;
  }

  .chat-toggle {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .chat-icons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;

  }

  .chat-icons a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25D366;
    display: flex;
    font-size: 18px;

    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
  }

  .chat-icons a:nth-child(2) {
    background-color: #0077B5;
  }

  /* LinkedIn */
  .chat-icons a:nth-child(3) {
    background-color: #0f9d58;
  }

  /* Phone */
  .chat-icons a:nth-child(4) {
    background-color: #00AFF0;
  }

  /* Skype */

  .chat-icons .close {
    background-color: #000;
    color: white;
    font-size: 20px;
  }

  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  .consultation-content .bookCandey {
    padding: 12px 25px;
    background-color: #fff;
    color: #0c4791;
    border-radius: 6px;
    cursor: pointer;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    display: inline-block;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none !important;
    position: relative;
  }

  .consultation-content .bookCandey:hover {
    background-color: #0c4791;
    color: #fff;
  }

  .card-content .content-section a {
    padding: 6px 30px;
    border: 1px solid #3F444B;
    font-size: 16px;
    width: 150px;
    background: white;
    color: #3F444B;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
  }

  .pagination-wrapper {
    display: flex;
    justify-content: flex-end;
    /* push pagination to right */
    margin-top: 25px;
    margin-right: 10px;
    /* optional padding from right */
  }

  .pagination {
    margin: 0;
  }



  .faqsection {
    max-width: 900px;
    width: 100%;
    margin-top: 40px;

    overflow: hidden;
  }

  .faqsection h5 {
    color: #2c3e50;
    text-align: left;
    margin-bottom: 8px;
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }

  .faqsection h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: #3498db;
    border-radius: 2px;
  }

  .faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e7ff;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.1);
  }

  .faq-question {
    background-color: #3498db;
    color: white;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
    font-size: 18px;
    text-align: left;
  }

  .faq-question:hover {
    background-color: #2980b9;
  }

  .faq-question i {
    transition: transform 0.3s;
  }

  .faq-question.active i {
    transform: rotate(180deg);
  }

  .faq-answer {
    background-color: #f8f9fa;
    color: #5a5a5a;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease-out;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
  }

  .faq-answer.show {
    padding: 20px 25px;
    max-height: 500px;
  }

  .faq-answer ul {
    padding-left: 20px;
    margin: 10px 0;
    text-align: left;
  }

  .faq-answer li {
    margin-bottom: 8px;
    text-align: left;
  }

  /* Responsive adjustments */
  @media (max-width: 768px) {
    .faqsection {
      padding: 20px;
    }

    .faqsection h1 {
      font-size: 26px;
    }

    .faq-question {
      padding: 15px 20px;
      font-size: 16px;
    }

    .faq-answer.show {
      padding: 15px 20px;
    }
  }

  @media (max-width: 480px) {
    .faq-question {
      padding: 12px 15px;
      font-size: 15px;
    }

    .faq-answer.show {
      padding: 12px 15px;
      font-size: 14px;
    }
  }



  /*case Study */
  .case-study-card {
    background: white;
    border: none;

    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;

    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .case-study-icon {
    width: 100%;
    max-width: 400px;
    max-height: 400px;
    /* limits card image width */
    margin-bottom: 15px;
  }

  .case-study-img {
    width: 100%;

    aspect-ratio: 1/1;
    /* maintains 1:1 ratio */
    object-fit: cover;
    /* fills the square without stretching */

  }

  .case-study-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    align-items: center;
    line-height: 1.5;
    padding: 20px 0px
  }

  a {
    text-decoration: none;
    color: inherit;
  }

  a:hover {
    color: inherit;
  }

  .case-study-wrapper {
    height: 100%;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .case-study-card {
      padding: 15px;
    }

    .case-study-text {
      font-size: 14px;
    }

    .case-study-icon {
      max-width: 120px;
      margin-bottom: 12px;
    }
  }

  @media (max-width: 576px) {
    .case-study-card {
      padding: 12px;
    }

    .case-study-text {
      font-size: 13px;
    }

    .case-study-icon {
      max-width: 100px;
    }
  }



  @media (max-width: 992px) {
    .case-image {

      margin-top: 20px;
    }
  }


  @media (max-width: 575px) {
    .case-card-img {

      margin-top: 20px;
    }
  }



  /*------------------------------------------------case study detail page  -------------------------------------------- */

  .case-study-detail-image {
    margin-top: 20px;
    margin-bottom: 30px;
    max-width: 300px;
    max-height: 300px;

  }


  

/*--------------------------------------------------thankyou page----------------------------------------------*/
 .thankyou-container {
            background: url('assets/images/background-image.jpg') no-repeat center center;
            background-size: cover;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            flex-direction: column;
            color: #333;
            position: relative;
        }

        .thankyou-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(255, 255, 255, 0.9);
        }

        .thankyou-content {
            position: relative;
            z-index: 2;
        }

        .thankyou-content h1 {
            font-size: 60px;
            font-weight: 500;
            margin-top: 20px;
            color: #000;
            margin-bottom: 15px;
        }

        .thankyou-content p {
            font-size: 25px;
            color: #555;
            margin-bottom: 28px;
            font-weight: 400;
            line-height: 30px;
        }

        .btn-home {
            background: #000;
            color: #fff;
            border-radius: 0;
            padding: 10px 20px;
            transition: all 0.3s ease;
        }

        .btn-home:hover {
            background: blue;
            color: #fff;
        }

        .thankyou-content img {
            height: 150px;
        }





    /*-------------------------------------------error page--------------------------------------------*/

  .error-code {
  font-size: 180px;
  font-weight: 700;
  color: #0b0b0b;
  letter-spacing: -15px;
  margin-bottom: 10px;
}

.digit {
  margin: 0 10px;
  color: #222;
}

.zero {
  color: blue; /* red accent for visibility */
}

.low {
  position: relative;
  top: 20px; /* slightly lower */
}

.high {
  position: relative;
  top: -20px; /* slightly higher */
}


