    * {
      font-family: "Nunito", sans-serif;
    }

    .hero {
      background: url('../img/bg-main.jpg') rgba(0, 0, 0, 0.3);
      background-blend-mode: multiply;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      /* height: 100vh; */
    }

    @media(max-width: 991px) {
      .sidebar {
        background-color: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(15px);
      }
    }

    .navbar-nav .nav-item .nav-link {
      font-size: 15px;
      font-weight: 500;
    }

    /* Hover effect: Red color */
    .navbar-nav .nav-item .nav-link:hover {
      color: red !important;
    }

    /* Active page: Red color */
    .navbar-nav .nav-item .nav-link.active {
      color: red !important;
    }



    @media (max-width: 1024px) {
      #mainNavbar img {
        height: 70px;
        /* Reduce logo size on smaller screens */
      }

      .offcanvas-body ul.navbar-nav li.nav-item {
        margin: 0.5rem 0;
        /* Spacing between menu items */
      }

      .full-rounded {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        /* Adjust button size */
      }
    }

    @media screen and (max-width: 1024px) and (min-height: 1366px) {
      .navbar-nav .nav-item {
        font-size: 0.85rem !important;
        /* Smaller font size */
        margin: 0.2rem 0 !important;
        /* Reduce top and bottom margins */
      }

      .navbar-nav .nav-link {
        padding: 0.2rem 0.5rem !important;
        /* Adjust padding for smaller links */
      }
    }


/* index home page connect size css*/
.connect {
  font-size: 5rem;
}

/* Adjust font size for smaller screens */
@media (max-width: 768px) {
  .connect {
      font-size: 3rem; /* Smaller size for mobile devices */
  }
}

@media (max-width: 480px) {
  .connectr {
      font-size: 2.5rem; /* Even smaller for very small screens */
  }
}

/* let use our service css  */
.check {
  font-size: 2.5em;
  font-weight: 800;
}
@media (max-width: 768px) {
  .check {
      font-size: 2.3rem; /* Smaller size for mobile devices */
  }
}

@media (max-width: 480px) {
  .check {
      font-size: 1.5rem; /* Even smaller for very small screens */
  }
}


