.bg-image-container {
    display: flex;
    justify-content: center;  /* Horizontally centers the image */
    align-items: center;      /* Vertically centers the image */
    height: 100vh;            /* Makes the container take up the full viewport height */
}

.image-container {
    text-align: center;  /* Centers content inside the container */
}

.image-container img {
    max-width: 100%;   /* Ensures the image resizes responsively */
    height: auto;      /* Maintains the aspect ratio of the image */
    object-fit: contain;  /* Ensures the image fits well inside the container without stretching */
}

.text-container {
    margin-top: 20px;   /* Adds some space between the image and text */
}

.title {
    font-size: 3rem;   /* Adjust the title font size */
    font-weight: bold; /* Makes the title bold */
    color: black;      /* Makes the title text black */
}

.description {
    font-size: 2rem;    /* Adjust the description font size */
    color: #555;        /* Makes the description text slightly lighter */
    margin-top: 10px;   /* Adds space between title and description */
    line-height: 1.5;   /* Adjusts line height for better readability */
}


.image-box {
    flex: 1;
    max-width: 45%; /* Adjust max width of image box */
    margin-right: 20px; /* Space between image and description */
}

.image-box img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd; /* Optional: add a border around the image */
    border-radius: 8px; /* Optional: rounded corners */
}

/* Style for the description box */
.description-box {
    flex: 1;
    max-width: 45%; 
}

.description-box h2 {
    color: #FBFBFB; 
    font-size: 24px;
    margin-bottom: 10px;
}

.containerimage, .containerimage1 {
    background-color: #212020;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 0px; 
}

.quoeteline {
    background-color: #f8f9fa; /* Light grey background */
}

.quote-box {
    background-color: #ffffff; /* White card background */
    border: 1px solid #e9ecef; /* Light border for subtle definition */
    border-radius: 12px;       /* Rounded corners */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
}

h2.text-secondary {
    color: #6c757d; /* Soft grey for main heading */
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.5px; /* Slight letter spacing for elegance */
}

h2.text-muted {
    color: #adb5bd; /* Lighter grey for subtitle */
    font-weight: 400; /* Subtle weight for secondary text */
}


.containerimage {
    flex-direction: row; 
}


.containerimage1 {
    flex-direction: row-reverse; /* Reverse the order */
}


.image-box1 {
    flex: 1;
    max-width: 45%; 
    margin-right: 20px; 
}

.image-box1 img {
    width: 100%;
    height: auto;
    border: 2px solid #ddd;
    border-radius: 8px; 
}


.description-box1 {
    flex: 1;
    max-width: 45%; 
}

.description-box1 h2 {
    color: #FBFBFB; 
    font-size: 24px;
    margin-bottom: 10px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animated-logo {
    animation: fadeIn 1s ease-in-out;
}


.scrollable-image-container {
    display: flex;
    gap: 10px;
    overflow-x: auto; /* Enables horizontal scrolling */
    white-space: nowrap; /* Prevents wrapping */
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.scrollable-image-container img {
    height: 150px; /* Adjust image height */
    object-fit: cover; /* Ensures images scale properly */
    border-radius: 5px;
    transition: transform 0.2s ease-in-out;
}

.scrollable-image-container img:hover {
    transform: scale(1.1); /* Slight zoom effect on hover */
}

.hero {   
         background-color: #000000;
         /*background: linear-gradient(to bottom, #ff4500, #ff8c00, #ffd700);*/
          color: white;
          text-align: center;
          padding: 50px 20px;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
        }
        .hero p {
            font-size: 1.2rem;
            margin-top: 10px;
        }
        .custom-section {
            padding: 50px 20px;
        }
        .custom-section img {
            max-width: 100%;
            border-radius: 10px;
        }
        .custom-section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        .custom-section p {
            font-size: 1rem;
            color: #555;
        }
.card:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card img {
    transition: transform 0.3s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.video-background-section {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height for the video section */
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure video covers the container */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* Increase opacity for dimming */
    z-index: 1;
}

.content-container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%; /* Center content within the section */
}

h2 {
    font-size: 2rem;
    font-weight: bold;
}

.text-light {
    color: #e0e0e0 !important; /* Softer light color for readability */
}

.btn-primary {
    background-color: #007bff;
    border: none;
}

