/* About Page Styles */
body {
    background: #0c0c0c !important;
    color: #ffffff !important;
}

main {
    background: transparent !important;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.9), rgba(26, 26, 26, 0.85)), 
                url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSI1Z-4Gb2Czr8bpE-4RC2N7liSKE7tgFHItg&s');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

/* Header Background Override */
.header {
    background: transparent !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

main {
    background: transparent !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
}

.about-hero {
    padding: 0 0 50px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: transparent;
    overflow: hidden;
}

/* Scroll Arrow */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-arrow:hover {
    color: #ff6b35;
    transform: translateX(-50%) translateY(-3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}


@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.1;
    }
}

.about-hero__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.about-hero__badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 30px;
    padding: 12px 30px;
    margin-bottom: 30px;
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero__heading {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero__desc {
    font-size: 2.2rem;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.about-hero__stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.about-hero__stat {
    text-align: center;
    /* background: rgba(12, 12, 12, 0.8); */
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 35px 25px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.about-hero__stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.about-hero__stat:hover::before {
    left: 100%;
}

.about-hero__stat:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 107, 53, 0.6);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    background: rgba(12, 12, 12, 0.9);
}

.about-hero__stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ff6b35;
    display: block;
    margin-bottom: 10px;
}

.about-hero__stat-label {
    font-size: 1.4rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content {
    padding: 80px 0;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.about-content .container {
    max-width: 1000px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
}

.about-content .container > * {
    width: 100% !important;
    text-align: center !important;
}

.about-author {
    display: flex;
    align-items: center;
    gap: 40px;
    /* background: rgba(12, 12, 12, 0.8); */
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    width: 100% !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-author:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.about-author__image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.about-author__content {
    flex: 1;
}

.about-author__name {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 10px;
}

.about-author__role {
    font-size: 1.6rem;
    color: #4a90e2;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-author__bio {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.8;
}

.about-author__social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.about-author__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.about-author__social a:nth-child(1) {
    background: rgba(24, 119, 242, 0.1);
    border-color: rgba(24, 119, 242, 0.3);
    color: #1877f2;
}

.about-author__social a:nth-child(2) {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.about-author__social a:nth-child(3) {
    background: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.3);
    color: #0077b5;
}

.about-author__social a:nth-child(1):hover {
    background: #1877f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(24, 119, 242, 0.4);
}

.about-author__social a:nth-child(2):hover {
    background: #1da1f2;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(29, 161, 242, 0.4);
}

.about-author__social a:nth-child(3):hover {
    background: #0077b5;
    color: #fff;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 119, 181, 0.4);
}

/* Brand Section Styles - Separate from CTA */
.about-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* background: rgba(12, 12, 12, 0.9); */
    border: 2px solid rgba(255, 107, 53, 0.4);
    border-radius: 30px;
    padding: 60px 50px;
    margin-bottom: 80px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.about-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.15), transparent);
    transition: left 0.8s ease;
}

.about-brand:hover::before {
    left: 100%;
}

.about-brand:hover {
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    background: rgba(12, 12, 12, 0.95);
}

.brand-logo {
    margin-bottom: 40px;
    position: relative;
}

.brand-logo__img {
    width: 140px;
    height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 53, 0.4));
    transition: all 0.4s ease;
    border-radius: 20px;
    background: rgba(255, 107, 53, 0.1);
    padding: 20px;
}

.brand-logo__img:hover {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 15px 40px rgba(255, 107, 53, 0.6));
}

.brand-content {
    max-width: 900px;
    width: 100%;
}

.brand-name {
    font-size: 5rem;
    font-weight: 800;
    color: #ff6b35;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    position: relative;
    letter-spacing: 2px;
}

.brand-name::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, #ff6b35, #4a90e2, #ff6b35);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.5);
}

.brand-tagline {
    font-size: 2.2rem;
    color: #4a90e2;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-description {
    font-size: 2rem;
    color: #e0e0e0;
    line-height: 1.9;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 400;
}

.brand-social {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 40px;
}

.brand-social a {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 2.2rem;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.brand-social a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.4), transparent);
    transition: left 0.8s ease;
}

.brand-social a:hover::before {
    left: 100%;
}

.brand-social a:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.5);
}

.brand-social a:nth-child(1) {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.4);
    color: #ff0000;
}

