/* ================================
   About Section - Exact ITZone Replica
   Complete CSS for new structure
   ================================ */

.about-one {
    position: relative;
    padding: 100px 0 120px;
    z-index: 1;
    overflow: hidden;
    background-color: #ffffff;
}

/* ================================
   Corner Decorations
   ================================ */

/* Wave decoration - Left side */
.about-one__wave-left {
    position: absolute;
    left: -50px;
    top: 50%;
    transform: translateY(-50%);
    width: 150px;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}

.about-one__wave-left svg {
    width: 100%;
    height: 100%;
}

/* Hexagon shapes - Right side */
.about-one__shapes-right {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 100px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

.about-one__shapes-right svg {
    width: 100%;
    height: 100%;
}

/* ================================
   Block Title (Tagline with Line + Dot)
   ================================ */

.block-title {
    margin-bottom: 25px;
}

.block-title__tagline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
}

.block-title__tagline {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #6E54F3;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 12px;
}

/* Line with centered dot - Refined proportions */
.block-title__line {
    position: relative;
    display: block;
    width: 65px;
    height: 3px;
    background-color: #6E54F3;
    border-radius: 5px;
}

.block-title__dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background-color: #6E54F3;
    border-radius: 50%;
    border: 2px solid #ffffff;
}

.block-title__title {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 44px;
    font-weight: 800;
    color: #070D1A;
    line-height: 1.2;
}

.block-title__title span {
    color: #6E54F3;
}

/* ================================
   Layout System (Flexbox)
   ================================ */

.about-one .row {
    display: flex;
    flex-direction: column;
    gap: 60px; /* Mobile gap proportionally large for clarity */
    margin: 0;
}

.about-one .row > div[class*="col-"] {
    width: 100%;
    max-width: 100%;
    padding: 0;
    flex: none;
}

@media (min-width: 768px) {
    .about-one .row {
        flex-direction: row;
        gap: 40px; /* Desktop gap between content and image */
        align-items: center;
    }
    
    .about-one .row > div[class*="col-"] {
        flex: 1;
        width: auto;
    }
}

/* Legacy padding removed, gap handles it now */

.about-one__text {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 35px;
}

/* ================================
   Features List
   ================================ */

.about-one__list {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 40px;
}

.about-one__list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 12px 0;
    transition: all 0.3s ease;
}

/* Icon wrapper with wave decoration */
.about-one__list-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.about-one__list-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(110, 84, 243, 0.15) 0%, rgba(110, 84, 243, 0.08) 100%);
    color: #6E54F3;
    /* Organic Blob Shape */
    border-radius: 30% 70% 70% 30% / 30% 35% 65% 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* Wave behind icon - Adjusted position */
.about-one__icon-wave {
    position: absolute;
    left: -12px;
    top: 55%;
    transform: translateY(-50%);
    width: 55px;
    height: 28px;
    z-index: 1;
    opacity: 0.5;
}

.about-one__list-item:hover .about-one__list-icon {
    background: #6E54F3;
    color: #ffffff;
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    transform: scale(1.05) rotate(5deg);
}

.about-one__list-content {
    flex: 1;
    padding-top: 5px;
}

.about-one__list-content h3 {
    font-family: 'Barlow', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #070D1A;
    margin: 0 0 8px 0;
}

.about-one__list-content p {
    font-size: 15px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* ================================
   Button & Author Section
   ================================ */

.about-one__bottom {
    display: flex;
    align-items: center;
    gap: 35px;
    flex-wrap: wrap;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background-color: #6E54F3;
    color: #ffffff;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.thm-btn:hover {
    background-color: #070D1A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(110, 84, 243, 0.35);
}

.thm-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.thm-btn:hover i {
    transform: translateX(5px);
}

/* Author Wrapper */
.about-one__author-wrapper {
    display: flex;
    align-items: center;
    gap: 25px;
}

.about-one__author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-one__author-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #6E54F3;
    flex-shrink: 0;
}

.about-one__author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-one__author-content h5 {
    font-family: 'Barlow', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #070D1A;
    margin: 0 0 3px 0;
}

.about-one__author-content p {
    font-size: 14px;
    color: #666666;
    margin: 0;
}

/* Signature */
.about-one__signature {
    display: flex;
    align-items: center;
    padding-left: 25px;
    border-left: 1px solid #ddd;
}

.about-one__signature img {
    max-width: 100px;
    height: auto;
    opacity: 0.85;
}

/* ================================
   Image Stack (Right Column) - KEY LAYOUT
   ================================ */

.about-one__image-stack {
    position: relative;
    width: 100%;
    min-height: 480px;
    /* Legacy margin-left removed, gap handles it now */
}

/* Dots Pattern Behind Experience Badge */
.about-one__dots-bg {
    position: absolute;
    top: 0;
    right: 60px;
    width: 100px;
    height: 120px;
    background-image: radial-gradient(#c4c4c4 2px, transparent 2px);
    background-size: 14px 14px;
    z-index: 0;
}

/* Image 1: Top-Left (Landscape) */
.about-one__img-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 62%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.about-one__img-1 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Image 2: Bottom-Right (Portrait) */
.about-one__img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 58%;
    border-radius: 12px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid #ffffff;
}

