
.carrer-path {
    padding: 100px;
}

.carrer-path .card-title {
    font-size: 1.2rem;
}

.carrer-path .card-body .float-right.small {
    background-color: var(--color-sec);
    padding: 0px;
    border: 1px solid var(--color-sec);
    border-radius: 7px;
}
.week-label {
background-color: rgb(48, 79, 255); /* You can adjust the blue color */
color: white; /* Text color should be white to stand out */
padding: 3px 5px; /* Add padding for better spacing */
border-radius: 7px; /* Optional: rounding corners */
font-size: 16px; /* Ensure the text is clear and readable */
}
@media only screen and (max-width:600px) {
    .carrer-path-fix{
       
    }
}
body, html {
  
    padding: 0;
    overflow-x: hidden;
   
}

        #partners {
            padding: 80px 0;
            background-color: #1a1a1a;
        }

        .partner-scroll-container {
            width: 100%;
            overflow: hidden;
            position: relative;
        }

        .partner-scroll {
            display: flex;
            width: fit-content;
            animation-duration: 30s;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
        }

        .scroll-left {
            animation-name: scroll-left;
        }

        .scroll-right {
            animation-name: scroll-right;
        }

        .partner-logo {
            flex: 0 0 auto;
            width: 200px;
            height: 100px;
            margin: 0 20px;
           /* background-color: #2a2a2a;*/
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }

        .partner-logo:hover {
            transform: scale(1.05);
        }

        .partner-logo img {
            max-width: 80%;
            max-height: 80%;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .partner-logo:hover img {
            opacity: 1;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        @keyframes scroll-right {
            0% {
                transform: translateX(-50%);
            }

            100% {
                transform: translateX(0);
            }
        }

        @media (max-width: 768px) {
            #partners {
                padding: 70px 0;
            }

            .partner-logo {
                width: 150px;
                height: 80px;
                margin: 0 10px;
            }
        }

        /* Modal Styles */
.modal-content {
    background-color: #1d1f20; /* Dark background for modal */
    color: #f0f0f0; /* Light text color */
    border-radius: 15px; /* Increased border radius for smooth corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* Subtle shadow for depth */
    border: none; /* Remove any default border */
}

/* Modal Header Styles */
.modal-header {
    background-color: #333; /* Dark gray header */
    color: #fff;
    border-bottom: 1px solid #444; /* Subtle separator */
    padding: 15px;
    text-align: center; /* Centered text */
}

/* Modal Title Styling */
.modal-title {
    font-size: 1.75rem; /* Larger title for prominence */
    font-weight: bold;
}

/* Close Button Styling */
.close {
    color: #aaa; /* Subtle close icon color */
    font-size: 1.8rem; /* Slightly larger for better accessibility */
    cursor: pointer; /* Indicate that it is clickable */
}

.close:hover {
    color: #fff; /* Change color on hover for better contrast */
}

/* Modal Body Styles */
.modal-body {
    padding: 25px 30px; /* Adjust padding for better spacing */
}

/* Form Group Label Styling */
.form-group label {
    font-size: 1.1rem;
    color: #ccc; /* Light gray for labels */
    margin-bottom: 5px; /* Added space between label and input */
}

/* Input Field Styling */
.form-control {
    width: 100%;
    padding: 12px; /* Increased padding for a more spacious feel */
    margin-top: 10px; /* Increased space above the input field */
    background-color: #444; /* Dark background for input fields */
    border: 1px solid #555;
    color: #fff;
    border-radius: 5px;
    transition: border-color 0.3s; /* Smooth transition for focus effect */
}

.form-control:focus {
    border-color: #007bff; /* Blue border on focus */
    outline: none; /* Remove the default outline */
}

/* Button Styling */
.btn-primary {
    background-color: #007bff;
    color: white;
    width: 100%;
    padding: 12px; /* Larger button for better usability */
    border: none;
    border-radius: 30px; /* Rounded corners for the button */
    font-size: 1.2rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Forgot Password Link */
.forgot-password {
    color: #007bff;
    font-size: 0.9rem;
    text-decoration: none;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* Modal Background Overlay */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.7); /* Darker backdrop */
}

/* Ensuring modal is centered */
.modal-dialog {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Ensure the modal is vertically centered on the screen */
}

.modal-content {
    margin: auto; /* Centering the modal content */
    width: 100%;
    max-width: 500px; /* Optional: Max width for the modal */
}
.discount-label {
    position: absolute;
    top: -10px; /* Position the label above the image */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Ensure it's perfectly centered */
    background-color: rgb(255, 47, 0);
    text-align: center;
    color: white;
    padding: px; /* Adjust padding to make the label compact */
    font-size: 0.6rem; /* Smaller font size */
    border-radius: 0px;
    text-transform: uppercase;
    width: 120px;
}

.product-body h5 {
    display: inline-flex; /* Makes the prices appear inline */
    align-items: center; /* Vertically center-align the text */
    gap: 5px; /* Add some space between the prices */
}

.product-body h5 del {
    color: #888; /* Style for the original price */
    text-decoration: line-through;
}

.discounted-price {
    color: rgb(43, 211, 48); /* Style for the discounted price */
    font-weight: bold;
}
#flowchart .mermaid i.fa-lightbulb {
    color: #5de44b !important;
}

