.nav-link.active {
            font-weight: 700;
        }
        html {
            scroll-behavior: smooth;
        }
        /* Custom styles for the orange theme */
        .text-myorange { color: #f46d22; }
        .bg-myorange { background-color: #f46d22; }
        .btn-myorange {
            background-color: #f46d22;
            color: white;
            border-color: #f46d22;
        }
        .btn-myorange:hover {
            background-color: #e05a18;
            border-color: #e05a18;
            color: white;
        }
        .form-control:focus {
            border-color: #f46d22;
            box-shadow: 0 0 0 0.25rem rgba(244, 109, 34, 0.25);
        }
        .bg-gradient-myorange {
            background: linear-gradient(to right, #f46d22, #e05a18);
        }
        .bg-orange-subtle { background-color: #fff3e6; } /* Custom light orange for suggestions */
        .text-orange-emphasis { color: #cc581a; } /* Custom dark orange for suggestions */
        .bg-red-subtle { background-color: #f8d7da; } /* Bootstrap's danger light */
        .text-red-emphasis { color: #842029; } /* Bootstrap's danger dark */

        /* Basic styling for the loading indicator */
        .loading-spinner {
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #f46d22; /* Orange */
            border-radius: 50%;
            width: 20px;
            height: 20px;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Hero banner specific styles */
        .hero-banner-container {
            position: relative;
            width: 100%;
            padding-top: 30%; /* Adjust this for desired aspect ratio (e.g., 56.25% for 16:9) */
            overflow: hidden;
        }
        .hero-banner-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area without distortion */
        }
        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
        }
        
      /* Custom styles for the orange theme */
        .text-myorange { color: #f46d22; }
        .bg-myorange { background-color: #f46d22; }
        .btn-myorange {
            background-color: #f46d22;
            color: white;
            border-color: #f46d22;
        }
        .btn-myorange:hover {
            background-color: #e05a18;
            border-color: #e05a18;
            color: white;
        }
        .form-control:focus {
            border-color: #f46d22;
            box-shadow: 0 0 0 0.25rem rgba(244, 109, 34, 0.25);
        }
        .bg-gradient-myorange {
            background: linear-gradient(to right, #f46d22, #e05a18);
        }
        .bg-orange-subtle { background-color: #fff3e6; } /* Custom light orange for suggestions */
        .text-orange-emphasis { color: #cc581a; } /* Custom dark orange for suggestions */
        .bg-red-subtle { background-color: #f8d7da; } /* Bootstrap's danger light */
        .text-red-emphasis { color: #842029; } /* Bootstrap's danger dark */

        /* Hero banner specific styles */
        .hero-banner-container {
            position: relative;
            width: 100%;
            padding-top: 30%; /* Adjust this for desired aspect ratio (e.g., 56.25% for 16:9) */
            overflow: hidden;
        }
        .hero-banner-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* Ensures the image covers the area without distortion */
        }
        .banner-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            text-align: center;
            color: white;
        }

        /* Hover effect for business size cards */
        .business-size-card {
            transition: background-color 0.3s ease-in-out, transform 0.3s ease-in-out;
        }
        .business-size-card:hover {
            background-color: #ffeccf; /* A slightly darker, more prominent orange-like shade on hover */
            transform: translateY(-5px); /* Optional: slight lift effect */
        }


        /*******************New Style***************/

        /* Feature Box
---------------------*/
.feature-box-1 {
  padding: 32px;
  box-shadow: 0 0 30px rgba(31, 45, 61, 0.125);
  margin: 15px 0;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
  top: 0;
}
.feature-box-1 * {
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}
.feature-box-1 .icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: #F46D22;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
  margin-bottom: 22px;
  font-size: 27px;
}
.feature-box-1 .icon i {
  line-height: 70px;
}
.feature-box-1 h5 {
  color: #20247b;
  font-weight: 600;
}
.feature-box-1 p {
  margin: 0;
}
.feature-box-1:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: auto;
  right: 0;
  border-radius: 10px;
  width: 0;
  background: #F46D22;
  z-index: -1;
  -moz-transition: ease all 0.35s;
  -o-transition: ease all 0.35s;
  -webkit-transition: ease all 0.35s;
  transition: ease all 0.35s;
}
.feature-box-1:hover {
  top: -5px;
}
.feature-box-1:hover h5 {
  color: #ffffff;
}
.feature-box-1:hover p {
  color: rgba(255, 255, 255, 0.8);
}
.feature-box-1:hover:after {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  left: 0;
  right: auto;
}
.section {
    padding: 100px 0;
    position: relative;
}
.section-title {
    padding-bottom: 45px;
}
.section-title h2 {
    font-weight: 700;
    color: #F46D22;
    font-size: 45px;
    margin: 0 0 15px;
    border-left: 5px solid #F46D22;
    padding-left: 15px;
}

.icon img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}


