body {
    background-image: url("assets\img\apaji2.jpg"); /* Adjust path based on your folder structure */
    background-size: cover; /* Ensures the image covers the whole page */
    background-position: center;
    background-attachment: fixed; /* Keeps the background fixed when scrolling */
    background-repeat: no-repeat;

    background-color: #f1f1f1;
}
.ourTeam-hedding p {
    color: #979797;
}
.ourTeam-hedding strong {
    color: black;
}
.ourTeam-hedding {
    margin-bottom: 50px;
}
.ourTeam-hedding h1 {
    font-size: 27px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    color: #37517e;
}
.ourTeam-box {
    border-radius: 2px;
    border-top: 6px solid #5dddd3;
    margin: 0px;
    background-color: #ffffff;
    margin-bottom: 30px;
}
.section1 {
    padding: 30px 0px 30px 0px;
}
.section1 img {
    border-radius: 50%;
    height: 130px;
    width: 130px;
}
.section2 p {
    font-weight: bold;
    color: #5dddd3;
    letter-spacing: 1px;
}
.section2 span {
    color: #979597;
}
.section3 {
    background-color: #5dddd3;
}
.section3 i {
    color: #ffffff !important;
    padding: 15px;
    font-size: 15px;
}
.section-info {
    border-top: 6px solid #90dfaa;
}
.section-info p {
    color: #90dfaa;
}
.section-info .section3 {
    background-color: #90dfaa;
}
.section-danger {
    border-top: 6px solid #fd8469;
}
.section-danger p {
    color: #fd8469;
}
.section-danger .section3 {
    background-color: #fd8469;
}

/* Ticker Tape */

.ticker-outer {
    width: 100%;
    background: linear-gradient(90deg, #001132 0%, #01214d 100%);
    overflow: hidden;
    position: relative;
    border-top: 1.5px solid #0099ff;
    border-bottom: 1.5px solid #0099ff;
    padding: 10px 0;
    box-shadow: inset 0 0 20px #00bfff60;
    user-select: none;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.ticker-text {
    font-family: "Segoe UI", Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    padding: 15px 40px;
    letter-spacing: 0.06em;
    white-space: nowrap;
    border-radius: 8px;
    display: inline-block;
}

.ticker-text strong {
    color: #3fc8fe;
    font-weight: 900;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
