:root {
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --navy-blue: #1e3a8a;
    --dark-navy: #0f2557;
}

/* Navigation Styles */
.container-fluid.fixed-top {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(30, 58, 138, 0.1);
    z-index: 1000;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--navy-blue) 0%, var(--dark-navy) 100%);
    color: var(--white);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.parent-div {
    position: relative;
    z-index: 2;
}

.about-cont, .about-cont-mobile {
    text-align: left;
    padding: 20px;
}

.about-cont-mobile {
    display: none;
}

.display-3 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.header-img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
}

.header-img img {
    max-width: 300px;
    height: auto;
}

/* News Container Styles */
.news-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.container1 {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(30, 58, 138, 0.1);
}

/* Responsive iframe container */
.iframe-container {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* News Ticker Styles */
.news-ticker {
    background-color: var(--navy-blue);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* Section Headings */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--navy-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--dark-navy);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container1 {
        max-width: 100%;
        margin: 0 15px;
    }
}

@media (max-width: 992px) {
    .display-3 {
        font-size: 2.8rem;
    }
    
    .header-img {
        position: static;
        transform: none;
        text-align: center;
        margin-top: 30px;
    }
    
    .header-img img {
        max-width: 250px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }

    .iframe-container {
        min-height: 500px;
    }
}

@media (max-width: 768px) {
    .about-cont {
        display: none;
    }
    
    .about-cont-mobile {
        display: block;
        text-align: center;
        padding: 30px 15px;
    }
    
    .display-3 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .page-header {
        padding: 100px 0 40px;
    }
    
    .container1 {
        margin: 0 10px;
        padding: 0 15px;
    }

    .iframe-container {
        min-height: 450px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .news-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .display-3 {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 90px 0 30px;
    }
    
    .container1 {
        margin: 0 5px;
        padding: 0 10px;
    }

    .iframe-container {
        min-height: 400px;
    }

    .header-img img {
        max-width: 200px;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }

    .section-title p {
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .display-3 {
        font-size: 1.5rem;
    }
    
    .container1 {
        margin: 0;
        border-radius: 0;
    }

    .iframe-container {
        min-height: 350px;
        border-radius: 0;
    }

    .responsive-iframe {
        border-radius: 0;
    }
}

/* Animation Classes */
.animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.slideInDown {
    animation-name: slideInDown;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Loading State */
.iframe-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--navy-blue);
    font-size: 1.1rem;
}

/* Utility Classes */
.text-navy {
    color: var(--navy-blue);
}

.bg-navy {
    background-color: var(--navy-blue);
}

.border-navy {
    border-color: var(--navy-blue);
}