/*Body*/
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    line-height: 1.6;
    color: #333;
    width: 100%;
}

h1,
h2,
h3 {
    font-family: 'Lucida Sans Unicode';
    font-weight: 600;
}


a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    /* Smooth color transition on hover */
}

a:hover {
    text-decoration: underline;
    color: blue;
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

.flowchart-image {
    max-width: 70%;
    /* Adjust as needed */
    height: 50%;
    display: block;
    /* Remove any extra spacing */
    margin: 20px auto;
    /* Center the image */
}

header {
    width: 100%;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
}

.header-content>div {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
}



.body-content {
    max-width: 100%;
}

.session {
    width: 100%;
    margin: 20px auto;
    background-color: green;
}

.logo {
    margin-right: 5px;
}

.logo img {
    max-width: 100px;
    height: auto;
    display: block;
}

/*Whats app setup*/
.whatsapp-icon {
    display: flex;
    align-items: center;
}


.main-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.main-nav a:hover {
    background-color: #f0f0f0;
}

.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    text-align: left;
    right: auto;
    background-color: #3498db;
    border: 1px solid #2980b9;
    z-index: 10;
}

.main-nav .dropdown li {
    white-space: nowrap;
}

.main-nav .dropdown a {
    color: white;
}

.main-nav .dropdown a:hover {
    background-color: #2980b9;
}

.main-nav .projects-menu:hover>a {
    background-color: #3498db;
    color: white;
}

.main-nav .projects-menu:hover .dropdown {
    display: block;
}

.main-nav .dropdown li a {
    color: white;
    display: block;
    padding: 10px 15px;
}


.main-nav .dropdown li a:hover {
    background-color: #2980b9;
}

.contact-info {
    display: flex;
    /* Make it a flex container */
    align-items: center;
    /* Vertically align items */
    white-space: nowrap;
    /* Prevent text wrapping */
    margin: 0;
    /* Remove any default margins */
    justify-content: right;
    padding-bottom: 20px;
}

.contact-info h5 {
    margin: 0;
    /* Remove default h5 margins */
    display: flex;
    /* Make h5 a flex container too */
    text-align: center;
    align-items: center;
    /* Vertically align image within h5 */
}

.header-whatsapp {
    max-width: 30px;
    /* Adjust size as needed */
    height: auto;
    margin-left: 5px;
    /* Space between text and image */
}

.title {
    display: flex;
    /* Make it a flex container */
    justify-content: flex-start;
    /* Align to the left */
    align-items: center;
    /* Vertically center (optional) */
}

.title h1 {
    text-align: left !important;
    margin: 0;
}

.others {
    max-width: 100%;
}

h5 {
    text-align: right;
}

header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    text-align: left;
}

header p {
    font-style: italic;
    margin-bottom: 20px;
}

nav {
    padding: 2px;
    width: 100%;
    text-align: right;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 12px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 0px;
    justify-content: right;
}

nav li {
    display: inline-block;
    margin: 0 1px;
}

nav a {
    display: block;
    padding: 5px;
    text-decoration: none;
    color: #333;
}


.image-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 20px;
}

.image-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Or auto if you want the image's aspect ratio to be preserved, but then the slider height will be dynamic */
    object-fit: cover;
    /* Cover the entire container */
    opacity: 0;
    transition: opacity 1s ease;
}

.image-slider img.active {
    opacity: 1;
    /* Show the active image */
}

