* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding-top: 94px; /* To account for fixed navbar */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    height: 94px;
    width: 100%;
    background-color: #FDFFF5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 0 20px;
}

.logo-container a {
    text-decoration: none;
    color: inherit;
}

.logo-div {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.2rem;
    line-height: 1.2;
}

.time {
    font-weight: bold;
    color: #000080;
}

.time1 {
    font-size: 0.9rem;
    color: #000080;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000080;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 15px;
    border-radius: 20px;
}

.nav-menu a:hover {
    background: #000080;
    color: #FDFFF5;
}

.toggle-btn {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #000080;
    margin: 3px 0;
    transition: 0.3s;
}

/* About Header Section */
.about-header {
    display: flex;
    min-height: 80vh;
}

.header-image {
    flex: 1;
    background: linear-gradient(rgba(30, 67, 137, 0.7), rgba(30, 67, 137, 0.7)), url(images/1756439626204.jpg) center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #fff;
}

.logo-about {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo-about img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.header-title {
    font-size: 3rem;
    font-weight: 700;
    color: #f5f7fa;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-subtitle {
    font-size: 1.8rem;
    color: #1e4389;
    margin-bottom: 15px;
}

.header-text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

/* History Section */
.history-section {
    padding: 80px 0;
    background: #fff;
}

.history-container {
    background: #f5f7fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
}

.history-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.history-icon {
    width: 70px;
    height: 70px;
    background: #1e4389;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 28px;
}

.history-title {
    font-size: 2.2rem;
    color: #1e4389;
}

.history-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.about-text {
    margin-bottom: 20px;
}

hr {
    border: none;
    height: 2px;
    background: #e2e3f1;
    margin: 40px 0;
}

/* Mandate Section */
.mandate {
    padding: 60px 0;
}

.mandate-header {
    text-align: center;
    margin-bottom: 50px;
}

.mandate-title {
    font-size: 2.5rem;
    color: #1e4389;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.mandate-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ffcc00;
}

.mandate-subtitle {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.mandate-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.mandate-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mandate-card:hover {
    transform: translateY(-5px);
}

.mandate-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #1e4389;
}

.mandate-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mandate-icon {
    width: 50px;
    height: 50px;
    background: #1e4389;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 20px;
}

.mandate-card-title {
    font-size: 1.5rem;
    color: #1e4389;
}

.mandate-content {
    color: #444;
}

.mandate-list {
    list-style-type: none;
    padding-left: 5px;
}

.mandate-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.mandate-list li:before {
    content: '•';
    color: #ffcc00;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.mandate-callout {
    background: linear-gradient(135deg, #1e4389 0%, #2c5cc0 100%);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: white;
}

.callout-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.callout-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1e4389;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #ffcc00;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.value-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: #1e4389;
    margin-bottom: 20px;
}

.value-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1e4389;
}

/* CAC Registration Section */
.cac-section {
    padding: 80px 0;
    background: white;
}

.cac-container {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f5f7fa;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.cac-logo {
    flex-shrink: 0;
    /* background: linear-gradient(rgba(30, 67, 137, 0.7), rgba(30, 67, 137, 0.7)), url(images/1756439626204.jpg) center/cover no-repeat; */
    /* position: relative; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
}

.cac-logo img{
    width: 340px;
    height: 340px;
}

.cac-content h2 {
    font-size: 2rem;
    color: #1e4389;
    margin-bottom: 15px;
}

.cac-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.cac-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffcc00;
    color: #1e4389;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 10px;
}

/* Anthem and Pledge Section */
.anthem-pledge-section {
    padding: 80px 0;
    background: #f5f7fa;
}

.anthem-pledge-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.content-card {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.content-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #1e4389;
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #1e4389;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.card-title {
    font-size: 1.8rem;
    color: #1e4389;
}

/* Simple Audio Player */
.audio-player-simple {
    background: #f5f7fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.play-btn-simple {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1e4389;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
}

.play-btn-simple:hover {
    background: #2c5cc0;
    transform: scale(1.05);
}

.audio-title {
    font-weight: 600;
    color: #1e4389;
    margin-bottom: 5px;
}

.audio-duration {
    font-size: 0.9rem;
    color: #666;
}

/* Lyrics/Pledge Text */
.lyrics-container {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.lyrics-line {
    margin-bottom: 12px;
}

.pledge-text {
    font-size: 1.1rem;
    line-height: 1.8;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #000080;
    color: white;
    padding: 50px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffcc00;
}

.footer-content p {
    margin-bottom: 10px;
}

.footer-content ul {
    list-style: none;
}

.footer-content ul li {
    margin-bottom: 10px;
}

.footer-content a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-content a:hover {
    color: #ffcc00;
}

.social-icon {
    display: flex;
    gap: 15px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.social-icon a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-title {
        font-size: 2.5rem;
    }
    
    .header-subtitle {
        font-size: 1.5rem;
    }
}

@media (max-width: 900px) {
    .about-header {
        flex-direction: column;
    }
    
    .header-image {
        min-height: 40vh;
    }
    
    .toggle-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 94px;
        flex-direction: column;
        background-color: #FDFFF5;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .history-header {
        flex-direction: column;
        text-align: center;
    }
    
    .history-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }


    .cac-badge i{
        font-size: 2rem;
    }
    
    
    .cac-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .header-title {
        font-size: 2rem;
    }
    
    .header-content {
        padding: 30px 20px;
    }
    
    .history-container {
        padding: 30px 20px;
    }
    
    .history-title {
        font-size: 1.8rem;
    }
    
    .mandate-card {
        padding: 20px;
    }
    
    .mandate-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .mandate-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .content-card {
        padding: 25px 20px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .card-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}