:root {
    --pcolor: #000066;
    --scolor: #f5f6fa;
    --tcolor: #9a9a9a;
    --fcolor: #333944;
  }
  
  html {
    scroll-behavior: smooth;
    /* overflow-x: hidden; */
  }
  
  /* * {
    outline: 1px solid red;
  } */
  
  body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* background-color: #2c67e5; */
    color: white;
    transition: background-color 0.3s ease;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover
  {
    text-decoration: none;
  }
  
  .section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
  }
  
  .container {
    width: 90%;
    /* background-color: #00ff8c; */
    /* overflow: hidden; */
  }

  .container.cont{
    width:100%;
  }

  
  .background-image-section {
    background-size: cover; /* Makes sure the background covers the container */
    background-repeat: no-repeat; /* Prevents the background from repeating */
    background-position: center; /* Centers the background image */
    padding-top: 30px;
    /* height: 200vh; */
  }
  
  .card-subtitle {
    background-color: #f0f4ff;
    color: #052b78;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
    margin-bottom: 10px;
  }
  /* ------------------------------------------------ */
  body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #f9f9fb;
    border-bottom: 1px solid #ddd;
}

.navbar .logo {
    display: flex;
    align-items: center;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}

.navbar .logo span {
    color: #5765f2;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    position: relative;
}

.navbar .nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
}

.navbar .nav-links .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #f9f9fb;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    border-radius: 10px;
    list-style: none;
    padding: 10px;
    z-index: 1000;
}

.navbar .nav-links li:hover .dropdown {
    display: block;
}


.navbar .nav-links .dropdown a {
    display: block;
    padding: 5px 10px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
}

.dropdown:hover .nav-links{
  color: red;
}


.navbar .nav-links .dropdown a:hover {
    background-color: #5765f2;
    color: #fff;
}

.navbar .cta {
    display: flex;
    gap: 10px;
}

.navbar .cta button {
    background-color: #5765f2;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
}

.navbar .cta button a {
    text-decoration: none;
    color: white;
}

.navbar .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.navbar .hamburger div {
    width: 25px;
    height: 3px;
    background-color: black;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: #f9f9fb;
    border-top: 1px solid #ddd;
    padding: 10px 20px;
}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-size: 16px;
}

@media (max-width: 1024px)
{
  .navbar .nav-links .dropdown {
    left: -100px;
   }

   
}

@media (max-width: 768px) {
    .navbar .nav-links,
    .navbar .cta {
        display: none;
    }

    .navbar .hamburger {
        display: flex;
    }

  
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
}

