
/* custom css for home page */
.about-item-text {
    text-align: left; /* Align the text to the left for proper indentation */
}

.about-item-text li {
    display: flex; /* Use flexbox to align arrow and text */
    align-items: flex-start; /* Align arrow with the start of the text */
    margin: 5px 0; /* Add spacing between items */
}

.bullet-arrow {
    color: #007bff; /* Arrow color */
    font-weight: bold; /* Arrow weight */
    flex-shrink: 0; /* Prevent arrow from resizing */
    width: 20px; /* Fixed width to align all arrows */
}

.bullet-text {
    /* Justify the text */
    text-align: justify;
    margin-left: 5px; /* Add space between arrow and text */
}
/* style for video */
.video-sec {
    padding: 40px 0; /* Add spacing around the section */
}

.intro-text h2 {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.intro-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.video-player-home iframe {
    border-radius: 8px; /* Add rounded corners to the video */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
}
/* style for modal */
/* General Styling */
body {
    font-family: Arial, sans-serif;
}

/* Trigger Button */
.btn-open-modal {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-open-modal:hover {
    background-color: #0056b3;
}

/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

/* Modal Content */
.modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

/* Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.close-modal:hover {
    color: red;
}

/* Form Styling */
.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}

input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

input:focus {
    border-color: #007bff;
    outline: none;
}

.btn-submit {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #218838;
}

/* Inventory Management page */
/* Custom CSS for styling the CTA section */
.cta-section {
    background-color: #f8f9fa;
    padding: 100px 0;
    text-align: center;
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.cta-btn {
    font-size: 1.25rem;
    padding: 12px 30px;
}
