body {
    font-family: 'Arial', sans-serif;
}

.header {
    position: relative;
    background: linear-gradient(to right, #242424, #505050);
    color: white;
    padding: 150px 0 150px 0;
    overflow: hidden;
}


.header .navbar {
    background: transparent !important;
    transition: background-color 0.3s ease;
    padding: 0rem 0rem;
}

.header .navbar.scrolled {
    background: white !important;
}

.header .navbar.scrolled .nav-link {
    color: #242424 !important;
}


.nav-space {
    margin-right: 50px;
    /* Adjust the spacing value as needed */
}

.navbar-nav .nav-item:last-child.nav-space {
    margin-right: 0;
    /* Remove right margin from the last item */
}

.header h1 {
    font-size: 56px;
    font-weight: bold;
}

.header p {
    font-size: 20px;
    max-width: 600px;
    margin: 20px auto;
}

.header .btn-primary {
    background-color: #ff8c00;
    border: none;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 300px;
}

.custom-shape-divider-bottom .shape-fill {
    fill: #ffffff;
}

.header-content {
    position: relative;
    z-index: 1;
}

.header img {
    max-width: 100%;
    height: auto;
    margin-top: 40px;
}

.footer {
    position: relative;
    background: linear-gradient(to right, #505050, #242424);
    color: white;
    padding: 150px 0 10px 0;
    overflow: hidden;
}

.custom-shape-divider-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-top svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 300px;
}

.custom-shape-divider-top .shape-fill {
    fill: #ffffff;
}

.footer-content {
    position: relative;
    z-index: 1;
}


.feature-icon {
    font-size: 2rem;
    color: #ff8c00;
    margin-right: 10px;
}

.media:hover {
    cursor: pointer;
}

#feature-image {
    transition: opacity 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.feature-icon {
    color: gray;
    transition: color 0.3s ease;
}

.colored-icon {
    color: #ff860d;
}


.nav-space {
    margin-right: 50px;
    /* Adjust the spacing value as needed */
}

.navbar-nav .nav-item:last-child.nav-space {
    margin-right: 0;
    /* Remove right margin from the last item */
}

.nav-link {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    /* Adjust as needed */
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    /* Thickness of the underline */
    background-color: #ff860d;
    /* Color of the underline */
    border-radius: 5px;
    /* Curved corners */

    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}


#why {
    background-color: #f8f9fa;
    /* Light background color */
    padding-top: 50px;
    padding-bottom: 50px;
}

.why-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card i {
    margin-bottom: 15px;
}

.why-card p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}


.subscribe-box {
    background-color: #333;
    /* Background color for the subscribe box */
    color: white;
    /* Text color */
    border-radius: 20px;
    background-size: cover;
    background-repeat: no-repeat;
}

.subscribe-box h2 {
    font-size: 2rem;
    font-weight: 700;
}

.subscribe-box p {
    font-size: 1rem;
    font-weight: 400;
}

.subscribe-box .form-control {
    border-radius: 30px;
    /* Rounded input */
    padding: 10px 20px;
    border: none;
}

.subscribe-box .btn-primary {
    border-radius: 30px;
    /* Rounded button */
    padding: 10px 30px;
    background-color: #ff860d;
    /* Button color */
    border: none;
    transition: background-color 0.3s;
}

.subscribe-box .btn-primary:hover {
    background-color: #e07b0a;
    /* Hover color */
}

#backToTopBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff860d;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
}

#backToTopBtn:hover {
    background-color: #555;
}


#navButtons {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 99;
}

#navButtons button {
    display: block;
    margin: 5px 0;
    padding: 10px 15px;
    background-color: #ff860d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#navButtons button:hover {
    background-color: #555;
}