﻿.txtcuscolor {
    color: #801422;
}
.bgcuscolor{
    background-color: #801422;
}
.bgsection {
    background: #E0D1BB;
}
.contact-form-style-01 {
    margin-top: -60px;
}
.platform-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

    .platform-icon img {
        width: 100%;
        height: auto;
    }

.pattern-bg {
    background-color: #E0D1BB;
    background-image: url('../../assets/antharaImages/pattern.png'), url('../../assets/antharaImages/pattern.png');
    background-repeat: no-repeat;
    background-position: left, right;
    background-size: 30%, 30%;
    /*min-height: 100vh;*/
}

.nav-pills .nav-link {
    border: 1px solid #ccc;
    border-radius: 0;
    color: black;
    margin-right: 5px;
}

    .nav-pills .nav-link.active {
        background-color: unset;
        color: #801422;
        border-color: #801422;
    }

.portfolio-card img {
    height: 220px;
    object-fit: cover;
    border-radius: 0;
}

.portfolio-card .star-rating {
    color: #FFD700;
}

.portfolio-card .card-body {
    padding: 15px 10px;
}

.image-rounded {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    margin: 0 auto; /* image stays centered */
    /* 3D Shadow */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), /* soft shadow */
    0 6px 6px rgba(0, 0, 0, 0.15), /* mid layer */
    0 0 0 1px rgba(0, 0, 0, 0.05); /* edge outline */
}


.celcard-body {
    width: 100%;
    text-align: left; /* align text to the left */
    margin: 0 auto; /* image stays centered */
}

.celcard-title {
    margin: 15px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

.celcard {
    background-color: #fff;
    border-radius: 16px;
}

.celrating {
    color: #f5c518;
    font-size: 25px;
}

.big-section {
    background-color: white; /* Or your default background color */
    position: relative;
}

.half-background {
    background-color: #3d0215;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%; /* Covers the top half */
    z-index: 0;
}

/* Ensure content is above the half background */
.z-1 {
    z-index: 1;
    position: relative;
}

.hover-box {
    position: relative;
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #801422;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.hover-box:hover .hover-overlay {
    opacity: 1;
}

.eye-icon {
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .eye-icon i {
        font-size: 20px;
        color: #800020; /* Dark red eye color */
    }

.custom-slider-nav {
    width: 40px;
    position: relative;
    height: 40px;
    left: 0;
    border: 1px solid #fff; /* White border */
    background-color: transparent; /* Transparent background */
    color: #fff; /* White icon */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 0 5px;
}

    .custom-slider-nav i {
        font-size: 16px;
    }