.brand-social a:nth-child(1):hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(255, 0, 0, 0.5);
}

.brand-social a:nth-child(2) {
    background: rgba(0, 119, 181, 0.1);
    border-color: rgba(0, 119, 181, 0.4);
    color: #0077b5;
}

.brand-social a:nth-child(2):hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.5);
}

.brand-social a:nth-child(3) {
    background: rgba(105, 201, 208, 0.1);
    border-color: rgba(105, 201, 208, 0.4);
    color: #69c9d0;
}

.brand-social a:nth-child(3):hover {
    background: #69c9d0;
    border-color: #69c9d0;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(105, 201, 208, 0.5);
}

.brand-social a:nth-child(4) {
    background: rgba(29, 161, 242, 0.1);
    border-color: rgba(29, 161, 242, 0.4);
    color: #1da1f2;
}

.brand-social a:nth-child(4):hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(29, 161, 242, 0.5);
}

.about-section {
    margin-bottom: 50px;
    width: 100% !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-section__heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.about-section__heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #4a90e2);
}

.about-section__text {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-section__list {
    margin-top: 30px;
}

.about-section__item {
    background: rgba(12, 12, 12, 0.6);
    border: 1px solid rgba(0, 150, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    text-align: center;
}

.about-section__item:hover {
    border-color: rgba(255, 107, 53, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-section__item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #4a90e2;
    margin-bottom: 15px;
}

.about-section__item-text {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
}

.about-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(74, 144, 226, 0.1));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 80px;
    width: 100% !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.about-cta__heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-cta__text {
    font-size: 1.8rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-cta__btn {
    display: inline-block;
    background: #ff6b35;
    color: #fff;
    padding: 18px 40px;
    border-radius: 8px;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-cta__btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

/* New Styles for Updated Content */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
    width: 100%;
}

.mission-item {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.mission-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-item:hover::before {
    left: 100%;
}

.mission-item:hover {
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.2);
}

.mission-title {
    font-size: 2.4rem;
    color: #ff6b35;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

.mission-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #4a90e2);
    border-radius: 2px;
}

.mission-text {
    font-size: 1.6rem;
    color: #cccccc;
    line-height: 1.8;
    text-align: center;
}

.workflow-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.workflow-item {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.workflow-desc {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

.workflow-item.scroll-animate {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.workflow-item.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.workflow-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 150, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.workflow-item:hover::before {
    left: 100%;
}

.workflow-item:hover {
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.2);
}

.workflow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50%;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    position: relative;
}

.workflow-icon i {
    font-size: 3.2rem;
    color: #ffffff;
    transition: all 0.4s ease;
}

.workflow-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6b35, #ff8c42, #4a90e2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.workflow-item:hover .workflow-icon {
    transform: scale(1.15) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.6);
}

.workflow-item:hover .workflow-icon::before {
    opacity: 1;
}

.workflow-item:hover .workflow-icon i {
    transform: scale(1.1);
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
}

.workflow-title {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.workflow-list li {
    font-size: 1.5rem;
    color: #cccccc;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.workflow-list li:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.workflow-list li::before {
    content: '▶';
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.skills-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
    width: 100%;
}

.skill-category {
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.skill-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.3));
    transition: all 0.4s ease;
}

.skill-category:hover .skill-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 15px rgba(255, 107, 53, 0.5));
}

.skill-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.skill-category:hover::before {
    left: 100%;
}

.skill-category:hover {
    border-color: rgba(255, 107, 53, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.3);
    background: rgba(255, 107, 53, 0.2);
}

.skill-category-title {
    font-size: 1.8rem;
    color: #ff6b35;
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
}

.skill-category-desc {
    font-size: 1.4rem;
    color: #cccccc;
    line-height: 1.6;
    text-align: center;
}

.promise-content {
    text-align: center;
    width: 100%;
}

.promise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 40px 0;
    width: 100%;
}

.promise-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    /* background: rgba(12, 12, 12, 0.8); */
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promise-feature.scroll-animate {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.promise-feature.scroll-animate.animate {
    opacity: 1;
    transform: translateX(0);
}

.promise-feature.scroll-animate:nth-child(1).animate { transition-delay: 0.1s; }
.promise-feature.scroll-animate:nth-child(2).animate { transition-delay: 0.2s; }
.promise-feature.scroll-animate:nth-child(3).animate { transition-delay: 0.3s; }
.promise-feature.scroll-animate:nth-child(4).animate { transition-delay: 0.4s; }

.promise-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
    transition: left 0.6s ease;
}

