.header-logo img {
    width: 200px;
}

.vision-mission-card {
    padding: 10px;
    border: 1px solid #bababa;
    border-radius: 15px;
    background-color: #fff;
    height: 100%;
}

.bg-g {
    background-color: #f7f7f7;
}

.padding-section {
    padding: 60px 0px;
}

.footer {
    background-color: #F7921E;
    color: #fff;
}

.footer p {
    color: #fff;
}

.footer .footer-social a {
    background-color: #fff;
}

.Founders-Message-card {
    background-color: #f3f3f3;
    padding: 35px 25px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.Founders-Message-card img {
    border-radius: 20px;
}

.list-style li {
    list-style-type: disc;
    margin-bottom: 20px;
}

.box-we-serve-sct ul li {
    padding: 25px 20px;
    font-size: 21px;
    background-color: #144C67;
    margin-bottom: 12px;
    color: #fff;
}

/* Hero height */
.hero-slider {
    height: 90vh;
}


.hero-slider .carousel-item {
    height: 90vh;
    background-size: cover;
    background-position: center;
    position: relative;
}


/* Overlay */
.hero-slider .overlay {
    position: absolute;
    inset: 0;
    /* background: #144b6749; */
}


/* Left text box */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    color: #fff;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
    color: #fff;
}


.carousel-item.active .hero-content {
    opacity: 1;
}


@keyframes slideLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}


.hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
}


.hero-content p {
    font-size: 1.1rem;
    margin: 20px 0;
}

.hero-btn {
    background-color: #F7921E;
    padding: 13px 25px;
    font-size: 18px;
    color: #fff;
    transition: .5s;
}

.hero-btn:hover {
    background-color: #fff;
    color: #F7921E;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.counter-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: #f8f9fa;
    transition: 0.3s;
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-icon {
    font-size: 40px;
    color: #0d6efd;
    margin-bottom: 10px;
}

.counter {
    font-size: 42px;
    font-weight: 700;
}

.plus {
    font-size: 30px;
    color: #0d6efd;
}

.counter-title {
    font-size: 16px;
    margin-top: 5px;
}

.flip-card {
    background-color: transparent;
    width: 100%;
    height: 250px;
    perspective: 1000px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: #fff;
}

.flip-card-front {
    background: #144C67;
    color: #fff;
}

.flip-card-back {
    background: #F7921E;
    color: #fff;
    transform: rotateY(180deg);
}

.flip-card-back p {
    font-size: 18px;
}

.flip-card h4 {
    font-weight: 700;
    color: #fff;
}