/* Features Section - Tabs Styling */
.features .nav-tabs {
    border: 0;
    background-color: rgba(33, 37, 41, 0.04); /* Equivalent to color-mix(in srgb, var(--default-color), transparent 96%) */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 6px;
    width: auto;
  }
  
  .features .nav-item {
    margin: 0;
    padding: 0 5px 0 0;
  }
  
  .features .nav-item:last-child {
    padding-right: 0;
  }
  
  .features .nav-link {
    background-color: transparent;
    color: #2d465e; /* Equivalent to var(--heading-color) */
    padding: 10px 30px;
    transition: 0.3s;
    border-radius: 50px; /* Rounded shape for all tabs */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    height: 100%;
    border: 0;
    margin: 0;
  }
  
  @media (max-width: 468px) {
    .features .nav-link {
      padding: 8px 20px;
    }
  }
  
  .features .nav-link i {
    padding-right: 15px;
    font-size: 48px;
  }
  
  .features .nav-link h4 {
    font-size: 20px;
    font-weight: 500;
    margin: 0;
  }
  
  .features .nav-link:hover {
    background-color: rgba(33, 37, 41, 0.2); /* Equivalent to color-mix(in srgb, var(--default-color), transparent 80%) */
  }
  
  .features .nav-link:hover h4 {
    color: #0d83fd; /* Light blue color for hover text */
  }
  
  .features .nav-link.active {
    background-color: #0d83fd !important; /* Light blue background for active tab */
    border-color: #0d83fd !important;
    border-radius: 50px !important; /* Ensure active tab has the same rounded shape */
  }
  
  .features .nav-link.active h4 {
    color: white !important; /* White text for active tab */
  }
  
  .features .tab-content {
    margin-top: 30px;
  }
  
  .features .tab-pane h3 {
    color: #2d465e; /* Equivalent to var(--heading-color) */
    font-weight: 700;
    font-size: 32px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  
  .features .tab-pane h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 60px;
    height: 3px;
    background: #0d83fd; /* Light blue color for the underline */
    left: 0;
    bottom: 0;
  }
  
  .features .tab-pane ul {
    list-style: none;
    padding: 0;
  }
  
  .features .tab-pane ul li {
    padding-top: 10px;
  }
  
  .features .tab-pane ul i {
    font-size: 20px;
    padding-right: 4px;
    color: #0d83fd; /* Light blue color for icons */
  }
  
  .features .tab-pane p:last-child {
    margin-bottom: 0;
  }
  /*--------------------------------------------------------------
  # Features Cards Section
  --------------------------------------------------------------*/
  .features-cards {
    --default-color: #555;
    --heading-color: #333;
  }
  
  .features-cards .feature-box {
    height: 100%;
    padding: 40px 30px;
    border-radius: 10px;
  }
  
  .features-cards .feature-box i {
    font-size: 44px;
    display: inline-block;
    line-height: 0;
    color: var(--accent-color);
    margin-bottom: 20px;
  }
  
  .features-cards .feature-box h4 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px 0;
  }
  
  .features-cards .feature-box p {
    font-size: 15px;
    margin-bottom: 0;
  }
  
  .features-cards .feature-box.orange {
    background-color: #fff3e2;
  }
  
  .features-cards .feature-box.orange i {
    color: #edb86e;
  }
  
  .features-cards .feature-box.blue {
    background-color: #deedfd;
  }
  
  .features-cards .feature-box.blue i {
    color: #20a5f8;
  }
  
  .features-cards .feature-box.green {
    background-color: #d5f1e4;
  }
  
  .features-cards .feature-box.green i {
    color: #48c88a;
  }
  
  .features-cards .feature-box.red {
    background-color: #fdeded;
  }
  
  .features-cards .feature-box.red i {
    color: #f28484;
  }
  
  /* Carousel container */
  .carousel {
    position: relative;
  }
  
  /* Image container */
  .image-container {
    position: relative;
    display: inline-block;
  }
  
  /* Overlay */
  .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.1) 10%, /* Top: Light overlay (10% opacity) */
      rgba(0, 0, 0, 0.6) 90% /* Bottom: Dark overlay (60% opacity) */
    );
    pointer-events: none; /* Ensure the overlay doesn't block interactions */
  }
  
  /* Overlay text */
  .image-container .overlay-text {
    position: absolute;
    bottom: 20px; /* Adjust as needed */
    left: 20px; /* Adjust as needed */
    color: white;
    text-align: left;
    z-index: 2; /* Ensure text is above the overlay */
  }
  
  .image-container .overlay-text h4 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .image-container .overlay-text p {
    font-size: 16px;
    margin: 0;
  }
  
  /* Carousel controls */
  /* Carousel controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 40px; /* Adjust button size */
    height: 40px;
    background-color: white; /* Light blue background */
    border-radius: 50%; /* Rounded buttons */
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    opacity: 0.8; /* Slightly transparent */
    transition: opacity 0.3s ease, background-color 0.3s ease; /* Smooth hover effect */
  }
  
  .carousel-control-prev:hover,
  .carousel-control-next:hover {
    opacity: 1; /* Fully opaque on hover */
    background-color: #0a6fd1; /* Slightly darker blue on hover */
  }
  
  .carousel-control-prev {
    left: 20px; /* Position from the left */
  }
  
  .carousel-control-next {
    right: 20px; /* Position from the right */
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(1); /* White arrows */
    width: 24px; /* Adjust arrow size */
    height: 24px;
    color: #0a6fd1;
  }
  /* Get Started Button */
  .btn-get-started {
    background-color: #0d83fd; /* Light blue background */
    color: white; /* White text */
    padding: 10px 30px; /* Padding for button size */
    border-radius: 50px; /* Rounded corners */
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Font size */
    font-weight: 500; /* Font weight */
    transition: background-color 0.3s ease; /* Smooth hover effect */
    display: inline-block; /* Ensure button is inline */
  }
  
  .btn-get-started:hover {
    background-color: #0a6fd1; /* Slightly darker blue on hover */
    color: white; /* Ensure text stays white */
  }