/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

.main-content {
    overflow: hidden; /* Prevents unwanted scrollbars */
}

/* Section Styles */
section {
    padding: 100px 0;
}

.container {
    max-width: 2000px;
}

/* ========================================
   ABOUT INTRO SECTION
   ======================================== */
.about-intro {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/123.jpg') center/cover no-repeat;
    color: white;
    padding: 6rem 0 !important;
    text-align: center;
}

body.dark-theme .about-intro {
    background: transparent;
}

.about-intro h1 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 4rem;
    color:var(--gold-color-secondary);
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-intro h3 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-intro p {
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* ========================================
   ABOUT MISSION SECTION
   ======================================== */
.about-mission {
    background-color: #fff;
}

body.dark-theme .about-mission {
    background: transparent;
}

.about-mission h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-mission p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-mission .img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-mission .img-fluid:hover {
    transform: scale(1.03);
}

/* ========================================
   ABOUT VALUES SECTION
   ======================================== */
.about-values {
    background-color: #f8f9fa;
}

body.dark-theme .about-values {
    background: transparent;
}

.about-values h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-values .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.dark-theme .about-values .card {
    background : transparent;
    border: 1px solid rgba(179,149,56,0.5) !important;
}

.about-values .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

body.dark-theme .about-values .card:hover {
    background : transparent;
    border: 1px solid rgba(179,149,56,0.8) !important;
}

.about-values .card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
}

.about-values .card-text {
    font-size: 1rem;
    color: #555;
}

body.dark-theme .about-values .card-text {
    color: #ccc;
}

/* ========================================
   ABOUT SERVICES SECTION
   ======================================== */
.about-services {
    background-color: #fff;
}

body.dark-theme .about-services {
    background: transparent;
}

.about-services h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-services p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-services .list-unstyled li {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.about-services .list-unstyled i {
    color: #d4af37;
}

.about-services .img-fluid {
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.about-services .img-fluid:hover {
    transform: scale(1.03);
}

/* ========================================
   ABOUT STATS SECTION
   ======================================== */
.about-stats {
    background-color: #f8f9fa;
}

body.dark-theme .about-stats {
    background: transparent;
}

.about-stats h3 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold-color-secondary);

}

.about-stats p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* ========================================
   ABOUT TEAM SECTION
   ======================================== */
.about-team {
    background-color: #fff;
}

body.dark-theme .about-team {
    background: transparent;
}

.about-team h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-team .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-team .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.about-team .card-title {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    color: #d4af37;
}

.about-team .card-text {
    font-size: 1rem;
    color: #555;
}

/* ========================================
   ABOUT PARTNERS SECTION
   ======================================== */
.about-partners {
    background-color: #f8f9fa;
}

body.dark-theme .about-partners {
    background: transparent;
}

.about-partners h2 {
    font-family: 'Cinzel Decorative', serif;
    color: #d4af37;
    letter-spacing: 1px;
}

.about-partners .img-fluid {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.about-partners .img-fluid:hover {
    opacity: 1;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-intro {
        padding: 80px 0;
    }

    .about-intro h1 {
        font-size: 3rem;
    }

    .about-mission .img-fluid,
    .about-services .img-fluid {
        margin-bottom: 30px;
    }
}