/* About start */
#about {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 4rem 0rem;
}

#about .highlight1 {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    opacity: 0;
}

#about .highlight1::before,
.about-heading .highlight::before,
.values-section .highlight::before {
    content: "";
    position: absolute;
    left: 0%;
    bottom: -8px;
    width: 0px;
    height: 2px;
    background-color: var(--active-teal);
    transition: width 1s ease 0.5s;
}

.about-heading .highlight::before {
    bottom: 0px;
}

.about-section {
    width: 100%;
    max-width: 1440px;
    position: relative;
}

.about-container {
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 60px;
    position: relative;
}

.about-image {
    width: 50%;
    max-width: 800px;
    position: sticky;
    top: 25%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: fit-content;
    opacity: 0;
}

.about-img {
    width: 100%;
    max-width: 750px;
    position: relative;
    border-radius: 15px;
    padding: 5px;
}

.about-img::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 15px;
    padding: 5px;
    background: conic-gradient(from var(--angle, 0deg), #010C1A, #00D2D3);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: rotate 4s linear infinite;
}

.image-wrapper {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    z-index: 1;
}

.image-wrapper img {
    width: 100%;
    display: block;
    border-radius: 15px;
    transition: transform 0.5s;
}

.about-img:hover .image-wrapper img {
    transform: scale(1.1);
}

.image-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -70%;
    width: 30%;
    height: 100%;
    z-index: 2;
    transform: skew(-35deg);
    background: linear-gradient(90deg, transparent, #00D2D3, transparent);
    pointer-events: none;
}

.about-img:hover .image-wrapper::after {
    animation: shining 1s ease 1 forwards;
}

@keyframes shining {
    to {
        left: 170%;
    }
}

@property --angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes rotate {
    100% {
        --angle: 360deg;
    }
}

.about-experience-badge {
    position: absolute;
    bottom: -50px;
    right: -50px;
    background-color: var(--navy);
    color: var(--active-teal);
    padding: 30px 40px;
    border-radius: 15px;
    z-index: 2;
    text-align: center;
    box-shadow: 0px 2px 10px var(--active-teal);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about-experience-badge h3 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.about-experience-badge p {
    margin: 5px 0 0 0;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.95;
}

.about-detail {
    max-width: 800px;
    position: relative;
}

.about-container .about-heading {
    position: relative;
    z-index: 2;

}

.about-heading h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--light-slate);
    margin: 0 0 30px 0;
    line-height: 1;
    opacity: 0;
}

.about-heading .highlight {
    color: var(--active-teal);
    font-size: 42px !important;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.about-detail>p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    opacity: 0;
}

.about-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    z-index: 2;
}

.about-items-detail {
    width: 45%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--navy);
    border-radius: 10px;
    z-index: 2;
    opacity: 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.about-items-detail:hover {
    translate: 5px -5px;
    box-shadow: 0 2px 5px var(--active-teal);
}

.about-items-detail i {
    color: var(--active-teal);
    font-size: 20px;
    flex-shrink: 0;
}

.about-items-detail span {
    font-size: 15px;
    font-weight: 500;
    color: var(--light-slate);
}

.about-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.about-counter .counter-box {
    background: #232c38;
    margin: 40px 0px;
    width: 30%;
    padding: 20px 2px;
    border-radius: 25px;
    text-align: center;
    z-index: 2;
    opacity: 0;
    box-shadow: 0 2px 5px var(--navy);
    transition: translate 0.3s ease, box-shadow 0.3s ease;
}

.about-counter .counter-box:hover {
    translate: 0px -10px;
    box-shadow: 0 2px 5px var(--active-teal);
}

.counter-box .counter-number {
    font-size: clamp(24px, 5vw, 48px);
    font-weight: 700;
    color: var(--active-teal);
    margin-bottom: 10px;
}

.counter-box .counter-label {
    font-size: clamp(8px, 4vw, 16px);
    color: var(--text-color);
    font-weight: 500;
    letter-spacing: 1px;
}

.about-bottom-section .values-section {
    background: transparent;
    padding: 10px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.values-section h2 {
    color: var(--active-teal);
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 35px;
    position: relative;
    opacity: 0;
    z-index: 2;
}

.values-section .values-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.values-grid .value-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    border: 2px solid var(--active-teal);
    padding: 15px;
    opacity: 0;
    border-radius: 12px;
    transition: translate 0.3s ease, box-shadow 0.5s ease;
}

.value-item:hover {
    translate: 0px -8px;
    box-shadow: 0px 0px 5px 2px var(--color-accent);
}

.value-item .value-icon {
    width: 80px;
    height: 80px;
    background: var(--active-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin: 0px auto 25px auto;
    font-size: 2rem;
    color: var(--bg-dark);
}

.value-item h3 {
    font-size: 1.4rem;
    color: var(--active-teal);
}

.value-item p {
    font-size: 1rem;
    color: var(---text-color-secondary);
    line-height: 1.6;
}

.about-bottom-section .about-cta-section {
    background: linear-gradient(135deg, var(--active-teal) 0%, var(--secondary-blue) 100%);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: white;
    position: relative;
    opacity: 0;
    z-index: 2;
}

.about-bottom-section .about-cta-section h2 {
    font-size: clamp(1.75rem, 5vw + 1rem, 2.5rem);
    margin-bottom: 20px;
}

.about-bottom-section .about-cta-section p {
    font-size: clamp(1rem, 2vw + 0.5rem, 1.2rem);
    margin-bottom: 30px;
    opacity: 0.95;
    color: var(--navy);
}

.about-cta-section .about-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: var(--active-teal);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: clamp(0.95rem, 2vw + 0.5rem, 1.1rem);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-cta-section .about-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* About section End */