.hero-section {
    position: relative;
    background: url('images/hero-background-dark.jpg') no-repeat center center/cover;
    padding: 150px 0; /* Adjust padding to reduce the overall height */
    color: white;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: bold;
}

.hero-content p.lead {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
}

.hero-content .btn-outline-light {
    color: #fff;
    border-color: #fff;
}

.hero-content .btn-outline-light:hover {
    background-color: #fff;
    color: #000;
}

.hero-content .text-white {
    color: #fff !important; /* Force text to be white */
}

.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 ratio */
    border-radius: 15px; /* Round the corners of the iframe container */
}

.embed-responsive .embed-responsive-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 15px; /* Round the corners of the iframe itself */
}

/* Media query to adjust the hero-content positioning for smaller screens */
@media (max-width: 992px) {
    .hero-content {
        margin-top: 30px;
        padding-left: 30px; /* Add padding from the left */
        text-align: left; /* Align text to the left */
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 0px;
        padding-left: 20px; /* Add padding from the left */
        text-align: left;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-section .col-md-4 {
        position: static;
        transform: none;
        margin-top: 20px;
    }
}

/* Features Section */
.features-section img {
    border-radius: 15px; /* Adjust the value to your preference */
}

.about-img {
    width: 25%; /* Adjust the percentage to make the image smaller */
    height: auto; /* Ensure the aspect ratio is maintained */
    border-radius: 15px; /* Optional: round the corners */
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #fff;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #fff;
    text-decoration: none;
}

.footer ul li a:hover {
    text-decoration: underline;
}

.footer .social-icons {
    display: flex;
    gap: 10px;
}

.footer .social-icons a {
    color: #fff;
    text-decoration: none;
}

.footer .text-muted {
    color: #777;
    margin-top: 20px;
    font-size: 14px;
}

body, .footer h5, .footer ul li a {
    font-family: 'Quicksand', sans-serif;
}

.bg-custom-dark-gray {
    background-color: #141414; /* This is the hex code for Bootstrap's 'dark' color */
    color: white; /* Adjust text color as needed */
}

.tube-image {
    width: 75%; /* Adjust the width as needed */
    max-width: 200px; /* Maximum width */
    height: auto; /* Maintain aspect ratio */
}

