@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@700;800;900&display=swap');

#object-choose-us {
    position: relative;
    padding: 80px 0;
    /* Palitan ang background:#000000; ng background-image */
    background-image: url('object.jpg'); /* PALITAN ITO NG ACTUAL PATH NG IMAGE MO */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1; /* Nananatili ang z-index para sa layering */
}

/* Optional: Para magkaroon ng dark overlay sa background image, para mas readable ang text */
#object-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    backdrop-filter: blur(3px); 
    z-index: 0; /* Ensures the overlay is behind the content but above the background image */
}


#object-choose-us .container {
    position: relative;
    z-index: 1; /* Ensures content is above the ::before overlay */
}

.object-light-blue {
    background-color: #f0f8ff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.object-center {
    text-align: center;
}

.object-left {
    text-align: left;
}

.section-title-object {
    font-family: 'Playfair Display', serif;
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #ffffff; /* Gawing puti ang title para sa dark background */
}


.object-gradient-blue {
    background: #fae7c1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/*for our services*/
.title-object {
    font-family: 'Playfair Display', serif;
    font-size: 2.0em;
    font-weight: 800;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
    letter-spacing: 0.03em;
    color: #ffffff; /* Gawing puti ang title para sa dark background */
}

.gradient-blue {
    background: #ffffff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.card-object {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.object {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #333; /* Default text color for the cards */
}



.object > * {
    position: relative;
    z-index: 1;
}

.object:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.object-title {
    font-family: Arial;
    text-align: center;
    font-size: 1.6em;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000000; /* Assuming cards are light, so dark text */
    letter-spacing: 0.01em;
}

.object-text {
    font-family: Times, ;
    text-align: center;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 10px;
    color: #000000; /* Assuming cards are light, so dark text */
    letter-spacing: 0.01em;
}

.object-text-title {
    font-family: 'Alumni Sans';
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.7;
    color: #ffe2a4; 
    text-align: left;
    margin-top: 30px;
}

.service-list-item {
    font-family: 'Nunito';
    color: #fffbe7; 
    margin-bottom: 5px;
    margin-left: 50px; 
    text-align: left;
}

.list-item {
    color: #fffbe7; 
    font-weight: 500;
    padding: 5px;
    text-align:justify;
    margin-bottom: 50px;
    text-align: center;
    font-family: 'Nunito';
}

/*for mission and vision*/
.mv-styled-card {
    background-color:transparent; /* Dark background color (dark grey/almost black) */
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); /* Bahagyang mas dark na shadow */
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    width: 100%;
    position: relative;
    border: 1px solid #FFD700; /* Gold border */
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-styled-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4); /* Mas kapansin-pansin na hover shadow */
}

.mv-icon-circle-overlap-top {
    /* Binago ang background para maging gold gradient */
    background: linear-gradient(to bottom right, #FFD700, #DAA520, #B8860B); /* Iba't ibang shades ng gold */
    
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    /* Binago ang box-shadow color para bumagay sa gold/black theme */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5); /* Mas dark at neutral na shadow */

    border: 4px solid #000000; /* Nananatili itong black para sa strong contrast */
    z-index: 2;
}

.mv-icon {
    width: 70px;
    height: 70px;
    filter: brightness(0) invert(1);
}

.mv-card-main-title {
    font-family: 'Playfair Display';
    color: #ffffff;
    font-size: 2em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.mv-card-body-text {
    font-family:'Arial Narrow', Arial;
    color: #ffffff;
    font-size: 1.1em;
    line-height: 1.8;
    text-align: center;
    max-width: 90%;
    margin: 0 auto;
    font-weight: 400;
}

.text-content {
    font-family: 'Inter', sans-serif;
    font-size: 1.07em;
    line-height: 1.6;
    margin-bottom: 1em;
    color: #000000; /* Default color for text content */
    font-weight: 400;
    text-align:justify;
    padding: 15px;
}

.section-white .text-content p {
    color: #ffffff;
}