/* body custme */
.container-custome {
    margin-left: 20px;
    margin-right: 20px;
}

/* heeader color */
.main-header {
    background-color: #0A8112;
}

/* cursoal of scroll text */
@media (max-width: 576px) {
    .scrolling-text h5{
        font-size: 15px; /* Set a different font size for extra small screens */
    }
}
/* .scrolling-text {
    height: 100vh;
    overflow: hidden;
}

.scrolling-text h4 {
    animation: scrollUp 10s ease-out forwards;
    animation: scrollUp 10s linear infinite;
} */

@keyframes scrollUp {
    0% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

/* end footer bg */
.footer-bottom {
    background-color: #00102E;
}

/* carousel slider text center */
.carousel-caption {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100% !important;
}

/* slider image  */
.slider-img {
    height: 100vh;
    object-fit: cover;
}

/* Responsive styling for mobile devices */
@media (max-width: 657px) {
    .slider-img {
        height: auto;
    }
}

/* form-control-custome */
.form-control-custome {
    height: 50px;
}

/* key figures */
.custom-row {
    background-color: rgba(128, 128, 128, 0.6);
    /* Set your desired background color */
    color: #000;
    /* Set your desired text color */
    padding: 10px;
    /* Add padding as needed */
}

/* .key-text {
    margin-left: 80px;
} */

/* last css */
.custom-container {
    border: 2px solid #cf2e2e;
    /* Set your desired border color */
    /* padding: 10px; */
    /* Add padding as needed */
    border-radius: 10px;
    /* Add border-radius for rounded corners */
}

.p-color {
    color: #cf2e2e;
}

.custom-column {
    /* border: 1px solid gray; */
    /* Set your desired border color */
    padding: 15px;
    /* Add padding as needed */
    border-radius: 5px;
    /* Add border-radius for rounded corners */
    margin-bottom: 20px;
    /* Add margin between columns */
}

/* section margin top  */
.section-mt {
    margin-top: 150px;
}

/* card background */
.card-bg {
    /* background-color: #B7ECEB; */
    background-color: rgba(255, 255, 255, 0.1);
}

.custom-card-shadow {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1),
        0 6px 20px rgba(0, 0, 0, 0),
        0 10px 5px rgba(0, 0, 0, 0.1);
}

.font-italic-custome {
    font-style: italic;
    font-size: 18px;
}

/* program tersinal */
.border-container {
    border: 1px solid #000;
    border-radius: 10px;
    padding: 20px;
    /* margin: 20px 0; */
}

/* .custom-list {
    list-style: none;
    padding: 0;
} */

/* .custom-list-item {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
}

.custom-list-item::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #000;
    font-size: 1.3em;
    line-height: 0.8;
} */

.rounded-image {
    border-radius: 10px;
    /* Adjust the value as needed */
    overflow: hidden;
    /* Ensures the border-radius is applied */
}

/* hr border */
.custom-hr {
    height: 1px;
    /* Adjust the height of the border */
    background-color: #000;
    /* Adjust the color of the border */
}

/* custome column border color */
.custom-column-color-border {
    /* border: 2px solid #007bff;  */
    /* padding: 20px;  */
    text-align: center;
    width: 100%;
    /* height: 240px; */
}

.full-width-image {
    box-sizing: border-box;
    /* Include border in the width calculation */
}

/* Medium and larger screens: Center the column */
@media (max-width: 768px) {
    .custom-md-center {
        margin-left: auto;
        margin-right: auto;
    }
}

/* color */
.color-0 {
    border: 2px solid green;
}

.color-1 {
    border: 2px solid red;
}

.color-2 {
    border: 2px solid blue;
}

.color-3 {
    border: 2px solid yellow;
}

.color-4 {
    border: 2px solid black;
}

.color-5 {
    border: 2px solid purple;
}

/* Custom Styles for Full-width Button */
.custom-btn {
    width: 80%;
    display: block;
    margin: 0 auto;
}

/* Custom Styles for Centered and 60% Width Input */
.custom-input {
    width: 80%;
    margin: 0 auto;
    /* Center-align the input */
}

.custom-input-hight {
    height: 50px;

}

.custom-input-border {
    border: 1px solid gray;
}

/* contact of custom shadow */
.contact-custom-card-shadow {
    margin-bottom: 20px;
    /* Adjust margin as needed */
    box-shadow: 0px -15px 20px -10px rgba(0, 0, 0, 0.3);
    /* Set the box shadow with negative vertical offset */
}

/* div map shadow */
.divWithShadow {
    width: 100%;
    height: 300px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.4);
    /* Set the box shadow for all sides */
}

/*auto increament number  */
@property --n {
    syntax: "<integer>";
    initial-value: 0;
    inherits: false;
}

.number {
    animation: animate var(--duration) forwards var(--timing, linear);
    counter-reset: num var(--n);
    font-weight: bold;
    font-size: 25px;
    font-family: sans-serif;
    padding: 1rem;
    color: #0A8112;
}

.number::before {
    content: counter(num);
}

@keyframes animate {
    from {
        --n: var(--from);
    }

    to {
        --n: var(--to);
    }
}

.img-bg-card {
    background-image: url('/assets/my-img/bg-banner.jpg');
    /* Replace with the path to your image */
    background-size: cover;
    /* Adjust as needed */
    background-position: center;
    height: auto;
}