.about-one__img-2 img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Play Button - Centered at overlap */
.about-one__video-btn {
    position: absolute;
    top: 48%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    background-color: #6E54F3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #ffffff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 0 0 0 rgba(110, 84, 243, 0.5);
    animation: pulse-play 2s infinite;
}

.about-one__video-btn i {
    margin-left: 5px;
}

.about-one__video-btn:hover {
    background-color: #070D1A;
    transform: translate(-50%, -50%) scale(1.1);
}

@keyframes pulse-play {
    0% {
        box-shadow: 0 0 0 0 rgba(110, 84, 243, 0.5),
                    0 0 0 0 rgba(110, 84, 243, 0.3);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(110, 84, 243, 0),
                    0 0 0 30px rgba(110, 84, 243, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(110, 84, 243, 0),
                    0 0 0 0 rgba(110, 84, 243, 0);
    }
}

/* Experience Badge - Top Right */
.about-one__experience {
    position: absolute;
    top: 30px;
    right: 0;
    background-color: #0c121d;
    border: 3px solid #6c55f3;
    padding: 22px 28px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 5;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.about-one__experience-count {
    font-family: 'Barlow', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.about-one__experience-text {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    opacity: 1;
}

/* Satisfied Client Badge - Bottom Left */
.about-one__satisfied {
    position: absolute;
    bottom: 40px;
    left: 45px;
    background-color: #6E54F3;
    padding: 18px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 6;
    box-shadow: 0 12px 35px rgba(110, 84, 243, 0.4);
}

.about-one__satisfied-avatars {
    display: flex;
    align-items: center;
}

.about-one__satisfied-avatars img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3.5px solid #6E54F3;
    margin-left: -14px;
    object-fit: cover;
}

.about-one__satisfied-avatars img:first-child {
    margin-left: 0;
}

.about-one__satisfied-plus {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #6E54F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin-left: -14px;
    border: 3.5px solid #6E54F3;
}

.about-one__satisfied-content {
    display: flex;
    flex-direction: column;
}

.about-one__satisfied-count {
    font-family: 'Barlow', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 2px;
}

.about-one__satisfied-text {
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    opacity: 1;
}

/* ================================
   Responsive Design
   ================================ */

@media (max-width: 1199px) {
    .about-one__image-stack {
        margin-left: 0;
        /* margin-top removed, gap handles separation now */
    }
    
    .about-one__experience {
        right: 20px;
    }
    
    .about-one__satisfied {
        left: 40px;
    }
    
    .about-one__dots-bg {
        right: 40px;
    }
    
    .about-one__wave-left,
    .about-one__shapes-right {
        display: none;
    }
}

/* Specific Tablet Adjustments (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
    .block-title__title {
        font-size: 34px;
    }

    .about-one__image-stack {
        min-height: 400px;
        margin-top: 40px; /* Breathe a bit if content is long */
    }

    .about-one__experience {
        padding: 18px 22px;
        right: -10px;
    }

    .about-one__experience-count {
        font-size: 36px;
    }

    .about-one__satisfied {
        padding: 14px 20px;
        left: 20px;
    }
}

@media (max-width: 767px) {
    .about-one {
        padding: 80px 0;
    }
    
    .about-one__content {
        padding-right: 0;
    }
    
    .block-title__title {
        font-size: 32px;
    }
    
    .about-one__image-stack {
        min-height: 400px;
    }
    
    .about-one__img-1 {
        width: 60%;
        max-width: 300px;
    }
    
    .about-one__img-2 {
        width: 50%;
        max-width: 240px;
    }
    
    .about-one__author-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .about-one__signature {
        border-left: none;
        padding-left: 0;
    }
}

@media (max-width: 767px) {
    .block-title__title {
        font-size: 30px;
    }
    
    .about-one__list-item {
        padding: 10px 0;
    }
    
    .about-one__list-icon {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }
    
    .about-one__icon-wave {
        display: none;
    }
    
    .about-one__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    
    .about-one__image-stack {
        min-height: 380px;
    }
    
    .about-one__img-1 {
        width: 65%;
        max-width: none;
    }
    
    .about-one__img-2 {
        width: 55%;
        max-width: none;
        bottom: 20px;
        right: 10px;
    }
    
    .about-one__video-btn {
        width: 65px;
        height: 65px;
        font-size: 20px;
    }
    
    .about-one__experience {
        right: 10px;
        top: 10px;
        padding: 14px 18px;
    }
    
    .about-one__experience-count {
        font-size: 32px;
    }
    
    .about-one__experience-text {
        font-size: 12px;
    }
    
    .about-one__satisfied {
        left: 10px;
        bottom: 40px;
        padding: 12px 15px;
    }
    
    .about-one__satisfied-avatars img,
    .about-one__satisfied-plus {
        width: 32px;
        height: 32px;
    }
    
    .about-one__satisfied-count {
        font-size: 18px;
    }
    
    .about-one__satisfied-text {
        font-size: 11px;
    }
    
    .about-one__dots-bg {
        display: none;
    }
}

@media (max-width: 575px) {
    .block-title__title {
        font-size: 26px;
    }
    
    .about-one__list-content h3 {
        font-size: 18px;
    }
    
    .about-one__list-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .about-one__image-stack {
        min-height: 340px;
    }
}
