
    .news-box {
        width: 100%;
        max-width: 1000px;
        margin: 2px auto;
        height: Auto;
        border: 1px solid #ccc;
        background: #fff;
        border-radius: 10px;
    }

    .news-header {
        background: #33613D;
        border-radius: 10px;
        color: white;
        text-align: center;
        padding: 10px;
        font-weight: bold;
        font-size: 18px;
    }

    .marquee-container {
        height: 350px; /* box height */
        overflow: hidden;
        position: relative;
        padding: 10px;
    }

    .marquee-content {
        position: absolute;
        width: 100%;
        animation: scrollUp 20s linear infinite;
    }

    .marquee-container:hover .marquee-content {
        animation-play-state: paused;
    }

    .news-item {
        padding: 8px 0;
        border-bottom: 1px dashed #ccc;
    }

    .news-item a {
        text-decoration: none;
        color: #5a0000;
        font-size: 14px;
        font-weight: 600;
    }

    .news-item span {
        background: red;
        color: white;
        font-size: 10px;
        padding: 2px 5px;
        margin-left: 5px;
        border-radius: 3px;
    }

    @keyframes scrollUp {
        0% { top: 100%; }
        100% { top: -100%; }
    }





.principal-section {
    background: #33613D;
    padding: 50px 20px;
    color: #fff;
}

.principal-container {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* left image box */
.principal-img-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.circle-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    top: 40px;
    left: 20px;
}

.birds {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 20px;
    color: white;
}

.principal-img-box img {
    width: 300px;
    max-width: 100%;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

/* right content */
.principal-content {
    flex: 2;
}

.quote {
    font-size: 26px;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.quote:before {
    content: "“";
    font-size: 60px;
    color: orange;
    position: absolute;
    left: -20px;
    top: -20px;
}

.quote:after {
    content: "”";
    font-size: 60px;
    color: orange;
}

.name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 10px;
}

.designation {
    font-size: 14px;
    color: #cce4ff;
}

/* Responsive */
@media (max-width: 900px) {
    .principal-container {
        flex-direction: column;
        text-align: center;
    }

    .circle-bg {
        left: 50%;
        transform: translateX(-50%);
    }

    .quote:before {
        left: 50%;
        transform: translateX(-50%);
    }

    .principal-img-box img {
        margin: auto;
        display: block;
    }
}






