
/* Custom About Page Styles */
.flat-row {
    padding: 60px 0;
}

.flat-about {
    padding-bottom: 80px;
}

.flat-iconbox {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.display-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.iconbox-item {
    background: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.iconbox-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.iconbox-item .icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: #fdf0ea; /* Light accent color matching theme */
    border-radius: 50%;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.iconbox-item:hover .icon {
    background: #0e382a; /* Theme accent color */
}

.iconbox-item:hover .icon i {
    color: #fff !important;
}

.iconbox-item .title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.iconbox-item p {
    color: #666;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .display-flex {
        display: block;
    }
    .about-us-content {
        margin-top: 30px;
    }
}

/* Our Addiction Section */
.flat-addiction {
    background-color: #0d0d0d;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.flat-addiction .title {
    font-size: 36px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.flat-addiction .divider {
    width: 60px;
    height: 2px;
    background-color: #0e382a;
    margin: 0 auto 30px auto;
}

.flat-addiction .description {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #ccc;
}

.addiction-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    opacity: 0.7;
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.addiction-gallery img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}



/* Modern About Section */
.modern-about-section {
    padding: 100px 0;
    overflow: hidden;
}

.about-content-modern {
    padding-right: 50px;
}

.about-content-modern .sub-title {
    color: #0e382a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding-left: 50px;
}

.about-content-modern .sub-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: #0e382a;
}

.about-content-modern .title {
    font-size: 42px;
    font-family: "Jost", sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0d0d0d;
}

.about-content-modern .description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

.about-content-modern .signature {
    margin-top: 30px;
    font-family: 'Northwell', sans-serif;
    font-size: 32px;
    color: #0d0d0d;
}

.about-image-modern {
    position: relative;
    z-index: 1;
}

.about-image-modern .image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-modern img {
    width: 100%;
    transition: transform 0.5s ease;
}

.about-image-modern:hover img {
    transform: scale(1.03);
}

.about-image-modern .experience-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #fff;
    padding: 25px 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
}

.about-image-modern .experience-badge .years {
    font-size: 40px;
    font-weight: 800;
    color: #0e382a;
    line-height: 1;
}

.about-image-modern .experience-badge .text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: #0d0d0d;
    text-transform: uppercase;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 991px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .about-content-modern {
        padding-right: 0;
        margin-top: 40px;
        text-align: center;
    }

    .about-content-modern .sub-title {
        display: inline-block;
        padding-left: 0;
    }
    
    .about-content-modern .sub-title::before {
        display: none;
    }

    .about-image-modern .experience-badge {
        left: 20px;
        bottom: 20px;
        padding: 15px 20px;
    }
    
    .about-image-modern .experience-badge .years {
        font-size: 30px;
    }
}