.image-slider .indicator-container {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.image-slider .indicator {
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.image-slider .indicator.active {
    background-color: rgba(0, 0, 0, 0.8);
}

map {
    height: 1450px;
    /* Adjust height as needed */
    width: 1600px;
    /* Adjust width as needed */
}



.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    max-width: 960px;
    margin: 40px auto;
    padding: 20px;
}

.main-content article {
    margin-bottom: 30px;
}

.main-content article h2 {
    margin-bottom: 10px;
}

.main-content aside {
    padding: 20px;
    background-color: #f8f9fa;
    border: 1px solid #eee;
}

.main-content aside h3 {
    margin-bottom: 10px;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 5px;
}


.whatsapp-button {
    position: fixed;
    /* Stay in place even when scrolling */
    left: 20px;
    /* Adjust left position */
    bottom: 20px;
    /* Adjust bottom position */
    z-index: 100;
    /* Ensure it's above other content */
}

.whatsapp-button a {
    display: block;
    /* Make the link a block element */
}

.whatsapp-button img {
    width: 110px;
    /* Adjust icon size */
    height: 30px;
}

/* Optional: Add a hover effect */
.whatsapp-button img:hover {
    opacity: 0.8;
    /* Slightly transparent on hover */
}

.image-carousel {
    position: relative;
    width: 80%;
    /* Adjust as needed */
    max-width: 960px;
    /* Optional maximum width */
    margin: 20px auto;
    overflow: hidden;
}

.image-container-carousel {
    display: flex;
    transition: transform 0.3s ease;
    padding: 0 10px;
    margin-right: 10px;
}

.image-container-carousel img:last-child {
    margin-right: 0;
}

.image-container-carousel img {
    width: 640px;
    /* Fixed width - MUST MATCH IMAGE WIDTH */
    height: 960px;
    /* Fixed height - MUST MATCH IMAGE HEIGHT */
    object-fit: cover;
    margin-right: 25px;
}

.image-carousel .prev-button,
.image-carousel .next-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(6, 208, 100, 0.962);
    color: rgb(235, 229, 229);
    border: none;
    cursor: pointer;
    z-index: 1;
    width: 40px;
    /* Adjust width as needed */
    height: 40px;
    /* Adjust height as needed */
    border-radius: 50%;
    /* Make them round */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    /* Adjust icon size */
}

.image-carousel .prev-button {
    left: 10px;
}

.image-carousel .next-button {
    right: 10px;
}

.prev-button:hover,
.next-button:hover {
    background-color: rgba(255, 16, 4, 0.7);
    /* Darker on hover */
}

/* Hide the text inside the buttons (optional) */
.prev-button span,
.next-button span {
    display: none;
}


.youtube-links-row {
    position: relative;
    width: 80%;
    max-width: 960px;
    margin: 20px auto;
    overflow: hidden;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    justify-content: center;
}

.youtube-links-row a {
    /* Styles for the links (optional) */
    display: block;
    /* Important for thumbnail display */
}

.youtube-links-row img {
    /* Styles for the thumbnails */
    width: 200px;
    /* Adjust thumbnail width */
    height: auto;
    border: 1px solid #ccc;
}

.thumbnail-container {
    width: 80%;
    /* Adjust as needed */
    max-width: 960px;
    /* Optional max-width */
    margin: 20px auto;
    overflow: hidden;
    /* Important: Prevents content from overflowing initially */
}

.thumbnail-scroll {
    overflow-x: auto;
    /* Enables horizontal scrolling */
    overflow-y: hidden;
    /* Hide vertical scrollbar (if present) */
    scrollbar-width: thin;
    /* For Firefox */
    -webkit-overflow-scrolling: touch;
    /* For iOS Safari */
}

/* Optional: Style the scrollbar */
.thumbnail-scroll::-webkit-scrollbar {
    width: 8px;
    /* Adjust scrollbar width */
    height: 8px;
    /* Adjust scrollbar height */
}

.thumbnail-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Adjust scrollbar track color */
}

.thumbnail-scroll::-webkit-scrollbar-thumb {
    background: #888;
    /* Adjust scrollbar thumb color */
    border-radius: 4px;
    /* Adjust scrollbar thumb radius */
}

.thumbnail-row {
    display: flex;
    /* Arrange thumbnails in a row */
    gap: 10px;
    /* Adjust spacing between thumbnails */
    white-space: nowrap;
    /* Prevent thumbnails from wrapping */
    padding: 10px;
    /* Add some padding around the thumbnails */
}

.thumbnail-row a {
    display: block;
    /* Make the entire thumbnail clickable */
}

.thumbnail-row img {
    width: 200px;
    /* Adjust thumbnail width */
    height: auto;
    border: 1px solid #ccc;
}

.stats-section {
    /* Adjust padding as needed */
    text-align: center;
    /* Center the stats container */
}

.stats-container {
    display: flex;
    justify-content: center;
    /* Center the stats horizontally */
    max-width: 1200px;
    /* Adjust max width as needed */
    margin: 0 auto;
    /* Center the container */
    flex-wrap: wrap;
    /* Allow stats to wrap on smaller screens */
}

