/* About Page Specific Styles */

/* About Banner */
.about-banner {
    text-align: center;
}

.about-title span {
    display: inline;
}

.about-title {
    font-weight: bold;
}

/* Our Story */
.our-story {
    padding: 120px 100px;
    background-color: #ffffff;
    margin-top: 0;
    border-top: 1px solid #e9ecef;
}

.story-container {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    background: #f8f9fa;
    border-radius: 12px;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.story-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #04aac9, #fdbc00);
    border-radius: 12px 0 0 12px;
}

.image-container {
    position: relative;
    width: 40%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.image-container img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.overlay {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(4, 170, 201, 0.9);
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    z-index: 2;
    white-space: nowrap;
}

.story-content {
    width: 55%;
    padding-left: 20px;
}

.story-content h2 {
    font-size: 38px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 30px 0;
    font-weight: 600;
    position: relative;
}

.story-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #04aac9;
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.story-content p:last-child {
    margin-bottom: 0;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 100px;
    background-color: #00243c;
    margin-top: 0;
}

.mv-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.mission-vision h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.mission-vision h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.mv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.mv-card:nth-child(1)::before {
    background: #ff6b6b;
}

.mv-card:nth-child(2)::before {
    background: #ffa500;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: #04aac9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    animation: pulse 2s infinite;
}

.mv-card:nth-child(1) .mv-icon {
    background: #ff6b6b;
}

.mv-card:nth-child(2) .mv-icon {
    background: #ffa500;
}

.mv-icon i {
    font-size: 32px;
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(4, 170, 201, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(4, 170, 201, 0);
    }
}

.mv-card:nth-child(1) .mv-icon {
    animation: pulse-red 2s infinite;
}

.mv-card:nth-child(2) .mv-icon {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-red {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

@keyframes pulse-orange {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
    }
}

.mv-card h3 {
    font-size: 28px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-weight: 600;
}

.mv-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

/* Core Values */
.core-values {
    padding: 100px 100px;
    background-color: #f8f9fa;
    margin-top: 0;
}

.cv-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.core-values h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.core-values h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.cv-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cv-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.cv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cv-card:hover::before {
    transform: scaleX(1);
}

.cv-icon {
    width: 70px;
    height: 70px;
    background: #04aac9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse-cv 2s infinite;
}

.cv-icon i {
    font-size: 28px;
    color: white;
}

@keyframes pulse-cv {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(4, 170, 201, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(4, 170, 201, 0);
    }
}

.cv-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.cv-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Color variations for each card */
.cv-card:nth-child(1) .cv-icon { background: #ff6b6b; animation: pulse-red 2s infinite; }
.cv-card:nth-child(1)::before { background: #ff6b6b; }

.cv-card:nth-child(2) .cv-icon { background: #ffa500; animation: pulse-orange 2s infinite; }
.cv-card:nth-child(2)::before { background: #ffa500; }

.cv-card:nth-child(3) .cv-icon { background: #ffd700; animation: pulse-yellow 2s infinite; }
.cv-card:nth-child(3)::before { background: #ffd700; }

.cv-card:nth-child(4) .cv-icon { background: #32cd32; animation: pulse-green 2s infinite; }
.cv-card:nth-child(4)::before { background: #32cd32; }

.cv-card:nth-child(5) .cv-icon { background: #1e90ff; animation: pulse-blue 2s infinite; }
.cv-card:nth-child(5)::before { background: #1e90ff; }

.cv-card:nth-child(6) .cv-icon { background: #9370db; animation: pulse-purple 2s infinite; }
.cv-card:nth-child(6)::before { background: #9370db; }

@keyframes pulse-red {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 107, 107, 0); }
}

@keyframes pulse-orange {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 165, 0, 0); }
}

@keyframes pulse-yellow {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(255, 215, 0, 0); }
}

@keyframes pulse-green {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(50, 205, 50, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(50, 205, 50, 0); }
}

@keyframes pulse-blue {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(30, 144, 255, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(30, 144, 255, 0); }
}

@keyframes pulse-purple {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(147, 112, 219, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(147, 112, 219, 0); }
}

/* Why Partner */
.why-partner {
    padding: 100px 100px;
    background-color: #00243c;
    margin-top: 0;
}

.wp-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-partner h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.why-partner h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.wp-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.wp-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.wp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.wp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.wp-card:hover::before {
    transform: scaleX(1);
}

.wp-icon {
    width: 70px;
    height: 70px;
    background: #04aac9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    animation: pulse-wp 2s infinite;
}

.wp-icon i {
    font-size: 28px;
    color: white;
}

@keyframes pulse-wp {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(4, 170, 201, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(4, 170, 201, 0);
    }
}

.wp-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.wp-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Color variations for each card */
.wp-card:nth-child(1) .wp-icon { background: #ff6b6b; animation: pulse-red 2s infinite; }
.wp-card:nth-child(1)::before { background: #ff6b6b; }

.wp-card:nth-child(2) .wp-icon { background: #ffa500; animation: pulse-orange 2s infinite; }
.wp-card:nth-child(2)::before { background: #ffa500; }

.wp-card:nth-child(3) .wp-icon { background: #ffd700; animation: pulse-yellow 2s infinite; }
.wp-card:nth-child(3)::before { background: #ffd700; }

.wp-card:nth-child(4) .wp-icon { background: #32cd32; animation: pulse-green 2s infinite; }
.wp-card:nth-child(4)::before { background: #32cd32; }

.wp-card:nth-child(5) .wp-icon { background: #1e90ff; animation: pulse-blue 2s infinite; }
.wp-card:nth-child(5)::before { background: #1e90ff; }

.wp-card:nth-child(6) .wp-icon { background: #9370db; animation: pulse-purple 2s infinite; }
.wp-card:nth-child(6)::before { background: #9370db; }

/* Core Services */
.core-services {
    padding: 100px 100px;
    background-color: #f8f9fa;
    margin-top: 0;
}

.cs-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.core-services h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 60px 0;
    font-weight: 600;
    position: relative;
}

.core-services h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.cs-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.cs-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.cs-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #04aac9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cs-card:hover::before {
    transform: scaleX(1);
}

.cs-card h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
}

.cs-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Color variations for each card */
.cs-card:nth-child(1)::before { background: #ff6b6b; }
.cs-card:nth-child(2)::before { background: #ffa500; }
.cs-card:nth-child(3)::before { background: #ffd700; }
.cs-card:nth-child(4)::before { background: #32cd32; }

/* Our Process About */
.our-process-about {
    padding: 100px 100px;
    background-color: #ffffff;
    margin-top: 0;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.our-process-about .process-container h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
}

.our-process-about .process-container h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.process-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.process-step {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    text-align: left;
    border-left: 4px solid #04aac9;
}

.process-step:nth-child(1) { border-left-color: #ff6b6b; }
.process-step:nth-child(2) { border-left-color: #ffa500; }
.process-step:nth-child(3) { border-left-color: #ffd700; }
.process-step:nth-child(4) { border-left-color: #32cd32; }
.process-step:nth-child(5) { border-left-color: #1e90ff; }
.process-step:nth-child(6) { border-left-color: #9370db; }

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.step-number {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 40px;
    height: 40px;
    background: #04aac9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.process-step:nth-child(1) .step-number { background: #ff6b6b; }
.process-step:nth-child(2) .step-number { background: #ffa500; }
.process-step:nth-child(3) .step-number { background: #ffd700; }
.process-step:nth-child(4) .step-number { background: #32cd32; }
.process-step:nth-child(5) .step-number { background: #1e90ff; }
.process-step:nth-child(6) .step-number { background: #9370db; }

.process-step h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-weight: 600;
    padding-top: 20px;
}

.process-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Meet the Team */
.meet-the-team {
    padding: 100px 100px;
    background-color: #f8f9fa;
    margin-top: 0;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.meet-the-team h2 {
    font-size: 42px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 20px 0;
    font-weight: 600;
    position: relative;
}

.meet-the-team h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #04aac9, #fdbc00);
    border-radius: 2px;
}

.team-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.team-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    text-align: center;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.team-image {
    position: relative;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 30px 25px;
}

.team-content h3 {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #2c3e50;
    margin: 0 0 5px 0;
    font-weight: 600;
}

.team-content h4 {
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    color: #04aac9;
    margin: 0 0 15px 0;
    font-weight: 500;
}

.team-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.team-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.team-skills span {
    background: #f1f2f2;
    color: #2c3e50;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

/* Build Future */
.build-future {
    padding: 100px 100px;
    background: #04aac9;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.build-future::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="10" cy="50" r="0.5" fill="%23ffffff" opacity="0.02"/><circle cx="90" cy="30" r="0.5" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.build-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.build-future h2 {
    font-size: 48px;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    margin: 0 0 20px 0;
    font-weight: 700;
    line-height: 1.2;
}

.build-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #e6f3ff;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.start-project-btn {
    background-color: #fdbc00;
    color: #fff;
    border: none;
    padding: 18px 40px;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
}

.start-project-btn:hover {
    background-color: #d52a2d;
    transform: translateY(-3px);
}

/* Mobile Responsiveness */

/* Tablet */
@media (max-width: 1024px) {
    .about-title span {
        display: block;
    }

    .about-title {
        line-height: 1.0;
    }

    .our-story {
        padding: 80px 50px;
    }

    .story-container {
        padding: 50px;
        gap: 50px;
    }

    .mission-vision {
        padding: 80px 50px;
    }

    .mission-vision h2 {
        font-size: 38px;
    }

    .mv-cards {
        gap: 30px;
    }

    .mv-card {
        padding: 35px 25px;
    }

    .core-values {
        padding: 80px 50px;
    }

    .core-values h2 {
        font-size: 38px;
    }

    .cv-cards {
        gap: 25px;
    }

    .why-partner {
        padding: 80px 50px;
    }

    .why-partner h2 {
        font-size: 38px;
    }

    .wp-cards {
        gap: 25px;
    }

    .core-services {
        padding: 80px 50px;
    }

    .core-services h2 {
        font-size: 38px;
    }

    .cs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .our-process-about {
        padding: 80px 50px;
    }

    .our-process-about .process-container h2 {
        font-size: 38px;
    }

    .process-steps {
        gap: 30px;
    }

    .meet-the-team {
        padding: 80px 50px;
    }

    .meet-the-team h2 {
        font-size: 38px;
    }

    .team-cards {
        gap: 30px;
    }

    .build-future {
        padding: 80px 50px;
    }

    .build-future h2 {
        font-size: 42px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .our-story {
        padding: 60px 20px;
    }

    .story-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
        text-align: center;
    }

    .story-container::before {
        width: 100%;
        height: 4px;
        border-radius: 0;
    }

    .image-container {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .image-container img {
        width: 100%;
    }

    .overlay {
        bottom: 20px;
        font-size: 12px;
        padding: 8px 12px;
    }

    .story-content {
        width: 100%;
        padding-left: 0;
    }

    .story-content h2 {
        font-size: 32px;
        margin-bottom: 25px;
    }

    .story-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .story-content p {
        font-size: 16px;
        text-align: justify;
    }

    .mission-vision {
        padding: 60px 20px;
    }

    .mission-vision h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .mv-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .mv-card {
        padding: 30px 25px;
    }

    .mv-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .mv-icon i {
        font-size: 28px;
    }

    .mv-card h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .mv-card p {
        font-size: 15px;
    }

    .core-values {
        padding: 60px 20px;
    }

    .core-values h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .cv-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .cv-card {
        padding: 25px 20px;
    }

    .cv-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .cv-icon i {
        font-size: 24px;
    }

    .cv-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cv-card p {
        font-size: 14px;
    }

    .why-partner {
        padding: 60px 20px;
    }

    .why-partner h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .wp-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .wp-card {
        padding: 25px 20px;
    }

    .wp-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }

    .wp-icon i {
        font-size: 24px;
    }

    .wp-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .wp-card p {
        font-size: 14px;
    }

    .core-services {
        padding: 60px 20px;
    }

    .core-services h2 {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .cs-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .cs-card {
        padding: 25px 20px;
    }

    .cs-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .cs-card p {
        font-size: 14px;
    }

    .our-process-about {
        padding: 60px 20px;
    }

    .our-process-about .process-container h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .process-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .process-step {
        padding: 30px 25px;
    }

    .step-number {
        top: 15px;
        left: -15px;
        width: 30px;
        height: 30px;
        font-size: 18px;
    }

    .process-step h3 {
        font-size: 20px;
        padding-top: 15px;
    }

    .process-step p {
        font-size: 15px;
    }

    .meet-the-team {
        padding: 60px 20px;
    }

    .meet-the-team h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .team-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .team-cards {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .team-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .team-content {
        padding: 25px 20px;
    }

    .team-content h3 {
        font-size: 22px;
    }

    .team-content h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .team-content p {
        font-size: 14px;
    }

    .build-future {
        padding: 60px 20px;
    }

    .build-future h2 {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .build-subtitle {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .start-project-btn {
        padding: 15px 30px;
        font-size: 18px;
    }
}

/* Small Mobile */
@media (max-width: 430px) {
    .our-story {
        padding: 40px 15px;
    }

    .story-container {
        padding: 30px 20px;
        gap: 30px;
    }

    .image-container {
        width: 100%;
        max-width: 250px;
    }

    .overlay {
        bottom: 15px;
        font-size: 11px;
        padding: 6px 10px;
    }

    .story-content h2 {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .story-content p {
        font-size: 15px;
    }

    .mission-vision {
        padding: 40px 15px;
    }

    .mission-vision h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .mv-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 20px;
    }

    .mv-card {
        padding: 20px 15px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .mv-icon i {
        font-size: 20px;
    }

    .mv-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .mv-card p {
        font-size: 12px;
        line-height: 1.5;
    }

    .core-values {
        padding: 40px 15px;
    }

    .core-values h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cv-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .cv-card {
        padding: 20px 15px;
    }

    .cv-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .cv-icon i {
        font-size: 20px;
    }

    .cv-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cv-card p {
        font-size: 13px;
    }

    .why-partner {
        padding: 40px 15px;
    }

    .why-partner h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .wp-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .wp-card {
        padding: 20px 15px;
    }

    .wp-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }

    .wp-icon i {
        font-size: 20px;
    }

    .wp-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .wp-card p {
        font-size: 13px;
    }

    .core-services {
        padding: 40px 15px;
    }

    .core-services h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .cs-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 20px;
    }

    .cs-card {
        padding: 20px 15px;
    }

    .cs-card h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .cs-card p {
        font-size: 13px;
    }

    .our-process-about {
        padding: 40px 15px;
    }

    .our-process-about .process-container h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .process-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .process-steps {
        gap: 20px;
        margin-top: 20px;
    }

    .process-step {
        padding: 25px 20px;
    }

    .step-number {
        top: 12px;
        left: -13px;
        width: 25px;
        height: 25px;
        font-size: 15px;
    }

    .process-step h3 {
        font-size: 18px;
        padding-top: 12px;
    }

    .process-step p {
        font-size: 14px;
    }

    .meet-the-team {
        padding: 40px 15px;
    }

    .meet-the-team h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .team-subtitle {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .team-cards {
        gap: 20px;
        margin-top: 20px;
    }

    .team-content {
        padding: 20px 15px;
    }

    .team-content h3 {
        font-size: 20px;
    }

    .team-content h4 {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .team-content p {
        font-size: 13px;
    }

    .build-future {
        padding: 40px 15px;
    }

    .build-future h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .build-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .start-project-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
}