/* about 1st section css  */
@media screen and (max-width: 1024px) {
  .custom-ipad-layout {
      flex-direction: column-reverse !important;
  }
  .no-space {
      margin: 0;
      padding: 0;
  }
  .text-content, .image-content {
      padding: 0 !important; /* Remove extra padding */
      margin: 0 !important; /* Remove extra margin */
  }
}

    /* about img css  */
    .about-img {
      background-image: url('../img/about2.jpg');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      height: 50vh;
      position: relative;
    }

    #top-right-circle {
      width: 180px;
      height: 180px;
      left: 70% !important;
      top: 0% !important;
    }

    @media (max-width: 768px) {
      #top-right-circle {
        width: 140px;
        height: 140px;
        left: 50% !important;
      }

      .about-img {
        background-image: url('../img/about2.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 30vh;
        position: relative;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      #top-right-circle {
        width: 180px;
        /* Adjusted for larger width */
        height: 180px;
        left: calc(50% - 90px);
        /* Center alignment considering new size */
      }

      .about-img {
        background-image: url('../img/about2.jpg');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        height: 35vh;
        /* Slightly taller for landscape */
        position: relative;
      }
    }

    /* Apply zoom effect to images with the 'zoom-img' class on hover */
    .zoom-img {
      transition: transform 0.3s ease;
      /* Smooth transition */
    }

    .zoom-img:hover {
      transform: scale(1.4);
      /* Zoom effect */
    }

    /* First element - keep background red */
    .price1 {
      background-color: red;
      color: white;
    }

    /* Other elements - initial background light gray */
    .price2, .price3 {
      background-color: lightgray;
      /* Default background */
      color: black;
      /* Default text color */
      transition: background-color 0.3s, color 0.3s;
      /* Smooth transition */
    }

    /* Hover effect: Change background to black and text to white for price2 and price3 */
    .price2:hover, .price3:hover {
      background-color: black;
      color: white;
    }

    /* footer css  */
    .foot li {
      line-height: 2em;
      font-size: 14px;
    }

    .breadcrum {
      font-size: 3em;
      font-weight: 800;
    }

    /* icons css  */
    .icon-red {
      background-color: #fff;
      color: red;
    }

    .icon-white {
      background-color: red;
      color: #fff;
    }

    .single-icon {
      color: red;
    }

    .text-red {
      color: red;
    }

    /* headings css  */
    .main-head {
      font-size: 2.5em;
      font-weight: 800;
    }

    /* buttons css  */
    /* From Uiverse.io by felipesntr */
    button {
      font-size: 16px;
      margin: auto;
      padding: 0.9em 3em 0.9em 3em;
      border: none;
      background: red;
      color: white;
      transition: all 0.1s linear;
    }

    .full-rounded {
      border-radius: 2em;
    }


    .input-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      max-width: 500px;
      margin: 0 auto;
      padding: 5px;
    }

    .input {
      width: 100%;
      border: none;
      outline: none;
      padding: 12px 20px;
    }

    .Subscribe-btn {
      position: absolute;
      right: 5px;
      max-width: 110px;
      font-size: 16px;
      padding: 8px 24px;
      border: none;
      transition: all 0.3s ease;
    }

    /* Responsive Breakpoints */
    @media (max-width: 768px) {
      .input-wrapper {
        max-width: 400px;
        padding: 4px;
      }

      .input {
        padding: 10px 15px;
        font-size: 14px;
      }

      .Subscribe-btn {
        padding: 6px 20px;
        font-size: 14px;
        max-width: 120px;
      }
    }

    @media (max-width: 576px) {
      .input-wrapper {
        max-width: 100%;
        padding: 3px;
      }

      .input {
        padding: 8px 12px;
        font-size: 13px;
      }

      .Subscribe-btn {
        padding: 5px 15px;
        font-size: 13px;
        max-width: 100px;
      }
    }




    /* From Uiverse.io by vinodjangid07 */




    /* play button css  */
    .play {
      color: black;
      width: 50px;
      height: 50px;
      padding: 20px;
      border-radius: 100%;
      /* background: linear-gradient(30deg, rgb(255, 130, 0) 20%, rgb(255, 38, 0) 80%); */
      background-color: #fff;
      transition: all 0.5s ease-in-out 0s;
      box-shadow: rgba(193, 244, 246, 0.698) 0px 0px 0px 0px;
      animation: 1.2s cubic-bezier(0.8, 0, 0, 1) 0s infinite normal none running pulse;
      border: 0;
    }

    .play:is(:hover, :focus) {
      transform: scale(1.2);
    }

    @keyframes pulse {
      100% {
        box-shadow: 0 0 0 45px rgba(193, 244, 246, 0);
      }
    }

    .get li {
      line-height: 2em;
      font-weight: 600;
      font-size: 17px;
    }


    /* From Uiverse.io by vinodjangid07 */
    .input-wrapper {
      width: fit-content;
      height: 40px;
      padding: 5px;
      box-sizing: content-box;
      display: flex;
      align-items: center;
    }

    .input {
      height: 100%;
      border: none;
      outline: none;
      padding-left: 15px;
      font-size: 1em;
    }


    /* Hover effects for the feature cards */
    .hover-effect {
      transition: all 0.3s ease-in-out;
      background-color: white;
      color: black;
    }

    .hover-effect:hover {
      background-color: #dc3545;
      color: white;
    }

    .hover-effect i {
      transition: color 0.3s ease-in-out;
    }

    .hover-effect:hover i {
      color: white;
    }

    /* marquee css  */
    /* Make sure all images have the same size */
    .img-fluid {
      width: 100%;
      /* Fit images to the container */
      height: 100px;
      /* Maintain aspect ratio */
      object-fit: contain;
      /* Make sure image fits within the space */
    }


    /* Side Icon Bar */
    .side-icon-bar {
      position: fixed;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      /* Center vertically */
      background-color: #de7c7c;
      /* Softer red shade for the bar */
      border-radius: 10px 0 0 10px;
      /* Rounded left edge */
      padding: 10px;
      display: flex;
      flex-direction: column;
      /* Arrange icons vertically */
      align-items: center;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    /* Individual Icons */
    .icon-hover {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 30px;
      margin-bottom: 10px;
      /* Spacing between icons */
      background-color: #e57373;
      /* Default pink shade */
      border-radius: 50%;
      transition: background-color 0.3s, color 0.3s;
      /* Smooth hover effects */
    }

    /* Icon Styling */
    .icon-hover i {
      color: white;
      font-size: 17px;
    }

    /* Hover Effects */
    .icon-hover:hover {
      background-color: red;
      /* Highlight color on hover */
      color: black;
      /* Change icon color on hover */
    }


    /* Grayscale effect */
    .grayscale {
      filter: grayscale(100%);
      transition: filter 0.3s ease;
    }

    /* Return to normal colors on hover */
    .grayscale:hover {
      filter: grayscale(0%);
    }


    /* our success story css  */
    /* Custom section styles */
    .custom-section {
      /* padding: 5rem 0; */
      background-color: #252433;
      color: white;
      position: relative;
    }

    .custom-container {
      width: 90%;
      margin: 0 auto;
    }

    .custom-row {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .custom-column-left,
    .custom-column-right {
      width: 48%;
      position: relative;
    }

    .custom-image-container {
      position: absolute;
      top: -180px;
      left: -20px;
      width: 100%;
    }

    .custom-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      object-position: center;
      border-radius: 0.5rem;
    }

    .custom-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 5rem;
    }

    .custom-stats h2 {
      font-weight: 800;
    }

    .custom-stat-item {
      text-align: center;
      width: 30%;
    }

    .custom-column-right {
      padding-left: 2rem;
    }

    .custom-icon-text {
      display: flex;
      align-items: center;
    }

    .custom-icon {
      background-color: red;
      color: white;
      padding: 0.5rem;
      border-radius: 50%;
      font-size: 1.5rem;
    }

    .custom-subtitle {
      font-weight: bold;
      color: red;
      padding-left: 1rem;
    }

    .custom-heading {
      font-weight: bold;
      padding-top: 2rem;
      font-size: 2rem;
    }

    .custom-paragraph {
      padding-top: 1rem;
    }

    .custom-button {
      padding: 10px 20px;
      background-color: red;
      color: white;
      border: none;
      border-radius: 25px;
      cursor: pointer;
    }

    .custom-button:hover {
      background-color: darkred;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {

      .custom-column-left,
      .custom-column-right {
        width: 100%;
        margin-bottom: 20px;
      }

      .custom-stats {
        flex-direction: column;
        text-align: center;
      }

      .custom-stat-item {
        width: 100%;
        margin-bottom: 20px;
      }

      .custom-image-container {
        position: relative;
        top: 0;
        left: 0;
      }

      .custom-heading {
        font-size: 1.5rem;
      }

      .custom-button {
        width: auto;
        padding: 12px 25px;
        font-size: 1rem;
      }

      .custom-icon {
        font-size: 1.2rem;
        height: 2.5rem;
        width: 2.5rem;
      }
    }


    /* testimoniall css  */

    .parallax-section {
      height: 100vh;
      position: relative;
      overflow: hidden;
    }

    .parallax-bg {
      min-height: 100vh;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
    }

    .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.7);
    }

    .testimonial-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    .icon-circle {
      width: 80px;
      height: 80px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      font-size: 24px;
    }

    .testimonial-card {
      background: white;
      padding: 2rem;
      border-radius: 15px;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .client-img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      margin-right: 15px;
    }

    .client-info {
      display: flex;
      align-items: center;
      margin-top: 20px;
    }

    /* Responsive Styles */
    @media (max-width: 768px) {
      .testimonial-card {
        padding: 1.5rem;
        margin: 0 15px;
      }

      .parallax-bg {
        background-attachment: scroll;
      }

    }

    @media (max-width: 576px) {
      .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 20px;
      }

      .client-img {
        width: 50px;
        height: 50px;
      }

      .testimonial-card {
        padding: 1rem;
      }
    }

    /* end  */

    .best li {
      line-height: 2em;
    }