.promise-feature:hover::before {
    left: 100%;
}

.promise-feature:hover {
    border-color: rgba(255, 107, 53, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    background: rgba(12, 12, 12, 0.9);
}

.promise-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: all 0.4s ease;
}

.promise-icon i {
    font-size: 2.4rem;
    color: #4a90e2;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(74, 144, 226, 0.3));
}

.promise-feature:hover .promise-icon i {
    color: #ff6b35;
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 8px 15px rgba(255, 107, 53, 0.5));
}

.promise-feature span:last-child {
    font-size: 1.5rem;
    color: #cccccc;
    font-weight: 600;
}

.promise-text {
    font-size: 1.8rem;
    color: #ff6b35;
    font-weight: 700;
    margin-top: 30px;
    font-style: italic;
    text-align: center;
    background: rgba(255, 107, 53, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.3);
}

/* Footer Styles */
.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo .logo__img {
    height: 50px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    font-size: 1.4rem;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.footer__social-btn:hover {
    background: #ff6b35;
    border-color: #ff6b35;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.footer__bottom {
    text-align: center;
    padding: 20px 0;
    color: #cccccc;
    font-size: 1.4rem;
}

/* Mobile Responsive Design - Complete Redesign */
@media (max-width: 768px) {
    .mission-vision-grid,
    .workflow-2col,
    .skills-2col {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .footer__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer__contact {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    /* Reset all centering constraints */
    main {
        display: block !important;
        flex-direction: unset !important;
        align-items: unset !important;
        width: 100% !important;
    }
    
    .about-content {
        padding: 0 !important;
        display: block !important;
        flex-direction: unset !important;
        align-items: unset !important;
        width: 100% !important;
    }
    
    .about-content .container {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        flex-direction: unset !important;
        align-items: unset !important;
        text-align: unset !important;
    }
    
    .about-content .container .about-brand,
    .about-content .container .about-section {
        width: 102% !important;
    }
    
    /* CTA Section - Keep original width, don't force 96% */
    .about-content .container .about-cta {
        width: 100% !important;
        max-width: 900px !important;
    }
    
    /* Hero Section Mobile - Full Width */
    .about-hero {
        padding: 130px 0 40px !important;
        min-height: 70vh !important;
        width: 100% !important;
    }
    
    .about-hero__content {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 15px !important;
    }
    
    .about-hero__badge {
        padding: 10px 20px !important;
        font-size: 1.1rem !important;
        margin-bottom: 25px !important;
        display: inline-block !important;
    }
    
    .about-hero__badge-text {
        font-size: 1.1rem !important;
    }
    
    .about-hero__heading {
        font-size: 3.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 20px !important;
        text-align: center !important;
    }
    
    .about-hero__desc {
        font-size: 1.6rem !important;
        line-height: 1.5 !important;
        margin-bottom: 40px !important;
        padding: 0 !important;
        text-align: center !important;
    }
    
    /* Stats Grid Mobile - Full Width Cards */
    .about-hero__stats {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 40px !important;
        margin-bottom: 60px !important;
        padding: 0 !important;
        width: 100% !important;
    }
    
    .about-hero__stat {
        padding: 30px 20px !important;
        text-align: center !important;
        width: 100% !important;
        background: rgba(12, 12, 12, 0.9) !important;
        border: 2px solid rgba(255, 107, 53, 0.3) !important;
        border-radius: 20px !important;
    }
    
    .about-hero__stat-number {
        font-size: 2.8rem !important;
        font-weight: 700 !important;
        display: block !important;
        margin-bottom: 8px !important;
    }
    
    .about-hero__stat-label {
        font-size: 1.3rem !important;
        font-weight: 500 !important;
    }
    
    /* Author Section Mobile - Centered */
    .about-author {
        flex-direction: column !important;
        text-align: center !important;
        padding: 40px 15px !important;
        margin: 50px auto !important;
        width: 90% !important;
        max-width: 500px !important;
        background: rgba(12, 12, 12, 0.8) !important;
        border-radius: 25px !important;
        border: 1px solid rgba(255, 107, 53, 0.2) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .about-author__image {
        width: 180px !important;
        height: 180px !important;
        margin-bottom: 25px !important;
        border: 4px solid #ff6b35 !important;
    }
    
    .about-author__name {
        font-size: 2.8rem !important;
        margin-bottom: 10px !important;
        font-weight: 700 !important;
    }
    
    .about-author__role {
        font-size: 1.5rem !important;
        margin-bottom: 20px !important;
        font-weight: 600 !important;
    }
    
    .about-author__bio {
        font-size: 1.6rem !important;
        line-height: 1.7 !important;
        margin-bottom: 25px !important;
        text-align: left !important;
        padding: 0 10px !important;
    }
    
    .about-author__social {
        justify-content: center !important;
        gap: 20px !important;
        margin-top: 20px !important;
    }
    
    .about-author__social a {
        width: 55px !important;
        height: 55px !important;
        font-size: 1.8rem !important;
    }
    
    /* Section Content Mobile - Full Width */
    .about-section {
        margin-bottom: 50px !important;
        padding: 0 15px !important;
        width: 100% !important;
        background: rgba(12, 12, 12, 0.6) !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        border: 1px solid rgba(0, 150, 255, 0.2) !important;
    }
    
    .about-section__heading {
        font-size: 2.6rem !important;
        margin-bottom: 20px !important;
        padding-bottom: 15px !important;
        text-align: center !important;
        font-weight: 700 !important;
    }
    
    .about-section__heading::after {
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 60px !important;
        height: 4px !important;
    }
    
    .about-section__text {
        font-size: 1.6rem !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
        text-align: left !important;
    }
    
    .about-section__list {
        margin-top: 25px !important;
    }
    
    .about-section__item {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
        background: rgba(12, 12, 12, 0.8) !important;
        border-radius: 15px !important;
        border: 1px solid rgba(255, 107, 53, 0.2) !important;
    }
    
    .about-section__item-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
        font-weight: 600 !important;
    }
    
    .about-section__item-text {
        font-size: 1.5rem !important;
        line-height: 1.6 !important;
    }
    
    /* CTA Section Mobile - Full Width */
    .about-cta {
        padding: 50px 20px !important;
        margin: 60px 15px 40px !important;
        border-radius: 25px !important;
        width: calc(100% - 30px) !important;
        max-width: 100% !important;
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(74, 144, 226, 0.15)) !important;
        border: 2px solid rgba(255, 107, 53, 0.4) !important;
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.2) !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .about-cta::before {
        content: '' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%) !important;
        animation: shimmer 3s infinite !important;
        z-index: 1 !important;
    }
    
    .about-cta > * {
        position: relative !important;
        z-index: 2 !important;
    }
    
    @keyframes shimmer {
        0% { transform: translateX(-100%) !important; }
        100% { transform: translateX(100%) !important; }
    }
    
    .about-cta__heading {
        font-size: 3rem !important;
        margin-bottom: 20px !important;
        font-weight: 700 !important;
    }
    
    .about-cta__text {
        font-size: 1.6rem !important;
        line-height: 1.7 !important;
        margin-bottom: 30px !important;
    }
    
    .about-cta__btn {
        padding: 20px 40px !important;
        font-size: 1.6rem !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 15px !important;
        font-weight: 600 !important;
    }
    
    /* Scroll Arrow Mobile */
    .scroll-arrow {
        bottom: 25px !important;
        font-size: 2rem !important;
    }
    
    /* Back to Top Mobile */
    .back-to-top {
        bottom: 25px !important;
        right: 25px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.8rem !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile - Optimized for very small screens */
    .about-hero__heading {
        font-size: 2.8rem !important;
    }
    
    .about-hero__desc {
        font-size: 1.4rem !important;
        padding: 0 !important;
    }
    
    .about-hero__stats {
        gap: 15px !important;
        padding: 0 !important;
        margin-bottom: 50px !important;
    }
    
    .about-hero__stat {
        padding: 25px 15px !important;
    }
    
    .about-hero__stat-number {
        font-size: 2.4rem !important;
    }
    
    .about-hero__stat-label {
        font-size: 1.2rem !important;
    }
    
    .about-author {
        padding: 35px 15px !important;
        margin: 40px auto !important;
        width: 95% !important;
        max-width: 450px !important;
    }
    
    .about-author__image {
        width: 160px !important;
        height: 160px !important;
    }
    
    .about-author__name {
        font-size: 2.4rem !important;
    }
    
    .about-author__role {
        font-size: 1.3rem !important;
    }
    
    .about-author__bio {
        font-size: 1.4rem !important;
    }
    
    .about-author__social a {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.6rem !important;
    }
    
    .about-section {
        padding: 25px 15px !important;
        margin-bottom: 40px !important;
    }
    
    .about-section__heading {
        font-size: 2.2rem !important;
    }
    
    .about-section__text {
        font-size: 1.4rem !important;
    }
    
    .about-section__item {
        padding: 20px 15px !important;
    }
    
    .about-section__item-title {
        font-size: 1.6rem !important;
    }
    
    .about-section__item-text {
        font-size: 1.3rem !important;
    }
    
    .about-cta {
        padding: 40px 15px !important;
        margin: 50px 10px 30px !important;
        width: calc(100% - 20px) !important;
    }
    
    .about-cta__heading {
        font-size: 2.6rem !important;
    }
    
    .about-cta__text {
        font-size: 1.4rem !important;
    }
    
    .about-cta__btn {
        padding: 18px 35px !important;
        font-size: 1.4rem !important;
    }
    
    .scroll-arrow {
        bottom: 20px !important;
        font-size: 1.8rem !important;
    }
    
    .back-to-top {
        bottom: 20px !important;
        right: 20px !important;
        width: 45px !important;
        height: 45px !important;
        font-size: 1.6rem !important;
    }
    
    /* New Content Mobile Styles */
    .mission-vision {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 25px !important;
    }
    
    .mission-item {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .mission-title {
        font-size: 2rem !important;
        margin-bottom: 15px !important;
    }
    
    .mission-text {
        font-size: 1.4rem !important;
        line-height: 1.6 !important;
    }
    
    .workflow-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .workflow-item {
        padding: 25px 20px !important;
        margin-bottom: 20px !important;
    }
    
    .workflow-icon {
        font-size: 3rem !important;
        margin-bottom: 15px !important;
    }
    
    .workflow-title {
        font-size: 1.8rem !important;
        margin-bottom: 15px !important;
    }
    
    .workflow-list li {
        font-size: 1.3rem !important;
        margin-bottom: 10px !important;
        padding-left: 20px !important;
    }
    
    .skills-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .skill-category {
        padding: 20px 15px !important;
        margin-bottom: 15px !important;
    }
    
    .skill-category-title {
        font-size: 1.6rem !important;
        margin-bottom: 12px !important;
    }
    
    .skill-category-desc {
        font-size: 1.3rem !important;
        line-height: 1.5 !important;
    }
    
    .promise-features {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        margin: 30px 0 !important;
    }
    
    .promise-feature {
        padding: 15px !important;
        margin-bottom: 15px !important;
    }
    
    .promise-icon {
        font-size: 1.8rem !important;
    }
    
    .promise-feature span:last-child {
        font-size: 1.3rem !important;
    }
    
    .promise-text {
        font-size: 1.5rem !important;
        margin-top: 25px !important;
        padding: 12px 20px !important;
    }
    
    /* Brand Section Mobile - Separate from CTA */
    .about-brand {
        padding: 50px 25px !important;
        margin-bottom: 60px !important;
        border-radius: 25px !important;
    }
    
    .brand-logo {
        margin-bottom: 30px !important;
    }
    
    .brand-logo__img {
        width: 120px !important;
        height: 120px !important;
        padding: 15px !important;
    }
    
    .brand-name {
        font-size: 3.5rem !important;
        margin-bottom: 20px !important;
        letter-spacing: 1px !important;
    }
    
    .brand-name::after {
        width: 80px !important;
        height: 4px !important;
        bottom: -12px !important;
    }
    
    .brand-tagline {
        font-size: 1.8rem !important;
        margin-bottom: 25px !important;
        letter-spacing: 2px !important;
    }
    
    .brand-description {
        font-size: 1.6rem !important;
        line-height: 1.7 !important;
        margin-bottom: 35px !important;
    }
    
    .brand-social {
        gap: 20px !important;
        margin-top: 30px !important;
    }
    
    .brand-social a {
        width: 55px !important;
        height: 55px !important;
        font-size: 2rem !important;
    }
}