/* --------------------------------------------------------------------- */
  .hero-main-section {
    position: relative;
    background-size: cover;
    background-position: center;
    /* height: 100vh; */
    display: flex; /* Use flexbox for layout */
    justify-content: center; /* Horizontally center content */
    text-align: center; /* Center text alignment */
    align-items: flex-start;
    z-index: 0;
  }
  
  .hero-sub-section {
    text-align: center;
    padding: 40px 20px;
  }
  h1
  {
    line-height: 1.2;
  }
  
  .hero-sub-section-top-heading {
    text-align: center; /* Centers the text horizontally */
    padding: 10px; /* Optional: Adds some padding for spacing */
    margin-bottom: 30px;
    font-size: 24px;
  }
  
  .hero-sub-section-top-heading-text {
    background-color: #002165; /* Background color only on the text */
    color: white;
    font-weight: 400;
    border-radius: 6px;
    font-style: italic;
    font-size: 14px;
    padding: 10px 15px; /* Adds some padding around the text */
    display: inline-block;
    box-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
  }
  
  .hero-sub-section h1 {
    font-size: 65px;
    font-weight: 350;
    line-height: 1.2;
    color: white;
    margin-top: -10px;
    margin-bottom: 15px;
  }
  
  .hero-sub-section .highlight {
    background: linear-gradient(
      to right,
      white,
      #07baf3
    ); /* Gradient from left to right */
    -webkit-background-clip: text; /* Ensures the gradient is clipped to the text */
    -webkit-text-fill-color: transparent; /* Makes the text transparent, showing the gradient */
    background-clip: text; /* For non-webkit browsers */
  }
  
  .hero-sub-section p {
    font-size: 19px;
    line-height: 30px;
    font-weight: 400;
    color: white;
  }
  
  .hero-button {
    display: inline-block;
    background-color: #052b78;
    color: white;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
  }
  
  .hero-button1 {
    display: inline-block;
    background-color: white;
    color: #052B78;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
  }
  .hero-button1:hover {
    background-color:#0073e6;
    color: white;
    text-decoration: none;
  }
  
  .hero-button1.promo {
    display: inline-block;
    background-color: white;
    color: #052B78;
    cursor: pointer;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 250;
    margin-top: 30px;
    width: max-content;
    z-index: 2;
  }
  .hero-button1.promo:hover {
    background-color:#0073e6;
    color: white;
    text-decoration: none;
  }
  
  
  
  .hero-button1 i {
    margin-left: 12px;
    font-size: 16px;
  }
  
  .hero-button:hover {
    background-color:#07baf3;
    text-decoration: none;
  }
  
  .hero-button i {
    margin-left: 12px;
    font-size: 16px;
  }
  
  /* Responsive styles */
  /* Default styles for larger screens (e.g., desktops) are already defined */
  
  /* Medium screens (e.g., tablets, small laptops) */
  @media (max-width: 1024px) {
  .hero-main-section {
    padding: 20px; /* Add padding for spacing on smaller devices */
  }
  
  .hero-sub-section h1 {
    font-size: 48px; /* Reduce font size */
    margin-bottom: 10px;
  }
  
  .hero-sub-section p {
    font-size: 18px; /* Slightly smaller font for paragraph */
    line-height: 28px;
  }
  
  .hero-button,
  .hero-button1 {
    padding: 12px 25px; /* Smaller button size */
    font-size: 15px;
  }
  }
  
  /* Small screens (e.g., large mobile phones, smaller tablets) */
  @media (max-width: 768px) {
  .hero-sub-section h1 {
    font-size: 36px; /* Further reduce heading size */
    line-height: 1.2; /* Maintain proper line height */
  }
  
  .hero-sub-section p {
    font-size: 16px;
    line-height: 26px; /* Slightly tighter spacing */
  }
  
  .hero-button,
  .hero-button1 {
    padding: 10px 20px; /* Adjust button padding */
    font-size: 14px;
  }
  
  .hero-sub-section-top-heading-text {
    font-size: 16px; /* Reduce top heading font size */
    padding: 8px 12px;
  }
  }
  
  /* Extra small screens (e.g., mobile phones) */
  @media (max-width: 480px) {
  .hero-main-section {
    align-items: center; /* Center-align for smaller devices */
    /*padding: 15px; */
  }
  
  .hero-sub-section h1 {
    font-size: 29px; /* Reduce heading size further */
    margin-bottom: 8px;
    margin-top: 20px;
  }
  
  .hero-sub-section p {
    font-size: 14px; /* Smaller font for paragraph */
    line-height: 24px;
  }
  
  .hero-sub-section{
    padding: 20px;
  }
  
  .hero-button,
  .hero-button1 {
    padding: 8px 18px; /* Reduce button size */
    font-size: 14px;
  }
  
  .hero-sub-section-top-heading-text {
    font-size: 12px; /* Further reduce top heading font size */
    padding: 6px 10px;
  }
  
  .service-text-content p{
    font-size: 16px;
  }
  
  
  }
  
  /* Ultra small screens (e.g., very small phones) */
  @media (max-width: 320px) {
  .hero-main-section {
    padding: 10px;
  }
  
  .hero-sub-section h1 {
    font-size: 24px; /* Adjust heading size for very small screens */
  }
  
  .hero-sub-section p {
    font-size: 12px;
    line-height: 20px; /* Tighten paragraph spacing */
  }
  
  
  
  .hero-button,
  .hero-button1 {
    padding: 6px 16px;
    font-size: 12px;
  }
  
  .hero-sub-section-top-heading-text {
    font-size: 12px;
    padding: 5px 8px;
   
  }
  }
  
  
  /* ----------------------------------------- video container ---------------------------------------------- */
  
  .video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 888px;
    height: 500px;
    margin: 0 auto; /* Centers the container horizontally */
  }
  
  .play-button {
    position: absolute;
    top: 50%;
    left: 51%;
    transform: translate(-50%, -50%);
    padding: 100px;
    /* background-color: black; */
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  /* Responsive styles */
  /* Default styles for larger screens are already defined */
  
  /* Medium screens (e.g., tablets, small laptops) */
  @media (max-width: 1024px) {
  .video-container {
    max-width: 700px; /* Reduce the width for medium devices */
    height: 400px;
   /* Adjust height */
  }
  
  .play-button {
    padding: 80px; /* Scale down play button size */
    font-size: 18px; /* Adjust font size */
  }
  }
  
  /* Small screens (e.g., large mobile phones, smaller tablets) */
  @media (max-width: 768px) {
  .video-container {
    max-width: 500px; /* Further reduce width for small screens */
    height: 300px; /* Adjust height */
    
  }
  .video-element{
    margin-top: 50px;
  }
  
  .video-thumbnail{
    margin-top: 50px;
  }
  .play-button {
    padding: 60px; /* Reduce button size */
    font-size: 16px; /* Adjust font size */
  }
  }
  
  /* Extra small screens (e.g., mobile phones) */
  @media (max-width: 480px) {
  .video-container {
    max-width: 90%; /* Make the container responsive to screen width */
    height: 220px; /* Adjust height */
  }
  
  .video-element{
    margin-top: 0px;
  }
  
  .video-thumbnail{
    margin-top: 0px;
  }
  
  .play-button {
    padding: 40px; /* Reduce button size further */
    font-size: 14px; /* Smaller font size */
  }
  }
  
  /* Ultra small screens (e.g., very small phones) */
  @media (max-width: 320px) {
  .video-container {
    max-width: 100%; /* Ensure container spans most of the screen */
    height: 180px; /* Further reduce height */
  }
  
  .play-button {
    padding: 30px; /* Smallest button size */
    font-size: 12px; /* Adjust font size for very small devices */
  }
  }
  
  /* ----------------------------------------------solution container-------------------------------------------- */
  
  .solutions-section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    color: black;
    text-align: center;
  }
  
  .solutions-section-title span {
    color: #052b78;
  }
  
  /* Grid Layout */
  .solutions-grid {
    
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
   
  }
  
  /* Card Styles */
  .solutions-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    
    text-align: center;
    box-shadow: 0px 0px 10px 1px rgba(94, 191, 235, 0.4);
    transition: all ease 0.1s;
  }
  
  .solutions-card:hover {
    box-shadow: 0px 1px 30px 10px rgba(94, 191, 235, 0.4);
   
  }
  
  .icon-container1 {
    font-size: 3rem;
    color:#052b78;
  }
  
  .solutions-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
  }
  
  .solutions-card img {
    height: 130px;
  }
  
  .solutions-card p {
    font-size: 1rem;
    color: #555;
  }
  
  
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .solutions-card h3 {
      font-size: 1.3rem;
    }
  
  }
  
  /* Responsive Design */
  
  /* Medium Screens (Tablets) */
  @media (max-width: 1024px) {
    .solutions-grid {
      grid-template-columns: repeat(3, 1fr); /* Switch to 3 columns */
      gap: 20px;
    }
  
    .solutions-section-title {
      font-size: 2rem;
    }
  
    .solutions-card h3 {
      font-size: 1.2rem;
    }
  
    .solutions-card img {
      height: 110px;
    }
  }
  
  @media (min-width:820px ) and (max-width:1024px)
  {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
      gap: 15px;
    }
  }
  
  /* Small Screens (Mobile) */
  @media (max-width: 768px) {
    .solutions-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
      gap: 15px;
    }
  
    .solutions-section-title {
      font-size: 1.8rem;
    }
  
    .solutions-container .works-heading{
      margin-top: 80px;
  
    }
  
    .solutions-card h3 {
      font-size: 1.1rem;
    }
  
    .solutions-card p {
      font-size: 0.9rem;
    }
  
    .solutions-card img {
      height: 90px;
    }
  }
  
  /* Extra Small Screens (Mobile Portrait) */
  @media (max-width: 480px) {
    .solutions-grid {
      grid-template-columns: 1fr; /* Stack in a single column */
      gap: 20px;
    }
  
  
    .solutions-container .works-heading{
      margin-top: -100px;
  
    }
                
  
    .solutions-section-title {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
  
    .solutions-card h3 {
      font-size: 1rem;
    }
  
    .solutions-card p {
      font-size: 0.85rem;
    }
  
    .solutions-card img {
      height: 80px; /* Adjust image size for smallest screens */
    }
  }
  
  
  
  
  /* ---------------------------------------------- logos container ----------------------------------------- */
  
  .dark-background {
    /* margin-top: 10px; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
  }
  
  .logo-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(
      to right,
      transparent,
      white 5%,
      white 95%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      white 5%,
      white 95%,
      transparent
    );
  }
  
  .logo-row {
    display: flex;
    align-items: center;
    white-space: nowrap;
    margin-top: 10px;
    height: 100px;
  }
  
  .logo-row img {
    height: 150px;
    width: auto;
    margin: 0 30px;
  }
  
  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  .scroll-right {
    animation: scrollRight 20s linear infinite;
  }
  
  .scroll-left {
    animation: scrollLeft 20s linear infinite;
  }
  
  /* Responsive styles */
  /* Default styles for larger screens */
  
  /* Medium screens (e.g., tablets, small laptops) */
  @media (max-width: 1024px) {
  .dark-background {
    height: 120px; /* Reduce height for medium devices */
  }
  
  .logo-container {
    width: 90%; /* Adjust logo container width */
  }
  
  .logo-row img {
    height: 120px; /* Scale down the logo height */
    margin: 0 20px; /* Adjust margin between logos */
  }
  
  .scroll-right, .scroll-left {
    animation-duration: 15s; /* Speed up scrolling animation */
  }
  }
  
  /* Small screens (e.g., large mobile phones, smaller tablets) */
  @media (max-width: 768px) {
  .dark-background {
    height: 100px; /* Further reduce height */
  }
  
  .logo-container {
    width: 100%; /* Full width on smaller screens */
  }
  
  .logo-row {
    height: 80px; /* Adjust height */
  }
  
  .logo-row img {
    height: 100px; /* Further scale down the logo size */
    margin: 0 15px; /* Adjust margin for smaller screens */
  }
  
  .scroll-right, .scroll-left {
    animation-duration: 12s; /* Further speed up scrolling animation */
  }
  }
  
  /* Extra small screens (e.g., mobile phones) */
  @media (max-width: 480px) {
  .dark-background {
    height: 80px; /* Reduce height for extra small screens */
  }
  
  .section.logos{
    margin-top: 20px;
  }
  
  
  .logo-row img {
    height: 80px; /* Smaller logo height */
    margin: 0 10px; /* Tighten margin between logos */
  }
  
  .scroll-right, .scroll-left {
    animation-duration: 10s; /* Speed up scrolling animation for small screens */
  }
  }
  
  /* Ultra small screens (e.g., very small phones) */
  @media (max-width: 320px) {
  .dark-background {
    height: 60px; /* Further reduce height */
  }
  
  .logo-row img {
    height: 60px; /* Smaller logo size */
    margin: 0 8px; /* Tighten margin further */
  }
  
  .scroll-right, .scroll-left {
    animation-duration: 8s; /* Fast scrolling for very small devices */
  }
  }
  
  
  /* ------------------------------------------------ stats ------------------------------------------------ */
  
  .sec3 {
    background-color: #052b78;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(121, 116, 116, 0.5);
    padding: 10px 100px;
    /* margin-top: -200px; */
  }
  
  .text h2 {
    font-size: 2rem;
    font-weight: medium;
    color: white;
  }
  
  .text p {
    margin-top: -20px;
    font-size: 1.2em;
    font-weight: 350;
    color: white;
    line-height: 1.5;
  }
  
  .stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
    color: #01a9de;
    gap: 75px;
    padding: 10px 0 50px;
    border-top: 2px solid transparent; /* Optional to adjust padding */
  }
  
  .stats-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative; /* To place the border */
  }
  
  .purecounter {
    font-size: 6rem;
  }
  
  .purecounter-symbol {
    font-size: 4rem;
  }
  
  .stats-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -37.5px; /* Half of the gap to center the line */
    height: 100%;
    width: 2px;
    background-color: #2c68e5;
  }
  
  .stats-item p {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    /* color: #01a9de; */
  }
  
  .counter-container {
    display: flex;
    align-items: baseline;
  }
  
  
  /* Responsive styles */
  
  /* Default styles for larger screens */
  
  /* Medium screens (e.g., tablets, small laptops) */
  @media (max-width: 1024px) {
  .sec3 {
    padding: 10px 50px; /* Reduce padding for smaller screens */
   /* Adjust margin for better alignment */
  }
  
  .text h2 {
    font-size: 2rem; /* Decrease heading size */
  }
  
  .text p {
    font-size: 1em; /* Adjust paragraph font size */
  }
  
  .stats {
    gap: 50px; /* Reduce gap between stats items */
    padding: 10px 0 30px; /* Adjust padding */
  }
  
  .purecounter {
    font-size: 5rem; /* Reduce counter size */
  }
  
  .purecounter-symbol {
    font-size: 3.5rem; /* Adjust symbol size */
  }
  
  .stats-item:not(:last-child)::after {
    right: -25px; /* Adjust line placement */
  }
  
  .stats-item p {
    font-size: 16px; /* Adjust text size */
  }
  }
  
  /* Small screens (e.g., large mobile phones, smaller tablets) */
  @media (max-width: 768px) {
  .sec3 {
    padding: 10px 30px; /* Further reduce padding */
     /* Adjust alignment for small screens */
  }
  
  .text h2 {
    font-size: 1.8rem; /* Further reduce heading size */
  }
  
  .text p {
    font-size: 0.9em; /* Scale down paragraph font size */
  }
  
  .stats {
    flex-direction: column; /* Stack stats items vertically */
    gap: 30px; /* Adjust gap for vertical layout */
    padding: 20px 0 20px;
  }
  
  .purecounter {
    font-size: 4rem; /* Reduce counter size */
  }
  
  .purecounter-symbol {
    font-size: 3rem; /* Adjust symbol size */
  }
  
  .stats-item:not(:last-child)::after {
    content: none; /* Remove the line between items for vertical layout */
  }
  
  .stats-item p {
    font-size: 14px; /* Scale down text size */
  }
  }
  
  /* Extra small screens (e.g., mobile phones) */
  @media (max-width: 480px) {
  .sec3 {
    padding: 10px 20px; /* Minimal padding for small screens */
    margin-top: -80px; /* Adjust for better fit */
  }
  
  .text h2 {
    font-size: 1.5rem; /* Further decrease heading size */
  }
  
  .text p {
    font-size: 0.8em; /* Adjust paragraph font size */
  }
  
  .stats {
    gap: 20px; /* Reduce gap further */
  }
  
  .purecounter {
    font-size: 3rem; /* Reduce counter size further */
  }
  
  .purecounter-symbol {
    font-size: 2.5rem; /* Adjust symbol size */
  }
  
  .stats-item p {
    font-size: 12px; /* Smaller text size */
  }
  }
  
  /* Ultra small screens (e.g., very small phones) */
  @media (max-width: 320px) {
  .sec3 {
    padding: 10px 10px; /* Minimal padding for ultra small screens */
    margin-top: -60px;
  }
  
  .text h2 {
    font-size: 1.2rem; /* Further decrease heading size */
  }
  
  .text p {
    font-size: 0.7em; /* Smaller paragraph font size */
  }
  
  .stats {
    gap: 15px; /* Reduce gap for very small screens */
  }
  
  .purecounter {
    font-size: 2.5rem; /* Smaller counter size */
  }
  
  .purecounter-symbol {
    font-size: 2rem; /* Adjust symbol size */
  }
  
  .stats-item p {
    font-size: 10px; /* Smallest text size */
  }
  }
  
  
  /* ///////////////////////////////////////////////////////////
  10. apps
  /////////////////////////////////////////////////////////// */
  .apps-area {
    background: #f2f8fd;
    padding-top: 100px;
    display: flex;
    justify-content: center;
    border-radius: 12px;
  }
  
  .apps-icon {
    display: grid;
    grid-template-columns: repeat(8, 1fr); /* Create 8 equal columns */
    margin: 0 auto; /* Center the grid container */
    margin-bottom: 25px;
    gap: 20px;
    padding: 0 30px;
  }
  
  .apps-icon-item {
    animation: bounce 2s infinite; /* Use the new bounce animation */
  }
  
  .apps-icon-item:nth-child(even) {
    animation-delay: 1s; /* Stagger the animation for even items */
  }
  
  /* New bounce animation */
  @keyframes bounce {
    0%,
    100% {
      transform: translateY(0); /* Start and end at original position */
    }
    50% {
      transform: translateY(-10px); /* Move up by 10px at the midpoint */
    }
  }
  
  .apps-content {
    text-align: center;
  }
  
  .apps-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: black;
    line-height: 1.2;
    letter-spacing: -1.76px;
    margin-bottom: 15px;
  }
  
  .apps-content p {
    font-size: 16px;
    font-weight: 350;
    line-height: 22px;
    margin-bottom: 45px;
  }
  
  .apps-shape-1 {
    position: absolute;
    left: 5%;
    top: 40%;
    z-index: -2;
  }
  
  .apps-shape-2 {
    position: absolute;
    left: calc(10% + 8px);
    bottom: 0px;
  }
  
  .apps-shape-3 {
    position: absolute;
    left: 0;
    bottom: 0;
  }
  
  .apps-shape-4 {
    position: absolute;
    bottom: 185px;
    right: calc(21% - 12px);
  }
  
  .apps-shape-5 {
    position: absolute;
    right: calc(9% + 7px);
    top: 50%;
    transform: translateY(-50%);
  }
  
  .apps-shape-6 {
    position: absolute;
    right: calc(13% + 3px);
    bottom: 115px;
  }
  
  /* Animation for the icons */
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1); /* Scale up to 110% */
    }
    100% {
      transform: scale(1);
    }
  }
  
  
  /* Default styles for larger screens */
  
  /* Medium screens (e.g., tablets, small laptops) */
  @media (max-width: 1024px) {
  .apps-area {
    padding-top: 80px; /* Reduce padding */
  }
  
  .apps-icon {
    grid-template-columns: repeat(4, 1fr); /* Reduce columns to 4 */
    gap: 15px; /* Decrease gap between icons */
    padding: 0 20px;
  }
  
  .apps-content h2 {
    font-size: 36px; /* Reduce font size */
  }
  
  .apps-content p {
    font-size: 14px; /* Adjust paragraph size */
    line-height: 20px; /* Adjust line spacing */
  }
  
  .apps-shape-1,
  .apps-shape-2,
  .apps-shape-3,
  .apps-shape-4,
  .apps-shape-5,
  .apps-shape-6 {
    display: none; /* Hide decorative shapes for simplicity */
  }
  }
  
  /* Small screens (e.g., large mobile phones, smaller tablets) */
  @media (max-width: 768px) {
  .apps-area {
    margin-top: 480px;
    padding-top: 60px; /* Further reduce padding */
  }
  
  .apps-icon {
    grid-template-columns: repeat(3, 1fr); /* Reduce columns to 3 */
    gap: 10px; /* Decrease gap */
    padding: 0 10px;
  }
  
  .apps-content h2 {
    font-size: 28px; /* Further reduce font size */
  }
  
  .apps-content p {
    font-size: 12px; /* Scale down paragraph font size */
    line-height: 18px;
  }
  }
  
  /* Extra-small screens (e.g., mobile phones) */
  @media (max-width: 480px) {
  
    .apps-area {
      margin-top: 0px;
      
    } 
  
    .section.apparea{
      margin-top: 20px;
    }
  
  .apps-icon {
    
    grid-template-columns: repeat(2, 1fr); /* Reduce columns to 2 */
    gap: 8px;
    padding: 0 5px;
  }
  
  .apps-content h2 {
    font-size: 24px; /* Smaller font size for titles */
  }
  
  .apps-content p {
    font-size: 14px; /* Adjust paragraph size for small screens */
    line-height: 16px;
  }
  
  
  }
  
  
  
  /* -----------------------------------section 4 -------------------------------- */
  
  .service-heading {
    text-align: center;
    font-size: 1.5em;
  }
  
  
  
  .service-container {
    display: flex;
    /* max-width: 1200px; */
    /* margin: 0px auto; */
    border-radius: 10px;
  }
  
  .sidebar {
    border-radius: 10px 0px 0px 10px;
    /* width: 350px; */
    /* background-color: rgb(86, 83, 83); */
    color: #fff;
    padding: 10px;
    background-color: #052b78;
    /* background-color: rgb(17 61 205 / var(--tw-bg-opacity)); */
  }
  
  .sidebar h2 {
    position: relative; /* Make sure the pseudo-element is positioned relative to the heading */
    font-size: 16px;
    padding-left: 10px;
    margin-top: 20px; /* Top margin */
    margin-bottom: 30px;
    color: #b6c7f9;
  }
  
  .sidebar h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px; /* Adjust if necessary to match the text-underline-offset */
    width: calc(100% + 10px); /* Extend underline 50px beyond text */
    height: 1px; /* Thickness of the underline */
    background-color: #b6c7f9; /* Color of the underline */
  }
  
  .sidebar .service-option {
    margin-bottom: 20px;
    padding: 15px 10px;
    /* background-color: rgb(43, 39, 39); */
    cursor: pointer;
    width: 250px;
    /* margin-right: -20px; */
  
    font-weight: normal;
    border-radius: 5px;
    position: relative;
    color: #fff;
    transition: width 0.3s ease, padding-right 0.3s ease;
  }
  
  .sidebar .service-option.service-active {
    background-color: white !important;
    color: black !important;
    font-weight: bold;
  }
  
  .sidebar .service-option i {
    position: absolute;
    right: 20px; /* Distance from the right side of the .option */
    opacity: 0; /* Hide icon by default */
    transition: opacity 0.3s ease-in-out; /* Smooth opacity transition */
    font-size: 16px; /* Adjust icon size as needed */
  }
  
  .sidebar .service-option.service-active i {
    opacity: 1; /* Show icon when option is active */
    color: black; /* Icon color when active */
  }
  
  /* ------------------------presentation carousel---------------------------------- */
  /* Carousel Container */
  
  
  
  /* --------------------------------------------------lock ------------------------ */
  
  .sidebar .service-option-lock {
    margin-bottom: 20px;
    padding: 15px 10px;
    /* background-color: rgb(43, 39, 39); */
    cursor: pointer;
    width: 250px;
    margin-right: -20px;
    opacity: 0.6;
    font-weight: lighter;
    border-radius: 5px;
    position: relative;
    color: #fff;
    transition: width 0.3s ease, padding-right 0.3s ease;
  }
  
  .sidebar .service-option-lock i {
    position: absolute;
    right: 20px; /* Distance from the right side of the .option */
    opacity: 1; /* Hide icon by default */
    transition: opacity 0.3s ease-in-out; /* Smooth opacity transition */
    font-size: 16px; /* Adjust icon size as needed */
  }
  
  /* Tooltip styling with 'Coming Soon' text */
  .sidebar .service-option-lock::after {
    content: "Coming Soon";
    position: absolute;
    top: 50%;
    left: calc(100% - 70px); /* Positions tooltip slightly to the right */
    transform: translateY(-50%);
    background-color: black;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85rem;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1;
  }
  
  @media (max-width: 480px) {
    .sidebar .service-option-lock::after {
      top: 80%; /* Center the tooltip on smaller screens */
      left: calc(100%); /* Move the tooltip below the element */
      transform: translateX(-50%); /* Center horizontally */
      width: 50px;
      font-size: 8px;
    }
  
    .section.usecase{
      margin-top: 10px;
    }
  
    .works-heading.usecase{
      padding-top: 0px;
    }
  }
  
  /* Show tooltip on hover */
  .sidebar .service-option-lock:hover::after {
    opacity: 1;
    visibility: visible;
  }
  
  
   
  
  /* -----------------------service content ---------------------- */
  
  .content-grid {
    display: grid;
    grid-template-columns: 60% 40%;
  }
  
  .service-text-content {
    display: flex;
    flex-direction: column;
    padding: 30px;
  }
  
  .service-text-content-h1 {
    font-size: 30px;
    font-weight: bold;
    margin-top: 0;
    color: black;
    /* text-align: center; */
  }
  
  .service-text-content-p {
    font-size: 20px;
    margin-top: 0px;
    /* font-weight: 500; */
    line-height: 1.5;
    color: #575757;
  }
  
  .content-subgrid {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 45px;
    /* padding: 30px; */
  }
  
  .subgrid-content {
    box-shadow: 0 0px 6px rgba(0, 0, 0, 0.25);
    padding: 18px;
    border-radius: 10px;
    transition: transform 0.3s ease; /* Add transition for smoothness */
  }
  
  .subgrid-content:hover {
    transform: translateX(5px); /* Move slightly to the right */
  }
  
  .content-subgrid h1 {
    font-weight: bold;
    color: black;
    text-align: start;
    margin-left: 20px;
    font-size: 20px;
  }
  
  .content-subgrid p {
    font-size: 18px;
    line-height: 1.5;
    color: #575757;
  }
  
  .subgrid-subcontent {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  .service-icon {
    color: #052b78;
    font-size: 30px;
    background-color: #d7edfa;
    border-radius: 20%;
    padding: 15px;
  }
  .service-button {
    margin-top: 40px;
  }
  
  .service-button button {
    background-color: white;
    color: #043fb7;
    padding: 15px 30px;
    border: 2px solid #043fb7;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer; /* Move cursor pointer here */
  }
  
  .service-button button:hover {
    background-color: #052b78;
    color: white;
  }
  
  /* .service-video {
    margin-top: 20px;
    border-radius: 12px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
  } */

  .service-present{
    align-items: start;
  }
  
  .service-video {
    width: auto;
    border-radius: 12px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.25);
    object-fit: cover; /* Ensures the video fits nicely in the given dimensions */
  }
  
   /* Container for image and buttons */
   .image-container {
    position: relative;
    display: inline-block;
  
  }
  
  
  
  /* Default image styles */
  .service-image {
    width: 560px;
    height: 315px;
    transition: transform 0.3s ease-in-out; /* Smooth scaling effect */
    cursor: pointer;
  }
  
  /* Maximized image */
  .service-image.maximized {
    transform: scale(1.5); /* Scale the image */
    z-index: 10;
  }
  .image.container.maximized{
    transform: scale(1.5); /* Scale the image */
    z-index: 10;
  }
  
  
  
  /* Maximize button styles */
  .maximize-button {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
  }
  
  /* Close button styles */
  .close-button {
    position: absolute;
    top: -70px;
    right: -100px;
    background-color: rgba(255, 0, 0, 0.7);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 5px;
    z-index: 100;
    display: none;
  }
  
  /* Display close button when image is maximized */
  .service-image.maximized ~ .close-button {
    display: block;
  }
  
  /* Hide maximize button when image is maximized */
  .service-image.maximized ~ .maximize-button {
    display: none;
  }
  
  
  .service-image-container {
    /* background-color: #00ff8c; */
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px;
    /* margin-top: 100px; */
    width: 350px; /* Set a fixed width */
    height: 450px; /* Set a fixed height */
    overflow: hidden; /* Hide any overflow of the image */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  }
  
  .service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container */
    border-radius: 10px; /* Optional: Add rounded corners */
  }
  
  
  
  /* Carousel container */
  .carousel {
  
    width: 560px;
    height: 315px;
    position: relative;
    margin: auto;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  /* Fullscreen mode */
  .carousel.fullscreen {
   transform: scale(1.5);
    z-index: 200;
    background-color: transparent;
  }
  
  .carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Individual slide */
  .carousel-slide {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  /* Images inside slides */
  .carousel-slide img {
    width: 100%;
    height: auto;
  }
  
  /* Navigation buttons */
  .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
  }
  
  .prev {
    left: 10px;
  }
  
  .next {
    right: 10px;
  }
  /* Maximize button */
  .maximize-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000066;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 300;
  }
   .carousel.fullscreen .maximize-btn{
    display:none;
   }
  
  /* Close button for fullscreen mode */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 300;
    display: none;
  }
  
  .carousel.fullscreen .close-btn {
    display: block;
  }
  
  .carousel1 {
  
    width: 560px;
    height: 315px;
    position: relative;
    margin: auto;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
  }
  
  /* Fullscreen mode */
  .carousel1.fullscreen {
   transform: scale(1.5);
    z-index: 200;
    background-color: transparent;
  }
  
  .carousel-slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  /* Individual slide */
  .carousel-slide1 {
    min-width: 100%;
    box-sizing: border-box;
  }
  
  /* Images inside slides */
  .carousel-slide1 img {
    width: 100%;
    height: auto;
  }
  
  /* Navigation buttons */
  .carousel-button1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
  }
  
  .prev1 {
    left: 10px;
  }
  
  .next1 {
    right: 10px;
  }
  /* Maximize button */
  .maximize-btn1 {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background-color: #000066;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 300;
  }
   .carousel1.fullscreen .maximize-btn1{
    display:none;
   }
  
  /* Close button for fullscreen mode */
  .close-btn1 {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 300;
    display: none;
  }
  
  .carousel1.fullscreen .close-btn1 {
    display: block;
  }
  
  .card-usecase{
    padding: 30px;
  }
  
  /* Fullscreen button styling */
  .fullscreen-button {
    display: none;
    position: absolute;
    top: 10px; /* Position at the top-right corner */
    right: 10px;
    z-index: 999;
    padding: 10px 20px;
    background-color: rgba(51, 51, 51, 0.8); /* Slight transparency */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
  }
  
  .fullscreen-button:hover {
    background-color: rgba(51, 51, 51, 1); /* Darken on hover */
  }
  
  /* Optional: Style for the image container */
  .image-container {
    position: relative;
    display: inline-block;
  }
  
  /* Fullscreen simulated class for iOS devices */
  .fullscreen-simulated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: black;
    z-index: 1000;
  }
  
  @media (max-width: 768px){
    .carousel.fullscreen {
      transform: scale(1.2);
       z-index: 200;
       background-color: transparent
     }
  
     .carousel1.fullscreen {
      transform: scale(1.2);
       z-index: 200;
       background-color: transparent
     }
  
  }
  
  @media(min-width:540px) and (max-width:767px)
  {
    .service-video {
      width:400px; 
      height: 250px;
    }
  
    .carousel{
      width:400px;
      height: 240px;
      position: relative;
      margin: auto;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }
  
    .carousel1{
      width:400px;
      height: 240px;
      position: relative;
      margin: auto;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
    }
  
    .carousel.fullscreen {
      transform: scale(1.3);
       z-index: 200;
       background-color: transparent;
     }
  
     .carousel1.fullscreen {
      transform: scale(1.3);
       z-index: 200;
       background-color: transparent;
     }
    .next{
      right:6px;
      top:110px;
    }
  
    .prev{
      left: 6px;
      top:110px;
    }
  
    .maximize-btn{
      bottom:30px;
      right: 6px;
    }
  
    .close-btn{
      right:6px
    }
  
    
  }
  
  
  @media (max-width: 480px) {
     .service-content-text{
      width:300px
     }
  
     .carousel{
      width: 100%;
      height:220px;
     }
  
     .carousel-button{
      top:37%
     }
  
     .maximize-btn{
      bottom: 60px;
      font-size: 10px;
      right:6px;
      padding:6px
     }
  
     .close-btn{
      top: 8px;
      font-size: 10px;
      right:5px;
      padding:6px
     }
  
     .next{
      font-size: 10px;
      right:8px;
      padding:5px;
     }
  
     .prev{
      font-size: 10px;
      left:8px;
      padding:5px;
     }
  
     .carousel.fullscreen {
      transform: scale(1.2);
       z-index: 200;
       background-color: transparent
     }
  
     .carousel1{
      width: 100%;
      height:220px;
     }
  
     .carousel-button1{
      top:37%
     }
  
     .maximize-btn1{
      bottom: 25px;
      font-size: 10px;
      right:0px;
      padding:6px
     }
  
     .close-btn1{
      top: 0px;
      font-size: 10px;
      right:0px;
      padding:6px
     }
  
  
     .carousel1.fullscreen {
      transform: scale(1.2);
       z-index: 200;
       background-color: transparent
     }
  }
  
  
  /* Responsive styles */
  
  @media (max-width: 1080px) {
    /*.service-container {*/
    /*  flex-direction: column;*/
    /*}*/
  
    /*.sidebar {*/
    /* width:250px;*/
    /*  margin-bottom: 20px; */
    /*  flex: 0 0 auto; */
    /*}*/
    
    .sidebar {
    border-radius: 10px 0px 0px 10px;
     width: 250px; 
    /* background-color: rgb(86, 83, 83); */
    color: #fff;
    padding: 10px;
    background-color: #052b78;
    /* background-color: rgb(17 61 205 / var(--tw-bg-opacity)); */
  }
  
  
    /*.sidebar .service-option {*/
    /*  width: 100%; */
    /*}*/
  
    .service-text-content {
      padding: 20px; /* Reduce padding on tablets */
    }
  
    .service-text-content-h1 {
      font-size: 24px; /* Adjust font size for tablets */
    }
  
    .service-text-content-p {
      font-size: 14px; /* Adjust font size for tablets */
    }
  
    /*.content-grid {*/
    /*  grid-template-columns: 1fr;*/
    /*}*/
  
    .content-subgrid {
      gap: 30px; /* Reduce gap for tablets */
    }
  
    .content-subgrid h1 {
      font-size: 18px; /* Adjust heading size for tablets */
    }
  
    .content-subgrid p {
      font-size: 14px; /* Adjust paragraph size for tablets */
    }
  
    .service-image-container {
      width: 100%; /* Full width on tablets */
      height: auto; /* Auto height to maintain aspect ratio */
      margin: 20px 0; /* Adjust margins */
    }
  }
  
  @media (max-width: 1280px) {
    /*.service-container {*/
    /*  flex-direction: column;*/
    /*}*/
  
    .sidebar {
      /* Full width on tablets */
      margin-bottom: 20px; /* Space between sidebar and content */
      flex: 0 0 auto; /* Allow full width without fixed width */
    }
  
    .sidebar .service-option {
      width: 100%; /* Use full width for options */
    }
  
    .service-text-content {
      padding: 20px; /* Reduce padding on tablets */
    }
  
    .service-text-content-h1 {
      font-size: 24px; /* Adjust font size for tablets */
    }
  
    .service-text-content-p {
      font-size: 14px; /* Adjust font size for tablets */
    }
  
    /*.content-grid {*/
    /*  grid-template-columns: 1fr; */
    /*}*/
  
    .content-subgrid {
      gap: 30px; /* Reduce gap for tablets */
    }
  
    .content-subgrid h1 {
      font-size: 18px; /* Adjust heading size for tablets */
    }
  
    .content-subgrid p {
      font-size: 14px; /* Adjust paragraph size for tablets */
    }
  
    .service-image-container {
      width: 100%; /* Full width on tablets */
      height: auto; /* Auto height to maintain aspect ratio */
      margin: 20px 0; /* Adjust margins */
    }
  }
  
  
  @media (max-width: 768px) {
    .service-container {
      flex-direction: column; /* Stack items vertically on tablets */
    }
  
    .sidebar {
      min-width: 90%; /* Full width on tablets */
      margin-bottom: 20px; /* Space between sidebar and content */
      flex: 0 0 auto; /* Allow full width without fixed width */
      border-radius: 10px 10px 0px 0px;
    }
  
  
  
    .service-image {
      cursor: default;
    }
  
    .service-image.maximized {
      position: static;
      transform: none;
      width: 560px;
      aspect-ratio: auto 560 / 315;
      height: 315px;
    
      z-index: auto;
      border: none;
      background-color: transparent;
      box-shadow: none;
    }
  
   
  
    
    .sidebar .service-option{
      width: 97%;
    }
  
    .service-text-content {
      padding: 20px; /* Reduce padding on tablets */
    }
  
    .service-text-content-h1 {
      font-size: 24px; /* Adjust font size for tablets */
    }
  
    .service-text-content-p {
      font-size: 14px; /* Adjust font size for tablets */
    }
  
    .content-grid {
      grid-template-columns: 1fr; /* Single column layout on tablets */
    }
  
    .content-subgrid {
      gap: 30px; /* Reduce gap for tablets */
     
    }
    .content-subgrid h1 {
      font-size: 18px; /* Adjust heading size for tablets */
    }
  
    .content-subgrid p {
      font-size: 14px; /* Adjust paragraph size for tablets */
    }
  
    .service-image-container {
      width: 100%; /* Full width on tablets */
      height: auto; /* Auto height to maintain aspect ratio */
      margin: 20px 0; /* Adjust margins */
    }
  }
  
  @media(min-width:520px) and (max-width:767px)
  {
    .service-image {
      width: 400px;
      height:auto;
      cursor: pointer;
    }
  }
  
  @media (max-width: 480px) {
    /* .service-container {
      max-width: 390px;
    } */
  
    
    .content-subgrid p{
      font-size: 16px;
    }
    
    .use-btn{
      margin-left: 33%;
      margin-bottom: 30px;
      margin-top: 0px;
    }
    .service-image {
      cursor: default;
    }
  
    .service-image.maximized {
   width:30px
     }
  
     .close-button{
      left:0px;
     }
     
  
    
    .sidebar .service-option-lock::after{
      left: calc(20%);
  
    }
    .sidebar .service-option{
      width: 90%;
      margin-left: 7px;
    }
  
    .sidebar {
      border-radius: 10px 10px 0px 0px;
      padding: 0;
    }
  
   
    .card-usecase{
      padding: 10px;
    }
  
    
    .sidebar .service-option{
      width: 90%;
    }
  
    .service-heading {
      font-size: 1.2em; /* Smaller heading for mobile */
    }
  
    .sidebar h2 {
      font-size: 16px; /* Smaller sidebar heading */
    }
  
    .content-grid {
      display: flex;
      flex-direction: column;
    }
  
    .service-text-content-h1 {
      font-size: 20px; /* Smaller main heading */
    }
  
    .service-text-content-p {
      font-size: 12px; /* Smaller paragraph text */
      width: 100%; /* Ensure full width on mobile */
    }
  
    .content-subgrid {
      margin: 10px;
      
    }
     .subgrid-content{
      height: 180px;
     }
  
   
  
    
  
    .content-subgrid h1 {
      font-size: 16px; /* Smaller subgrid heading */
    }
  
    
  
    .service-button {
      display: flex;
      justify-content: center;
    }
  
    .service-button button {
      font-size: 16px; /* Smaller button text */
      padding: 10px 20px; /* Smaller padding */
    }
  
    .service-video {
      width: 100%; /* Full width on mobile */
      height: 220px; /* Adjust height if necessary */
    }
  
    .service-image{
      margin-top: 20px;
      height: 220px;
      width: 100%;
    
    }
  
    .service-image-container {
      margin: 10px; /* Reduce margins for mobile */
    }
  }
  
  
  /* -----------------------------------security----------------------------------------------- */
  .container1 {
    width: 86%;
    margin: 20px auto;
    padding-right: 40px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.2);
    display: grid;
    grid-template-columns: 30% 70%;
    gap: 20px;
  }
  
  
  
  /* Section 1 (Heading + Image) */
  .section1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 20px;
  }
  
  .section1 h1 {
    font-size: 24px;
    color: #333;
  }
  
  .section1 img {
    height: 370px;
    width: 350px;
    border-radius: 8px;
  }
  
  /* Section 2 (Content + Cards) */
  .section2 {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .textt {
    margin-top: 59PX;
    color: black;
    line-height: 1.5;
    font-size: 20px;
  }
  
  .cardsss {
    display: flex;
    flex-wrap: wrap;
    margin-top: -20px;
    justify-content: space-between;
  }
  
  .carddd {
    flex: 1 1 calc(33.333% - 20px);
    background-color: white;
    border-radius: 8px;
    padding: 12px;
    
  }
  
  .carddd i {
    width: 40px;
    margin-bottom: 10px;
    
  }
  
  .carddd h3 {
    font-size: 18px;
    color: #0073e6;
    margin: 10px 0 5px;
  }
  
  .carddd p {
    font-size: 18px;
    color: #555;
    line-height: 1.4;
  }
  
  .carddd .security-icon {
    color: #052b78;
    font-size: 25px;
    border-radius: 20%; 
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
  }
  .carddd .security-icon:hover {
    color: #052b78;
    
  }
  
  .works-heading.privacy{
    margin-top: 80px;
  }
  
  /* General Reset for Smaller Screens */
  
  
  /* Medium Screens (Tablets, Landscape Phones) */
  @media (max-width: 1024px) or (min-height:1366px) {
    .section1 img {
      height: 300px;
      width: 300px;
    }
  
    .section2 {
      gap: 15px;
    }
  
    .cardsss {
      flex-wrap: wrap;
    }
  
    .carddd {
      flex: 1 1 calc(50% - 10px); /* Two cards per row */
    }
  
    .container1 {
      width: 84%; /* Adjust width for smaller screens */
      padding: 20px;
      grid-template-columns: 1fr; /* Switch to single-column layout */
      gap: 20px;
    }
    .section1 h1 {
      font-size: 27px;
      margin-top: 30px;
    }
  
    .section1 img {
      height: 400px;
      width: 400px;
      margin-top: 30px;
     
    }
  
    .section2 .textt{
      text-align: center;
    }
  
    .cardsss {
      gap: 15px;
    }
  
    .carddd {
      flex: 1 1 100%; /* One card per row */
      text-align: center;
    }
  
    .carddd h3 {
      font-size: 14px;
    }
  
    .carddd p {
      font-size: 12px;
    }
  
    
  }
  
  @media (min-width: 820px) and (max-width:1024px){
  
    .container1 {
      width: 84%; /* Adjust width for smaller screens */
      padding: 20px;
      grid-template-columns: 1fr; /* Switch to single-column layout */
      gap: 20px;
    }
    .section1 h1 {
      font-size: 27px;
      margin-top: 30px;
    }
  
    .section1 img {
      height: 400px;
      width: 400px;
      margin-top: 30px;
     
    }
  
    .section2 .textt{
      text-align: center;
    }
  
    .cardsss {
      gap: 15px;
    }
  
    .carddd {
      flex: 1 1 100%; /* One card per row */
      text-align: center;
    }
  
    .carddd h3 {
      font-size: 14px;
    }
  
    .carddd p {
      font-size: 12px;
    }
  }
  
  
  /* Small Screens (Portrait Tablets, Large Phones) */
  @media (max-width: 768px) {
  
    .container1 {
      width: 84%; /* Adjust width for smaller screens */
      padding: 20px;
      grid-template-columns: 1fr; /* Switch to single-column layout */
      gap: 20px;
    }
    .section1 h1 {
      font-size: 27px;
      margin-top: 30px;
    }
  
    .section1 img {
      height: 400px;
      width: 400px;
      margin-top: 30px;
     
    }
  
    .section2 .textt{
      text-align: center;
    }
  
    .cardsss {
      gap: 15px;
    }
  
    .carddd {
      flex: 1 1 100%; /* One card per row */
      text-align: center;
    }
  
    .carddd h3 {
      font-size: 14px;
    }
  
    .carddd p {
      font-size: 12px;
    }
  }
  
  /* Extra Small Screens (Phones) */
  @media (max-width: 480px) {
  
    .container1 {
      width: 79%; /* Adjust width for smaller screens */
      padding: 20px;
      grid-template-columns: 1fr; /* Switch to single-column layout */
      gap: 20px;
    }
  
    .section1 h1 {
      font-size: 18px;
    }
  
    .section1 img {
      height: 200px;
      width: 200px;
    }
  
    .cardsss {
      gap: 10px;
    }
  
    .carddd h3 {
      font-size: 13px;
    }
  
    .carddd p {
      font-size: 11px;
    }
  
    .carddd .security-icon {
      font-size: 20px;
    }
  
    .works-heading.privacy{
      margin-top: 15px;
      font-size: 20px;
    }
  
    .textt{
      margin-top: 5px;
      font-size: 18px;
    }
  
    .section1 img{
      height: 250px;
      width: 250px;
      margin-top: 5px;
    }
  
    .carddd h3 {
      font-size: 16px;
    }
  
    .carddd p {
      font-size: 14px;
    }
  }
  
  
  /*  ---------------------  works-updated ---------------------------------------------------------------********* */
  
  
  
  
  
  .works-heading {
    /* width:90%; */
    margin: auto;
    text-align: center;
    font-weight: 700;
    font-size: 30px;
    padding-top: 20px;
    margin-bottom: 30px;
    line-height: 30px;
    color: #052b78;
  }
  
  .works-heading.works{
      font-size: 20px;
  }
  
  .works-subheading {
    font-size: 20px;
    color: #575757;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
  }
  
  .works-container {
    display: flex;
    flex-direction: row-reverse;
  }
  
  .works-sidebar {
    /* background-color: #01a9de; */
    width: 450px;
    color: black;
    padding: 10px;
  }
  
  .works-option {
    padding: 20px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.5s;
  }
  
  .works-option.works-active {
    color: black;
    border: 1px solid lightgray; /* Match the border with the background */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
    border-radius: 12px;
  }
  
  .works-option.works-active .works-option-heading,
  .works-option.works-active .works-option-description {
    color: black;
  }
  
  .works-option-heading {
    font-weight: 600;
    color: var(--tcolor);
    margin-bottom: 15px;
    font-size: 20px;
    transition: color 0.5s;
  }
  
  .works-option-description {
    color: var(--tcolor);
    font-size: 16px;
    line-height: 20px;
    transition: color 0.5s;
  }
  
  .works-content {
    flex-grow: 1;
  }
  
  .works-image-section {
    position: relative;
    height: 512px;
    /* background-color:#052b78; */
    width: 100%; /* Ensure container takes full width */
  }
  
  .works-image-section img {
    position: absolute;
    width: auto; /* Ensure images maintain aspect ratio */
  }
  
  @media (max-width: 1024px) {
    .works-container {
      flex-direction: column-reverse; /* Stack content vertically */
    }
  
    .works-image-section {
      order: -1; /* Bring the image above the content */
      margin-bottom: 20px;
    }
  
    .works-sidebar {
      width: 100%; /* Make the sidebar full width */
      text-align: center;
    }
  }
  /* Responsive Styles */
  @media (max-width: 768px) {
    .works-container {
      flex-direction: column; /* Stack sidebar and content vertically on tablets */
    }
  
    .works-sidebar {
      width: 100%; /* Full width on smaller screens */
      margin-bottom: 20px; /* Add space below sidebar */
    }
  
    .works-option {
      padding: 15px; /* Slightly reduced padding */
    }
  
    .works-heading {
      font-size: 24px; /* Smaller heading */
    }
  
    .works-subheading {
      font-size: 16px; /* Smaller subheading */
    }
  
    .works-option-heading {
      font-size: 1em; /* Smaller heading */
    }
  
    .works-option-description {
      font-size: 0.7em; /* Smaller description */
    }
  
    .works-image-section {
      height: auto; /* Allow height to adjust */
    }
  }
  
  @media (max-width: 480px) {
    .works-heading.works{
      font-size: 20px;
     /* Smaller heading for mobile */
    }
  
    .section.works{
      margin-top: 10px;
    }
  
    .works-subheading {
      font-size: 16px; /* Smaller subheading for mobile */
    }
  
    .works-sidebar {
      padding: 5px; /* Less padding on mobile */
    }
  
    .works-option {
      padding: 10px; /* Smaller padding on mobile */
    }
  
    .works-option-heading {
      font-size: 16px; /* Smaller heading for mobile */
    }
  
    .works-option-description {
      font-size: 14px; /* Smaller description for mobile */
    }
  
    .works-image-section {
      height: 300px;
      margin-bottom: 0px; /* Adjust height for mobile */
    }
  
  
   
  }
  
  
  /* ------------------------------------------------ work-1 images ------------------------ */
  
  .image1-middle {
    top: 50%; /* Centers the image vertically */
    left: 45%; /* Centers the image horizontally */
    transform: translate(-50%, -50%); /* Perfect center for the middle image */
    z-index: 1; /* Ensures this image is on top */
    height: 500px; /* Adjust size */
    border-radius: 12px;
  }
  
  .image1-up {
    position: absolute; /* Ensure the image can be positioned */
    top: 50px; /* Stick to the top */
    right: 40px; /* Stick to the right */
    z-index: 2; /* Lower than the middle image */
    height: 50px; /* Adjust size */
    animation: slide 5s ease-in-out infinite; /* Apply animation */
  }
  
  .image1-down {
    bottom: 30px; /* Stick to the bottom */
    left: 120px; /* Stick to the left */
    z-index: 2; /* Lower than the middle image */
    height: 180px; /* Adjust size */
    animation: slide 5s ease-in-out infinite;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(-10px); /* Move to the left */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .image1-middle {
      height: 400px; 
      top: 220px;
      bottom: 20px;/* Smaller size for tablets */
    }
  
    .image1-up {
      height: 50px; /* Smaller size for tablets */
      top: 30px; /* Adjust top position */
      right: 20px; /* Adjust right position */
    }
  
    .image1-down {
      height: 150px; /* Smaller size for tablets */
      left: 70px; /* Adjust right position */
      top: 200px; /* Adjust bottom position */
    }
  }
  
  @media(min-width:520px) and (max-width:767px)
  {
     .image1-middle {
      height: 300px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image1-up {
      height: 30px; /* Smaller size for mobile */
      top: 30px; /* Adjust top position */
      right: 10px; /* Adjust right position */
    }
  
    .image1-down {
      height: 100px; /* Smaller size for mobile */
      top: 120px; /* Adjust bottom position */
      left: 20px; /* Adjust left position */
    }
  }
  
  @media (max-width: 480px) {
    .image1-middle {
      height: 230px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image1-up {
      height: 30px; /* Smaller size for mobile */
      top: 30px; /* Adjust top position */
      right: 10px; /* Adjust right position */
    }
  
    .image1-down {
      height: 100px; /* Smaller size for mobile */
      top: 120px; /* Adjust bottom position */
      left: 20px; /* Adjust left position */
    }
  }
  
  /* ------------------------------------------------ work-2 images ------------------------ */
  
  .image2-middle {
    top: 50%; /* Centers the image vertically */
    left: 50%; /* Centers the image horizontally */
    transform: translate(-50%, -50%); /* Perfect center for the middle image */
    z-index: 1; /* Ensures this image is on top */
    height: 500px; /* Adjust size */
    border-radius: 12px;
  }
  
  .image2-up {
    position: absolute; /* Ensure the image can be positioned */
    top: 50px; /* Stick to the top */
    left: -30px; /* Stick to the right */
    z-index: 2; /* Lower than the middle image */
    height: 50px; /* Adjust size */
    animation: slide 5s ease-in-out infinite; /* Apply animation */
  }
  
  .image2-down {
    right: 130px; /* Stick to the bottom */
    bottom: 0px; /* Stick to the left */
    z-index: 2; /* Lower than the middle image */
    height: 180px; /* Adjust size */
    animation: slide 5s ease-in-out infinite;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(-10px); /* Move to the left */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .image2-middle {
      height: 400px; 
      top: 220px;
      bottom: 20px;/* Smaller size for tablets */
    }
    .image2-up {
      height: 50px; /* Smaller size for tablets */
      top: 30px; /* Adjust top position */
      left: -20px; /* Adjust left position */
    }
   
  
    .image2-down {
      height: 200px; /* Smaller size for tablets */
      right: 70px;/* Adjust right position */
      top: 300px; /* Adjust bottom position */
    }
  }
  
  @media(min-width:520px) and (max-width:767px)
  {
    .image2-middle {
      height: 300px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image2-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      left: -10px; /* Adjust left position */
    }
  
    .image2-down {
      height: 100px; /* Smaller size for mobile */
      top: 200px; /* Adjust bottom position */
      left: 220px; /* Adjust left position */
    }
  }
  
  @media (max-width: 480px) {
    .image2-middle {
      height: 220px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image2-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      left: -10px; /* Adjust left position */
    }
  
    .image2-down {
      height: 100px; /* Smaller size for mobile */
      top: 200px; /* Adjust bottom position */
      left: 220px; /* Adjust left position */
    }
  
    
  }
  
  /* ------------------------------------------------ work-3 images ------------------------ */
  
  .image3-middle {
    top: 50%; /* Centers the image vertically */
    left: 50%; /* Centers the image horizontally */
    transform: translate(-50%, -50%); /* Perfect center for the middle image */
    z-index: 1; /* Ensures this image is on top */
    height: 500px; /* Adjust size */
    border-radius: 12px;
  }
  
  .image3-up {
    position: absolute; /* Ensure the image can be positioned */
    top: 50px; /* Stick to the top */
    left: 50px; /* Stick to the right */
    z-index: 2; /* Lower than the middle image */
    height: 50px; /* Adjust size */
    animation: slide 5s ease-in-out infinite; /* Apply animation */
  }
  
  .image3-down {
    right: 100px; /* Stick to the bottom */
    bottom: 0px; /* Stick to the left */
    z-index: 2; /* Lower than the middle image */
    height: 180px; /* Adjust size */
    animation: slide 5s ease-in-out infinite;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(-10px); /* Move to the left */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .image3-middle {
      height: 400px; 
      top: 220px;
      bottom: 20px;
      /* Adjust top position */
      /* Smaller size for tablets */
    }
  
    .image3-up {
      height: 50px; /* Smaller size for tablets */
      /* Adjust top position */
      left: 40px; /* Adjust left position */
    }
  
    .image3-down {
      height: 200px; /* Smaller size for tablets */
      right: 70px; /* Adjust right position */
      top: 200px; /* Adjust bottom position */
    }
  }
  
  @media(min-width:520px) and (max-width:767px)
  {
    .image3-middle {
      height: 300px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image3-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      left: 30px; /* Adjust left position */
    }
  
    .image3-down {
      height: 100px; /* Smaller size for mobile */
      right: 5px; /* Adjust right position */
      top: 150px; /* Adjust bottom position */
    }
  }
  
  @media (max-width: 480px) {
    .image3-middle {
      height: 220px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image3-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      left: 30px; /* Adjust left position */
    }
  
    .image3-down {
      height: 100px; /* Smaller size for mobile */
      right: 5px; /* Adjust right position */
      top: 150px; /* Adjust bottom position */
    }
  }
  
  /* ------------------------------------------------ work-4 images ------------------------ */
  
  .image4-middle {
    top: 50%; /* Centers the image vertically */
    left: 50%; /* Centers the image horizontally */
    transform: translate(-50%, -50%); /* Perfect center for the middle image */
    z-index: 1; /* Ensures this image is on top */
    height: 500px; /* Adjust size */
    border-radius: 12px;
  }
  
  .image4-up {
    position: absolute; /* Ensure the image can be positioned */
    top: 20px; /* Stick to the top */
    right: 100px; /* Stick to the right */
    z-index: 2; /* Lower than the middle image */
    height: 50px; /* Adjust size */
    animation: slide 5s ease-in-out infinite; /* Apply animation */
  }
  
  .image4-down {
    right: 100px; /* Stick to the bottom */
    bottom: 0px; /* Stick to the left */
    z-index: 2; /* Lower than the middle image */
    height: 180px; /* Adjust size */
    animation: slide 5s ease-in-out infinite;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(-10px); /* Move to the left */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
  }
  
  /* Responsive Styles */
  
  
  
  
  @media (max-width: 768px) {
  
    .image4-middle {
      height: 400px; 
      top: 220px;
      bottom: 20px;/* Smaller size for tablets */
    }
  
    .image4-up {
      height: 50px; /* Smaller size for tablets */
      top: 50px; /* Adjust top position */
      right: 70px; /* Adjust right position */
    }
  
    .image4-down {
      height: 200px; /* Smaller size for tablets */
      right: 50px; /* Adjust right position */
      top: 200px;/* Adjust bottom position */
    }
  }
  
  @media(min-width:520px) and (max-width:767px){
    .image4-middle {
      height: 300px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image4-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      right: -10px; /* Adjust right position */
    }
  
    .image4-down {
      height: 100px; /* Smaller size for mobile */
      right: 10px; /* Adjust right position */
     top: 120px /* Adjust bottom position */
    }
  
    
  }
  
  @media (max-width: 480px) {
    .image4-middle {
      height: 220px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image4-up {
      height: 30px; /* Smaller size for mobile */
      top: 40px; /* Adjust top position */
      right: -10px; /* Adjust right position */
    }
  
    .image4-down {
      height: 100px; /* Smaller size for mobile */
      right: 10px; /* Adjust right position */
     top: 120px /* Adjust bottom position */
    }
  
    
  }
  
  
  
  /* ------------------------------------------------ work-5 images ------------------------ */
  
  .image5-middle {
    top: 50%; /* Centers the image vertically */
    left: 50%; /* Centers the image horizontally */
    transform: translate(-50%, -50%); /* Perfect center for the middle image */
    z-index: 1; /* Ensures this image is on top */
    height: 500px; /* Adjust size */
    border-radius: 12px;
  }
  
  .image5-up {
    position: absolute; /* Ensure the image can be positioned */
    top: 10px; /* Stick to the top */
    right: 70px; /* Stick to the right */
    z-index: 2; /* Lower than the middle image */
    height: 50px; /* Adjust size */
    animation: slide 5s ease-in-out infinite; /* Apply animation */
  }
  
  .image5-up-2 {
    right: 180px; /* Stick to the bottom */
    top: 70px; /* Stick to the left */
    z-index: 2; /* Lower than the middle image */
    height: 70px; /* Adjust size */
    animation: slide 5s ease-in-out infinite;
  }
  
  @keyframes slide {
    0% {
      transform: translateX(0); /* Start position */
    }
    50% {
      transform: translateX(-10px); /* Move to the left */
    }
    100% {
      transform: translateX(0); /* Return to start position */
    }
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .image5-middle {
      height: 400px; 
      top: 220px;
      bottom: 20px;/* Smaller size for tablets */
    }
  
    .image5-up {
      height: 50px; /* Smaller size for tablets */
      top: 2px; /* Adjust top position */
      right: 50px; /* Adjust right position */
    }
  
    .image5-up-2 {
      height: 60px; /* Smaller size for tablets */
      top: 60px; /* Adjust top position */
      right: 170px; /* Adjust right position */
    }
  }
  @media(min-width:520px) and (max-width:767px){
    .image5-middle {
      height:300px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image5-up {
      height: 30px; /* Smaller size for mobile */
      top: 20px;/* Adjust top position */
      right: 20px; /* Adjust right position */
    }
  
    .image5-up-2 {
      height: 32px; /* Smaller size for mobile */
       /* Adjust top position */
      right: 80px; /* Adjust right position */
    }
  }
  
  @media (max-width: 480px) {
    .image5-middle {
      height: 220px;
      top: 150px;
      /* Smaller size for mobile */
    }
  
    .image5-up {
      height: 30px; /* Smaller size for mobile */
      top: 20px;/* Adjust top position */
      right: 20px; /* Adjust right position */
    }
  
    .image5-up-2 {
      height: 32px; /* Smaller size for mobile */
       /* Adjust top position */
      right: 80px; /* Adjust right position */
    }
  }
  
  
  
  
  /* ----------------------------------------------------- network -------------------------------- */
  
  .network-grid-section {
    display: grid;
    grid-template-columns: 60% 40%; /* Two equal columns */
    gap: 20px;
    padding: 20px;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  }
  
  .network-text-content {
    text-align: left;
    padding: 20px 0px 20px 20px;
  }
  
  .network-text-content h2 {
    color: #052b78;
    font-size: 2.5rem;
    margin-bottom: 50px;
  }
  
  .network-text-content p {
    font-size: 1.2rem;
    /* width: 15cm; */
    color: black;
    margin-bottom: 40px;
  }
  
  .network-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .network-image-content img {
    width: auto;
    max-height: 400px;
    object-fit: contain; /* Ensures the image fits within its container */
  }
  
  .hiw {
    margin-top: 0;
    /* background-color: #01a9de; */
  }
  
  .hiwhead {
    /* width:90%; */
    margin: auto;
    text-align: center;
    font-weight: 700;
    font-size: 2em;
    padding-top: 20px;
    margin-bottom: 80px;
    line-height: 30px;
    color: var(--fcolor);
  }
  
  .hiwsubhead {
    font-size: 20px;
    color: #9a9090;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
  }
  
  .hiwflex {
    width: 95%;
    margin: auto;
    display: flex;
    /* max-width:1100px; */
    margin-top: -20px;
    justify-content: center;
    margin-bottom: 200px;
  }
  .hiwfitem {
    width: 50%;
  }
  .hiwfileft {
    background-image: url("media/screen-1.webp");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: background-image 1s;
  }
  .hiwfistep {
    padding: 1.5em;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.5s;
  }
  .hiwfistep1 {
    border: 2px solid var(--scolor);
  }
  .hiwishead {
    font-weight: 600;
    color: var(--tcolor);
    margin-bottom: 15px;
    font-size: 1.1em;
    transition: color 0.5s;
  }
  .hiwisdesc {
    color: var(--tcolor);
    font-size: 0.8em;
    line-height: 20px;
    transition: color 0.5s;
  }
  .hiwfistep1 .hiwishead {
    color: var(--fcolor);
  }
  .hiwfistep1 .hiwisdesc {
    color: var(--fcolor);
  }
  @media only screen and (max-width: 800px) {
    .hiwflex {
      display: none;
    }
  }
  
  /* -------------------------------------------------- works ----------------------------------------------------- */
  
  /* .works-works {
    display: flex;
    flex-direction: column;
    color: #01a9de;
  }
  
  .works-container h1 {
    margin-top: -10px;
    font-size: 2.5em;
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .works-subtitle {
    color: black;
    margin-bottom: 30px;
    /* padding: 10px 40px 20px 40px; 
    padding-left: 100px;
    padding-right: 100px;
    font-size: 1.1em;
    font-weight: 400;
  }
  
  .works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .works-card {
    padding: 40px;
    border: 1px #052b78;
    border-radius: 12px;
    background-color: #052b78;
    text-align: left;
    box-shadow: 0 0px 3px rgba(121, 116, 116, 0.5);
    display: grid;
    grid-template-columns: 10% 90%;
    gap: 20px;
    height: 150px;
    transition: border 0.3s; /* Add transition for smooth hover effect 
  }
  
  .works-card:hover {
    box-shadow: 0 0px 6px rgba(121, 116, 116, 0.5); /* Use rgba for more control 
  }
  
  .works-card-content h2 {
    font-size: 1.5rem;
    margin-top: -1px;
  }
  
  .works-card-content p {
    color: white;
    font-size: 1.3em;
  }
  
  .works-step-number {
    display: inline-block;
    background-color: #01a9de;
    color: white;
    border-radius: 12px;
    height: 20px;
    padding: 15px 25px 15px 15px;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
  }
  
  .works-top-subtitle {
    text-align: center;
    font-weight: 600;
  } */
  
  /* ----------------------------------- demo section ---------------------------------------- */
  
  .demo-section {
    display: grid;
    grid-template-columns: 53% 40%; /* Equal width for content and image */
    align-items: center;
    gap: 30px; /* Space between content and image */
    /* background-color: white; */
    /* padding: 30px; */
    /* border-radius: 12px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  }
  
  /* Content */
  .demo-content h1 {
    font-size: 45px;
    font-weight: bold;
    color: #052b78;
    margin-bottom: 20px;
    margin-top: 0;
  }
  
  .demo-content h1 span {
    color: #2c68e5;
  }
  
  .demo-content p {
    font-size: 18px;
    color: #9a9a9c;
    font-weight: 350;
    line-height: 1.5;
  }
  
  .demo-lists {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .demo-list ul {
    list-style: none;
    padding: 0;
  }
  
  .demo-list li {
    display: flex;
    align-items: center;
    line-height: 1.5;
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: black;
    font-weight: 400;
  }
  
  .demo-li-span {
    margin-left: 5px;
    font-weight: 600;
  }
  
  .demo-list i {
    margin-right: 10px;
    color: #052B78;
    font-size: 20px;
  }
  
  /* Button */
  .demo-book-demo {
    padding: 15px 25px;
    background-color: #043fb7;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .demo-book-demo:hover {
    background-color: #052b78;
  }
  
  /* Image */
  .demo-image-placeholder img {
    width: auto;
    height: 450px;
    object-fit: contain;
    /* background-color: #01a9de; */
    border-radius: 8px;
  }

  @media (min-width:1280px) and (max-width:1280px)
  {
    .demo-image-placeholder img {
      width: 500px;
    }
  }
  
  /* Responsive Design for Medium Screens */
  @media (max-width: 1024px) {
    .demo-section {
      grid-template-columns: 1fr; /* Stack content and image */
    }
   
  
    .demo-content h1 {
      font-size: 2.8rem;
    }
  
    .demo-content p {
      font-size: 16px;
    }
  
    .demo-lists {
      gap: 20px;
    }
  
    .demo-book-demo {
      font-size: 1.1rem;
      padding: 12px 20px;
    }
  
    .demo-image-placeholder img {
      height: 350px; /* Reduce image size */
    }
  }
  
  /* Responsive Design for Small Screens (Tablets and Mobile) */
  @media (max-width: 768px) {
    .demo-section {
      padding: 20px;
    }
  
    .demo-content h1 {
      font-size: 2.5rem;
    }
  
    .demo-content p {
      font-size: 15px;
    }
  
    .demo-lists {
      flex-direction: column; /* Stack lists vertically */
    }
  
    .demo-book-demo {
      font-size: 1rem;
      padding: 10px 18px;
    }
  
    .demo-image-placeholder img {
      height: 300px;
    }
  }
  
  @media(min-width:539px) and (max-width:767px)
  {
    .demo-image-placeholder img {
        height: 300px;
      }
    }
  
  
  
  /* Responsive Design for Extra Small Screens (Mobile) */
  @media (max-width: 480px) {
  
    .section.first{
      margin-top: 20px;
    }
  
    .demo-section {
      gap: 20px;
    }
  
    .demo-content h1 {
      font-size: 2rem;
    }
  
    .demo-content p {
      font-size: 14px;
    }
  
    .demo-list li {
      font-size: 1rem;
    }
  
    .demo-book-demo {
      font-size: 0.9rem;
      padding: 8px 15px;
    }
  
    .demo-image-placeholder img {
      height: 200px; /* Further reduce image size */
    }
  }
  
  /* <!-- ------------------------------------------------benefits ------------------------------------------- --> */
  
  .benefits-section-title {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-weight: bold;
    
    color: black;
  }
  
  .benefits-section-title span {
    color: #052b78;
  }
  
  /* Grid Layout */
  .benefits-grid {
    padding: 0px 0px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
  
  /* Card Styles */
  .benefit-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px 20px 20px 20px;
    text-align: center;
    box-shadow: 0px 0px 10px 1px rgba(94, 191, 235, 0.4);
    transition: all ease 0.3s;
  }
  
  .benefit-card:hover {
    box-shadow: 0px 1px 30px 10px rgba(94, 191, 235, 0.4);
  }
  
  .icon-container {
    font-size: 3rem;
    color: #052b78;
  }
  
  
  
  .benefit-card img {
    height: 130px;
  }
  
  .benefit-card p {
    font-size: 1rem;
    color: #555;
    font-weight: normal;
    line-height: normal;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
  
    .benefit-card h3 {
      font-size: 1.3rem;
    }
  }
  
  /* Responsive Design */
  
  /* Medium Screens (Tablets) */
  @media (max-width: 1024px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr); /* Switch to 3 columns */
      gap: 20px;
    }
  
    .benefits-section-title {
      font-size: 2rem;
    }
  
    .benefit-card h3 {
      font-size: 1.2rem;
    }
  
    .benefit-card img {
      height: 110px;
    }
  }
  
  /* Small Screens (Mobile) */
  @media (max-width: 768px) {
    .benefits-grid {
      grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
      gap: 15px;
    }
  
    .benefits-section-title {
      font-size: 1.8rem;
    }
  
    .benefit-card h3 {
      font-size: 1.1rem;
    }
  
    .benefit-card p {
      font-size: 0.9rem;
    }
  
    .benefit-card img {
      height: 90px;
    }
  }
  
  /* Extra Small Screens (Mobile Portrait) */
  @media (max-width: 480px) {
    .benefits-grid {
      grid-template-columns: 1fr; /* Stack in a single column */
      gap: 20px;
    }
  
    .benefits-section-title {
      font-size: 1.5rem;
      margin-bottom: 30px;
    }
  
    .benefit-card h3 {
      font-size: 1rem;
    }
  
    .benefit-card p {
      font-size: 1.1rem;
    }
    .works-heading.benifit{
      font-size: 20px;
    }
  
    .benefit-card img {
      height: 80px; /* Adjust image size for smallest screens */
    }
  
    .section.benifit{
      margin-top: 0px;
      padding-top: 0px;
    }
  }
  
  /* <!-- -------------------------------------- benefits promo ---------------------------------------- --> */
  
  .benefits-promo {
    position: relative; /* Ensure ::before overlay aligns correctly */
    display: grid;
    grid-template-columns: 60% 40%;
    background-color: #052b78;
    height: 400px;
    padding: 20px 80px;
    border-radius: 12px;
    overflow: hidden; /* Prevents overlay from going outside the container */
  }
  
  .benefits-promo::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 0%,
      transparent 70%,
      rgba(0, 0, 0, 0.5) 100%
    );
    border-radius: inherit; /* Matches the border radius of .benefits-promo */
    pointer-events: none; /* Allows interaction with elements underneath */
  }
  
  .benefits-promo-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .benefits-promo h2 {
    font-size: 3rem;
    margin: 0;
    font-weight: bold;
  }
  
  .benefits-promo-span {
    color: #07baf3;
  }
  
  .benefits-btn:hover {
    color: white;
    border: 2px solid white;
    background-color: #052b78;
  }
  
  .benefits-promo-image {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
  }
  
  .benefits-promo-image img {
    height: 400px;
    width: auto;
    animation: rotateToAndFro 10s ease-in-out infinite; /* Smooth back-and-forth motion */
  }
  
  /* When hovering over the button, move the arrow */
  .hero-button1:hover .plane-icon{
    transform: translateX(5px); /* Move the arrow 5px to the right */
  }
  
  @keyframes rotateToAndFro {
    0% {
      transform: rotate(0deg);
    }
    50% {
      transform: rotate(15deg); /* Rotate to 15 degrees */
    }
    100% {
      transform: rotate(0deg); /* Return to the starting point */
    }
  }
  
  /* Responsive Design */
  
  /* Medium Screens (Tablets) */
  @media (max-width: 1024px) {
    .benefits-promo {
      grid-template-columns: 1fr; /* Stacks content and image */
      height: auto; /* Allow height to adjust */
      padding: 20px 40px; /* Less padding */
    }
  
    .benefits-promo-content {
      align-items: center;
      text-align: center;
    }
  
    .benefits-promo h2 {
      font-size: 2.5rem;
    }
  
    .benefits-btn {
      font-size: 18px;
    }
  
    .benefits-promo-image {
      justify-content: center;
    }
  
    .benefits-promo-image img {
      height: 300px;
    }
  }
  
  /* Small Screens (Mobile) */
  @media (max-width: 768px) {
    .benefits-promo {
      padding: 20px;
    }
  
    .benefits-promo h2 {
      font-size: 2rem;
    }
  
    .benefits-btn {
      font-size: 16px;
      padding: 12px 20px;
    }
  
    .benefits-promo-image img {
      height: 250px;
    }
  }
  
  /* Extra Small Screens (Mobile Portrait) */
  @media (max-width: 480px) {
    .benefits-promo {
      padding: 15px;
    }
  
    .benefits-promo h2 {
      font-size: 1.8rem;
    }
  
    .benefits-btn {
      font-size: 14px;
      padding: 10px 15px;
    }
  
    .benefits-btn i {
      font-size: 14px;
    }
  
    .benefits-promo-image img {
      height: 200px;
    }
  
    .hero-button1.promo{
      margin-top: 10px;
      margin-bottom: 20px;
    }
  
    .section.promo{
      margin-top: 20px;
    }
    .benefits-promo-content{
      padding-top: 20px;
    }
  }
  
  /* <!-- ---------------------------------------------- Faq Container ----------------------------------------- --> */
  
  .faqs-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: center;
  }
  
  .faq-container {
    align-items: center;
  }
  
  .faq-item {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  .faq-item:hover {
    background-color: #eef3fc;
  }
  
  .faq-question {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .faq-question i {
    font-size: 40px;
    color: #052b78;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    /* margin-top: 20px; */
    font-size: 16px;
    color: #808080;
    transition: max-height 0.3s ease; /* Smooth transition for max-height */
  }
  
  .rotate {
    transform: rotate(45deg);
  }
  
  .container.faq h1{
    font-size: 2.5rem;
    color: #052b78;
    text-align: center;
    margin-top: -10px;
  }
  
  /* Responsive Design */
  
  /* Tablet screens */
  @media (max-width: 768px) {
    .faqs-container {
      grid-template-columns: 1fr; /* Stack items in a single column */
      gap: 20px;
    }
  
    .faq-question {
      font-size: 16px;
    }
  
    .faq-question i {
      font-size: 20px;
    }
  
    .faq-answer {
      font-size: 15px;
    }
  }
  
  /* Mobile screens */
  @media (max-width: 480px) {
    .faq-item {
      padding: 15px;
    }
  
    .faq-question {
      font-size: 15px;
    }
  
    .faq-answer {
      font-size: 14px;
    }
  
    .faq-question i {
      font-size: 18px;
    }
  
    .container.faq h1{
      font-size: 2rem;
    }
  
    .section.faq{
      margin-top: 50px;
    }
  }
  
  /* ----------------------------------------------------------- footer ------------------------------------------- */
  
  .footer-section {
    color: #fff;
    padding: 40px 0;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 40px;
  }
  
  .footer-background {
    background-color: #052b78;
    position: relative;
  }
  
  .footer-background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5) 0%,
      transparent 0%,
      transparent 70%,
      rgba(0, 0, 0, 0.5) 100%
    );
    border-radius: inherit; /* Matches the border radius of .footer-background */
    pointer-events: none; /* Allows interaction with elements underneath */
  }
  
  .footer-left {
    text-align: start;
  }
  
  .footer-left img {
    width: auto;
    height: 35px;
  }
  
  .footer-left p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .footer-right {
    display: flex;
    justify-content: space-evenly;
    margin-top: 0;
  }
  
  .footer-right h4 {
    font-size: 25px;
    margin-bottom: 10px;
    color: #07baf3;
  }
  
  .footer-right ul {
    padding: 0;
    margin: 0;
  }
  
  .footer-right li {
    list-style: none;
    font-size: 14px;
    line-height: 2;
  }
  
  .footer-right a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-right a:hover {
    color: #07baf3;
  }
  
  .links {
    margin-top: 20px;
  }
  
  .links a {
    color: white;
    font-size: 20px;
    margin-right: 15px;
    z-index: 1;
    transition: opacity 0.3s ease;
  }
  
  .links a:hover {
    text-shadow: 0 0 8px #07baf3, 0 0 12px #07baf3, 0 0 16px #07baf3;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 40% 60%;
      gap: 40px;
    }
  
    .footer-left,
    .footer-right {
      margin: 0 auto;
    }
  
    .footer-right {
      flex-direction:row;
      margin-right: 40px;
      gap: 40px;
    }
  
    .footer-right h4 {
      font-size: 22px;
    }
  
    .footer-left p {
      font-size: 13px;
    }
  
    .footer-right li {
      font-size: 13px;
    }
  }
  
  /* Mobile-specific adjustments */
  @media (max-width: 480px) {

    .footer-container {
      grid-template-columns: 1fr;
      gap: 20px;
      text-align: center;
    }
    .section {
      padding: 20px 0;
    }

    .footer-right {
      flex-direction:column;
      margin-right: 40px;
      gap: 10px;
    }
  
    .footer-container {
      gap: 15px;
    }
  
    .footer-left {
      text-align: left;
    }
  
    .footer-left img {
      height: 40px;
    }
  
    .footer-left p {
      font-size: 12px;
      margin: 5px 0;
    }
  
    .footer-right {
      align-items: self-start;
      text-align: left;
      margin: 0;
    }
  
    .footer-right h4 {
      font-size: 18px;
      margin-bottom: 8px;
    }
  
    .footer-right li {
      font-size: 12px;
      line-height: 1.6;
    }
  
    .links {
      display: flex;
      justify-content: flex-start;
      margin-top: 15px;
    }
  
    .links a {
      font-size: 16px;
      margin-right: 8px;
    }
  }
  