.stat {
    flex: 1 1 200px;
    /* Allow stats to grow/shrink, set initial width */
    margin: 20px;
    /* Adjust margin as needed */
    padding: 20px;
    /* Adjust padding as needed */
    border: 1px solid #ddd;
    /* Optional: Add a border */
    border-radius: 8px;
    /* Optional: Add rounded corners */
}

.stat img {
    width: auto;
    /* Adjust image size as needed */
    height: auto;
    /*Adjust image size as needed  */
    margin-bottom: 2px;
    display: block;
}

.stat-value {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    display: block;
}

.CompProj-super-header {
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    margin-bottom: 20px;
    width: 80%;
    margin:   auto;
}

.CompProj-super-header h1 {
    text-align: center;
    margin: 0;
}

.CompProj-container {
    display: flex;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
    margin: 0 auto;
}

.CompProj-item {
    width: calc(30% - 40px);
    margin: 20px;
    box-sizing: border-box;
}

.CompProj-image {
    position: relative;
    text-align: center;
}

.CompProj-image img {
    display: inline-block;
    max-width: 310px;
    height: 310px;
    object-fit: cover;
}

.CompProj-ribbon {
    left: 0;
    width: 94%;
    background-color: #066fb5;
    color: white;
    padding: 10px;
    text-align: center;
}



footer {
    background-color: #0b0342;
    color: white;
    padding: 3px;
    width: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.footer-left {
    text-align: left;
}

.footer-right {
    text-align: right;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .header-content>div {
        flex-direction: column;
        align-items: center;
        margin-bottom: 10px;
    }

    .logo {
        margin-right: 0;
        margin-bottom: 10px;
    }


    .logo img {
        max-width: 150px;
    }

    .whatsapp-icon {
        margin-top: 10px;
    }

    .header-whatsapp {
        max-width: 40px;
    }

    nav ul {
        text-align: center;
    }

    nav li {
        display: block;
        margin: 10px 0;
    }

    nav a {
        display: block;
        text-align: center;
    }

    article {
        max-width: 90%;
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
        text-align: left;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .main-content aside {
        padding: 10px;
    }

    .image-carousel {
        width: 90%;
        /* Adjust width for smaller screens */
        max-width: 480px;
        /* Optional: Adjust max-width */
    }

    .image-container-carousel img {
        width: 320px;
        /* Adjust image width for smaller screens */
        height: 480px;
        /* Adjust image height for smaller screens */
    }

    /* Adjust number of images shown at a time */
    .image-carousel {
        width: calc(320px * 2);
        /* Show 2 images at a time */
    }

    /* Hide the 3rd image */
    .image-container-carousel img:nth-child(3n) {
        display: none;
    }

    .prev-button,
    .next-button {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }

    /* Adjust button positions */
    .prev-button,
    .next-button {
        font-size: 14px;
        /* Adjust font size */
        padding: 8px;
        /* Adjust padding */
    }

    .stat {
        flex: 1 1 100%;
    }

    footer {
        position: relative;
    }

    .footer-content {
        flex-direction: column;
        /* Stack vertically on smaller screens */
        align-items: center;
        /* Center horizontally */
    }

    .footer-right {
        text-align: center;
        /* Center text on smaller screens */
        margin-top: 10px;
        /* Add some space above the right-aligned text */
    }

    @media (max-width: 768px) {
        .CompProj-item {
            width: calc(50% - 20px);
        }
    }

    @media (max-width: 480px) {
        .CompProj-item {
            width: calc(100% - 20px);
        }
    }

}

@media (max-width: 480px) {

    /* Adjust breakpoint as needed */
    .image-carousel {
        width: 100%;
        /* Full width on very small screens */
        max-width: 320px;
    }

    .image-container-carousel img {
        width: 320px;
        /* Adjust image width for smaller screens */
        height: 480px;
        /* Adjust image height for smaller screens */
    }

    /* Show only one image at a time */
    .image-carousel {
        width: 320px;
    }

    .image-container-carousel img:nth-child(2n),
    .image-containe-carouselr img:nth-child(3n) {
        display: none;
    }

    .stat {
        flex: 1 1 100%;
    }

    .prev-button,
    .next-button {
        font-size: 12px;
        /* Adjust font size */
        padding: 6px;
        /* Adjust padding */
    }
}