/* ===================================
   About Us Page Styles - Dark Theme
   =================================== */


.about-us-page {
    padding: 0;
}

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

/* Introduction Section */
.about-intro {
    padding: 80px 20px;
}

.about-intro-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-content {
    border: 2px solid #47d5ff;  
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.about-content h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.about-content .block {
    width: 60px;
    height: 4px;
    background-color: #47d5ff;
    margin-bottom: 25px;
}

.intro-text {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 25px;
}

.intro-text:last-of-type {
    margin-bottom: 0;
}

/* Mission Section */
.mission-section {
    padding: 80px 20px;
}

.mission-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-image-section {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* filter: grayscale(100%); */
}

.mission-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.mission-image-section:hover .mission-image {
    transform: scale(1.05);
}

.mission-content {
    max-width: 100%;
}

.mission-title {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.mission-text {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

/* Vision Section */
.vision-section {
    padding: 80px 20px;
}

.vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.vision-image-section {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* filter: grayscale(100%); */
}

.vision-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vision-image-section:hover .vision-image {
    transform: scale(1.05);
}

.vision-content {
    max-width: 100%;
    order: 1;
}

/* Reverse order for vision section */
.vision-section.reverse .vision-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
@media screen and (max-width: 768px) {
    .vision-section.reverse .vision-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vision-section.reverse .vision-image-section {
        order: -1;
    }
    
}

.vision-section.reverse .vision-image-section {
    order: 1;
}

.vision-section.reverse .vision-content {
    order: 2;
}

.vision-title {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.vision-text {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
}

.values-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.values-image-section {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    /* filter: grayscale(100%); */
    order: 2;
}

.values-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.values-image-section:hover .values-image {
    transform: scale(1.05);
}

.values-content {
    max-width: 100%;
    order: 1;
}

.values-title {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    font-weight: 600;
    color: #000;
    margin-bottom: 25px;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.values-list li:last-child {
    margin-bottom: 0;
}

.values-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #47d5ff;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1;
}

.values-list li strong {
    color: #002b6b;
    font-weight: 600;
}

/* Gallery Section */
.about-gallery {
    padding: 80px 20px;
}

.about-gallery .intro-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.about-gallery .intro-wrap h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #1b262c;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
    border: 2px solid #47d5ff;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
    border-color: #47d5ff;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    filter: grayscale(50%);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
    filter: grayscale(0%);
}

/* CEO Greetings Section */
.ceo-greetings {
    padding: 80px 20px;
}

.ceo-content {
    display: flex;
    flex-wrap: wrap;
}

.ceo-header {
    margin-bottom: 50px;
}

.ceo-title {
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.ceo-image-section {
    flex: 0 0 30%;
    max-width: 30%;
    margin: 0 0 40px;
    position: relative;
}

.ceo-image {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
    border: 3px solid #47d5ff;
    
}

.ceo-message {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    padding-left: 30px;
    flex: 0 0 70%;
    max-width: 70%;
}

.ceo-message p {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.ceo-message p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    
    .ceo-image-section {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .ceo-message {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
    }
}
.greeting-text {
    font-weight: 600;
    color: #000;
    font-size: 1.1rem;
}

.greeting-signature {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #47d5ff;
}

.signature-closing {
    font-family: 'Kedebideri', sans-serif;
    font-style: italic;
    color: #000;
    display: block;
    margin-bottom: 10px;
}

.signature-name {
    font-family: 'Roboto', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #002b6b;
    display: block;
    margin-bottom: 5px;
}

.signature-title {
font-family: 'Kedebideri', sans-serif;
    font-size: 0.95rem;
    color: #000;
    display: block;
}

/* Business Development Specialist Section */
.bds-greetings {
    padding: 80px 20px;
}

.bds-content {
    display: flex;
    flex-wrap: wrap;
}

.bds-header {
    margin-bottom: 50px;
}

.bds-title {
    font-family: 'Roboto', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.bds-image-section {
    flex: 0 0 30%;
    max-width: 30%;
    margin: 0 0 40px;
    position: relative;
}

.bds-image {
    width: 100%;
    height: auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
    border: 3px solid #47d5ff;
    object-position: top;
}

.bds-message {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    padding-left: 30px;
    flex: 0 0 70%;
    max-width: 70%;
}

.bds-message p {
    font-family: 'Kedebideri', sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #000;
    margin-bottom: 20px;
}

.bds-message p:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 768px) {
    
    .bds-image-section {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .bds-message {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
    align-items: center;
    justify-content: center;
}

.image-modal.active {
    display: flex;
}

.modal-container {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    padding: 20px;
}

.modal-content {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: block;
    margin: auto;
    object-fit: contain;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.close:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-intro-wrapper {
        flex-direction: column;
    }
    
    .about-content,
    .about-image-section {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .about-image {
        transform: scale(1);
    }
    
    .mission-wrapper,
    .vision-wrapper,
    .values-wrapper {
        gap: 40px;
    }
    
    .mission-title,
    .vision-title,
    .values-title,
    .about-content h2,
    .ceo-title,
    .bds-title,
    .about-gallery .intro-wrap h2 {
        font-size: 50px;
    }
    
    .ceo-greetings,
    .bds-greetings {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .about-us-page {
        padding: 0;
    }
    
    .about-intro,
    .mission-section,
    .vision-section,
    .values-section,
    .about-gallery,
    .ceo-greetings,
    .bds-greetings {
        padding: 60px 20px;
    }
    
    .about-intro-wrapper {
        gap: 30px;
    }
    
    .about-content {
        padding: 25px;
    }
    
    .about-image-section {
        order: -1;
    }
    
    .intro-text {
        font-size: 1rem;
    }
    
    .mission-wrapper,
    .vision-wrapper,
    .values-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-title,
    .vision-title,
    .values-title,
    .about-content h2,
    .ceo-title,
    .bds-title,
    .about-gallery .intro-wrap h2 {
        font-size: 40px;
    }
    
    .mission-text,
    .vision-text {
        font-size: 1rem;
    }
    
    .vision-image-section {
        order: -1;
    }
    
    .vision-section.reverse .vision-image-section {
        order: 1;
    }
    
    .vision-section.reverse .vision-content {
        order: 2;
    }
    
    .values-image-section {
        order: -1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .ceo-header,
    .bds-header {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
    }
    
    .ceo-image-section,
    .bds-image-section {
        max-width: 220px;
        margin-bottom: 35px;
    }
    
    .ceo-message,
    .bds-message {
        text-align: left;
    }
    
    .ceo-message p,
    .bds-message p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-us-page .container {
        padding: 0 15px;
    }
    
    .about-intro,
    .mission-section,
    .vision-section,
    .values-section,
    .about-gallery,
    .ceo-greetings,
    .bds-greetings {
        padding: 40px 15px;
    }
    
    .about-intro-wrapper {
        gap: 20px;
    }
    
    .about-content {
        padding: 20px;
    }
    
    .about-content p {
        max-width: 100%;
    }
    
    .intro-text {
        font-size: 0.95rem;
    }
    
    .mission-wrapper,
    .vision-wrapper,
    .values-wrapper {
        gap: 25px;
    }
    
    .mission-title,
    .vision-title,
    .values-title,
    .about-content h2,
    .ceo-title,
    .bds-title,
    .about-gallery .intro-wrap h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }
    
    .mission-text,
    .vision-text {
        font-size: 0.95rem;
    }
    
    .values-list li {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .ceo-greetings,
    .bds-greetings {
        padding: 50px 15px;
    }
    
    .ceo-header,
    .bds-header {
        margin-bottom: 30px;
    }
    
    .ceo-image-section,
    .bds-image-section {
        max-width: 180px;
        margin-bottom: 30px;
    }
    
    .ceo-message,
    .bds-message {
        text-align: left;
    }
    
    .ceo-message p,
    .bds-message p {
        font-size: 0.95rem;
    }
    
    .greeting-signature {
        margin-top: 30px;
        padding-top: 25px;
    }
}



