/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #1a1a1a;
    color: white;
    line-height: 1.6;
}

/* Common Styles with abtbo- prefix */
.abtbo-page-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

/* Header Element Styles */
.abtbo-header-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: visible; /* Allow image to overflow */
}

.abtbo-gray-box-section {
    position: relative;
    width: 100%;
    background-color: #333333;
    border-radius: 15px;
    padding: 40px 20px;
    margin-top: -12px; /* Pull up to overlap with header */
    z-index: 2; /* Ensure it's above the image but below header text */
    text-align: center;
}

.abtbo-gradient-circle {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 222, 222, 0.7) 0%, rgba(200,200,200,0) 70%);
    z-index: -1;
}

.abtbo-gradient-circle-purple {
    position: absolute;
    right: -10vw;
    bottom: 0;
    width: 350px;
    height: 350px;
    border-radius: 50% 0 0 0;
    background: radial-gradient(circle at center, rgba(192,100,192,0.5) 0%, rgba(192,100,192,0) 70%);
    z-index: 1;
    overflow: visible; /* Allow overflow */

}

.abtbo-man-image-container {
    position: absolute;
    left: 0;
    top: 0;
    height: 465px; /* Intentionally taller than parent to overflow */
    width: 45%;
    z-index: 2;
    overflow: visible; /* Allow image to overflow */
}

.abtbo-man-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.abtbo-text-content {
    position: absolute;
    right: 5%;
    top: 15%;
    width: 50%;
    z-index: 3;
}

.abtbo-heading {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.abtbo-brand-name {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 30px;
}

.abtbo-brand-one {
    color: #ad0089;
}

.abtbo-description {
    font-size: 1.2rem;
    max-width: 450px;
}

/* History Section Specific */
.abtbo-history-text {
    font-size: 1rem;
    max-width: 450px;
    margin: 0 auto;
    line-height: 1.5;
}

.abtbo-history-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

/* Philosophy Card Styles */
.abtbo-philosophy-container {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 30px auto;
}

.abtbo-philosophy-card {
    position: relative;
    background-color: #333333;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: row; /* Flipped direction for right image */
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.abtbo-philosophy-card.left-image {
    flex-direction: row; /* Normal direction for left image */
}

.abtbo-image-container {
    position: relative;
    width: 40%;
    overflow: hidden;
}

.abtbo-person-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}

.abtbo-content-section {
    width: 60%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abtbo-subheading {
    font-size: 5rem;
    font-weight: bold;
    color: #ad0089;
    margin-bottom: 30px;
    line-height: 1;
}

.abtbo-subheading.white {
    color: white;
}

.abtbo-emphasis {
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Pagination Dots */
.abtbo-pagination {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
}

.abtbo-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #00aca6;
}

.abtbo-dot.active {
    background-color: #ad0089;
}

.abtbo-dot.white {
    background-color: white;
}

/* Media Queries */
@media (max-width: 768px) {
    .abtbo-header-section {
        height: 500px;
    }
    
    .abtbo-man-image-container {
        width: 100%;
        height: 530px;
    }
    
    .abtbo-text-content {
        top: 50%;
        right: 5%;
        width: 90%;
    }
    
    .abtbo-gradient-circle,
    .abtbo-gradient-circle-purple {
        width: 300px;
        height: 300px;
    }
    
    .abtbo-philosophy-card,
    .abtbo-philosophy-card.left-image {
        flex-direction: column-reverse;
        min-height: auto;
    }
    
    .abtbo-image-container {
        width: 100%;
        height: 300px;
    }
    
    .abtbo-content-section {
        width: 100%;
        padding: 30px 20px;
    }
    
    .abtbo-heading {
        font-size: 1.4rem;
    }
    
    .abtbo-subheading {
        font-size: 3.5rem;
    }
    
    .abtbo-brand-name {
        font-size: 3rem;
    }
    
    .abtbo-emphasis {
        font-size: 1rem;
    }
    
    .abtbo-description,
    .abtbo-history-text {
        font-size: 0.9rem;
    }
}