.navbar-brand img {
    height: 60px;
}
.navbar {
    border-bottom: 1px solid #ddd;
}

.banner {
    width: 100%;
    height: auto;
}

.top-header {
    background-color: #E02020; /* Red color */
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}
.top-header a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
}
.top-header a:hover {
    text-decoration: underline;
}
.contact-info {
    display: flex;
    align-items: center;
}
.contact-info span {
    margin-left: 5px;
}
.contact-dot {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

p{
    text-align: justify;
}

.btn-rounded {
border-radius: 50px;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.image-wrapper {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}
.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.image-wrapper:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background:  rgba(0, 0, 0, 0.7);
    transition: 0.60s;
    z-index: 1;

    border-radius: 21px;
}
.image-wrapper:hover:before {
    top: 0;
}
.mouse-pointer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 2rem;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.image-wrapper:hover .mouse-pointer {
    opacity: 1;
}
.skills {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    /* text-align: center; */
    color: white;
    background: rgba(0, 0, 0, 0.7);
    font-size: 1.25rem;
    padding: 10px;
    opacity: 0;
    transition: 0.5s ease;
    z-index: 2;
}
.image-wrapper:hover .skills {
    bottom: 0;
    opacity: 1;
}


.nav-tabs .nav-link {
    color: #fff;
    font-weight: bold;
}
.nav-tabs .nav-link.active {
    color: #C83F2C;
    border-bottom: 3px solid #C83F2C;
}
.tab-content {
    color: black;
}


            .slider-controls {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-controls .btn {
            border-radius: 50%;
            padding: 8px;
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .slider-controls .btn svg {
            width: 16px;
            height: 16px;
        }

        .slider-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }



        .flip-container {
            display: inline-block;
            position: relative;
            width: 30%;
            margin-bottom: 100px;
        }

        .default-img,
        .hover-img {
            position: absolute;
            width: 100%;
            height: auto;
            transition: transform 0.6s ease-in-out, opacity 0.4s ease-in-out;
        }

        .hover-img {
            opacity: 0;
            transform: rotateY(180deg);
        }

        .flip-container:hover .default-img {
            opacity: 0;
            transform: rotateY(180deg);
        }

        .flip-container:hover .hover-img {
            opacity: 1;
            transform: rotateY(0deg);
        }

        .image-container {
            position: relative;
            display: inline-block;
            overflow: hidden;
        }

        .image-container img {
            width: 100%;
            display: block;
            transition: transform 0.3s ease-in-out;
        }

        .image-container:hover img {
            transform: scale(1.1);
        }

        .overlay-text {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            text-align: center;
            padding: 10px;
            font-size: 16px;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

        .image-container:hover .overlay-text {
            opacity: 1;
        }

            /* Responsive font sizes */
    .modal-body h1 {
        font-size: 2rem;
    }
    .modal-body h2 {
        font-size: 1.75rem;
    }
    .modal-body h3 {
        font-size: 1.5rem;
    }
    .modal-body p {
        font-size: 1rem;
    }
    
    @media (max-width: 768px) {
        .modal-body h1 {
            font-size: 1.5rem;
        }
        .modal-body h2 {
            font-size: 1.25rem;
        }
        .modal-body h3 {
            font-size: 1.125rem;
        }
        .modal-body p {
            font-size: 0.875rem;
        }
    }
    

    /* Contact section */
    .contact {
        font-weight: bold;
    }
        
    .board-section {
        background-color: #fff;
        padding: 60px 0;

    }

    .board-title {
        font-weight: 600;
        font-size: 30px;
        line-height: 30px;
        letter-spacing: -0.33px;

    }

    .board-card {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        transition: transform 0.3s ease-in-out;
        cursor: pointer;
    }

    .board-card:hover {
        transform: translateY(-10px);
    }

    .board-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .board-card .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #2A0012C7;
        opacity: 78%;
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        opacity: 0;
        transition: opacity 0.4s ease-in-out;
        padding: 20px;
    }

    .board-card:hover .overlay {
        opacity: 1;
    }

    .read-more {
        background-color: #d81b60;
        color: #fff;
        padding: 8px 16px;
        border-radius: 5px;
        text-decoration: none;
        margin-top: 10px;
        display: inline-block;
    }

    .read-more:hover {
        background-color: #b7154c;
    }

    .board-details {
        padding: 15px;
        text-align: center !important;
        background-color: #fff;
        border-radius: 0 0 8px 8px;
        background-color: #F4F4F4;
    }

    .board-details h6 {
        color: red;
        font-weight: bold;
    }

