#flowchart .mermaid i.fa-users {
    color: #4af341 !important;
}

#flowchart .mermaid i.fa-book {
    color: #ddff00;
    
}

#flowchart .mermaid i.fa-cogs {
    color: #ddff00;
    
}

#flowchart .mermaid i.fa-briefcase {
    color: #ddff00;
    
}

#flowchart .mermaid i.fa-trophy {
    color: #ddff00;
    
}
.review-video {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* Aspect ratio for 9:16 */
    background-color: #000;
    overflow: hidden;
}

.review-video img,
.video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.white-logo {
    filter: invert(1) hue-rotate(180deg); /* Inverts black to white */
}

/* Styling for the Login button */
.btn-main {
    border-radius: 30px; /* Add border radius */
    padding: 10px 20px;
    background-color: rgb(35, 84, 232);
    color: #fff;
    text-decoration: none;
}

.navbar {
    background-color: #181818; /* Or your desired navbar background */
}

.navbar-toggler {
    border: none;
    background: transparent;
}

/* Ensure the navbar items are centered */
.navbar-nav {
    justify-content: flex-end;
}
.mt-50 {
    margin-top: 80px;
}
.custom-image {
    width: 600px; /* Set a fixed width value */
    height: auto; /* Maintain aspect ratio */
}
.image-container .custom-image {
    display: block;
    max-width: 420px;
    width: 100%;
    max-height: 500px;
    margin-left: auto;
    margin-right: auto;
}
.custom-img {
    max-width: 100% !important;
}
/* Custom padding for the .feature sections */
.custom-padding {
    padding-bottom: 20px;
}

/* Custom styling for the image */
.custom-img {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
#flowchart {
    background-color: var(--bg-sec);
}

/* .row {
    height: 100%;
} */

.mermaid {
    margin-top: 1.5rem;
    text-align: center;
    color: white;
}

.section-head-tag {
    /* Add any styles you want for the section-head-tag */
}

.section-head-title {
    /* Add styles for section-head-title if needed */
}

.section-head-body {
    /* Add any styles for section-head-body */
}
/* Style for the quote mark */
.quote-mark i {
    font-size: 2rem; /* Adjust the icon size */
}

/* Styling for the review heading */
.review-head {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* Styling for review text */
.review-text p {
    font-style: italic;
}

/* Avatar container */
.review-avtar {
    display: flex;
    align-items: center;
    margin-top: 1rem;
}

/* Avatar image styling */
.avtar-img img {
    border-radius: 50%;
    width: 40px; /* Adjust the size as needed */
    height: 40px;
}

/* Avatar text styling */
.avtar-body h6 {
    font-size: 1rem;
    margin-bottom: 0;
    font-weight: bold;
}

.avtar-body p {
    font-size: 0.9rem;
    color: gray;
}

/* Styling for the video thumbnail */
.review-video img {
    cursor: pointer;
}

/* Styling for the container of reviews */
.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 2rem;
}

/* Styling for each review */
.review {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.review:hover {
    transform: translateY(-10px);
}

.review .review-video {
    position: relative;
    margin-bottom: 1rem;
}

/* Ensure each review card has spacing */
.col-lg-4, .col-md-6 {
    margin-bottom: 1.5rem;
}

.w-100 {
    width: 100%;
}
/* Styling for the contact section container */
#contact .container {
    border-radius: 15px;
    box-shadow: 0 4px 10px rgb(29, 29, 31);
    padding: 20px;
    background: rgb(29, 29, 31);
    color: #fff;
}

/* Styling for the contact section title */
#contact .section-head-tag {
    color: #007bff;
}

#contact .section-head-title {
    color: #fff;
}

/* Styling for the contact section body text */
#contact .section-head-body {
    margin-bottom: 30px;
}

/* Styling for contact info section */
#contact .info {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

/* Styling for the icons in contact info */
#contact .info-icon {
    margin-right: 10px;
    color: #007bff;
}

/* Styling for links in the contact section */
#contact a {
    color: #007bff;
    text-decoration: none;
}

/* Form container and form elements */
#contact .contact-form {
    padding: 20px;
    background-color: rgb(29, 29, 31);
    border-radius: 10px;
}

#contact .form-group {
    margin-bottom: 15px;
}

#contact .form-group input,
#contact .form-group textarea,
#contact .form-group select {
    border-radius: 10px;
    border: 1px solid #444;
    padding: 10px;
    width: 100%;
    background: #333;
    color: #fff;
}

#contact .form-group textarea {
    resize: none;
}

/* Button styling */
#contact .btn-main {
    border-radius: 20px;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
}

#contact .btn-main:hover {
    background-color: #0056b3;
}
