/* About Page Styles */

/* Smooth Scroll & Page Transition */
html {
    scroll-behavior: smooth;
}

body {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent-blue);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section */
.about-hero {
    padding: 12rem 0 5rem;
     /* background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 30%);  */
    position: relative;
    overflow: hidden;
}

.about-hero #canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 2.3;
    overflow: hidden;
    pointer-events: none;
}

.about-hero #canvas-container canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -2px;
    line-height: 1.2;
    margin-bottom: 0;
}

/* About Agency Section */
.about-agency-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.about-agency-content {
    padding-right: 3rem;
}

.about-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-highlights {
    position: relative;
    padding-left: 3rem;
}

.vertical-line {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
}

.highlight-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
}

.highlight-circle {
    position: absolute;
    left: -3.4rem;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--accent-blue);
    border-radius: 50%;
    border: 3px solid var(--primary-bg);
    z-index: 2;
}

.highlight-content {
    flex: 1;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
}

.highlight-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Mission Vision Values Section */
.mvv-section {
    padding: 6rem 0;
    background: var(--secondary-bg);
}

.mvv-intro {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.mvv-card {
    background: var(--secondary-bg);
    border-radius: 16px;
    padding: 3rem 2rem;
    height: 100%;
    transition: all 0.3s;
    box-shadow: rgba(0, 0, 0, 0.12) 0px 0.706592px 0.706592px -0.666667px, 
        rgba(0, 0, 0, 0.12) 0px 1.80656px 1.80656px -1.33333px, 
        rgba(0, 0, 0, 0.11) 0px 3.62176px 3.62176px -2px, 
        rgba(0, 0, 0, 0.10) 0px 6.8656px 6.8656px -2.66667px, 
        rgba(0, 0, 0, 0.08) 0px 13.6468px 13.6468px -3.33333px, 
        rgba(0, 0, 0, 0.05) 0px 30px 30px -4px, 
        rgb(255, 255, 255) 0px 3px 1px 0px inset;
}

.mvv-card:hover {
    transform: translateY(-5px);
}

.mvv-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mvv-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 6rem 0;
    background: var(--primary-bg);
}

.who-content {
    padding-right: 3rem;
}

.who-text {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.reviews-section {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--secondary-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.stars-review {
    margin-bottom: 1.5rem;
}

.stars-review i {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-right: 0.3rem;
}

.client-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--accent-blue);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    border: 3px solid var(--primary-bg);
    margin-left: -10px;
}

.avatar:first-child {
    margin-left: 0;
}

.more-clients {
    padding: 0.5rem 1rem;
    background: var(--accent-blue);
    color: #ffffff;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-small {
    padding: 0.8rem 2rem;
    background: var(--text-primary);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-small:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
}

/* Button wrapper for rotating circle effect */
.btn-with-arrow {
    position: relative;
    display: inline-block;
}

.btn-arrow-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 55px;
    height: 55px;
    pointer-events: none;
}

.btn-rotating-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 55px;
    height: 55px;
    animation: rotateCircle 20s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.btn-arrow-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--text-primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    pointer-events: all;
}

.btn-arrow-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-box {
    background: var(--secondary-bg);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 600;
}

/* Infinite Banner Section */
.infinite-banner-section {
    background: var(--dark-bg);
    overflow: hidden;
}

.marquee-banner {
    overflow: hidden;
    white-space: nowrap;
}

.marquee-banner-content {
    display: inline-block;
    animation: scroll-banner 20s linear infinite;
}

.banner-text {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 3px;
    margin: 0 2rem;
    display: inline-block;
}

.banner-separator {
    font-size: 3rem;
    color: var(--accent-blue);
}

@keyframes scroll-banner {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive */

