.reddy3 { color: #590E0E; }
.reddy2 { color: #8C1C25; }
.reddy1 { color: #BF2C38; }
.greedy2 { color: #A4A6A4; }
.greedy1 { color: #F2F2F2; }


.navbar-brand img {
    width: 100%;
    max-width: 350px;
}

.about-img {
    overflow: hidden; /* This keeps the image within the box */
}

.about-img img {
    transition: all 0.3s ease;
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.about-img img:hover {
    transform: scale(1.05);
}

.facts {
    background-color: #e21b23;
    opacity: 1;
    background-size: 10px 10px;
    background-image: repeating-linear-gradient(45deg, #d00000 0, #d00000 1px, #e21b23 0, #e21b23 50%);
}

.facts-item svg {
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.facts-item {
    transition: all 0.3s ease;
    background: var(--light);
}

.facts-item:hover {
    transform: scale(1.01);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.facts-item:hover svg {
    transform: scale(1.1);
}

.projects img {
    padding: 0 1px;
}

@media screen and (max-width: 992px) {

    .carousel-caption {
        padding: 30px 20px;
    }

    .carousel-item .text-start {
        text-align: center !important;
    }

    .carousel-item .w-50 {
        width: 100% !important;
    }
}