
/* Vision & Mission */
.vision-mission {
    padding: var(--section-spacing) 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.vision-mission::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background:linear-gradient(to right, #99bdcc, #1bafb4);
    z-index: 0;
}

.vision-mission .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    position: relative;
    z-index: 1;
}

.vision, .mission {
    padding: 40px;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.vision:hover, .mission:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.vision::before, .mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary-color, #1dc3d2);
    transition: height 0.4s ease;
}

.vision:hover::before, .mission:hover::before {
    height: 100%;
}

.vision h2, .mission h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.vision h2::after, .mission h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color, #1dc3d2);
}

.vision p, .mission p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Team Section */
.team {
    padding: var(--section-spacing) 0;
    background-color: #fff;
    position: relative;
    
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    color: #1b1b1b;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color, #1dc3d2);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-member {
    text-align: center;
    background-color: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.281);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background:linear-gradient(to right, #031f2a, #28194c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-member:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-member:hover::before {
    transform: scaleX(1);
}

.member-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 5px solid #fff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(29, 195, 210, 0.2);
    border-color: rgba(29, 195, 210, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h3 {
    margin-bottom: 8px;
    font-size: 1.4rem;
    color: #222;
    font-weight: 600;
    transition: color 0.3s ease;
}

.team-member:hover h3 {
    color: var(--primary-color, #1dc3d2);
}

.team-member p {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.team-member .social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-member:hover .social-links {
    opacity: 1;
    transform: translateY(0);
}

.team-member .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #555;
    transition: all 0.3s ease;
}

.team-member .social-links a:hover {
    background-color: var(--primary-color, #1dc3d2);
    color: #fff;
    transform: translateY(-3px);
}

/* Core Values */
.core-values {
    padding: var(--section-spacing) 0;
    background-color: #fff;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.values-list i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.values-list h3 {
    margin-bottom: 10px;
}

/* Page Banner */
.page-banner {
    background-image: url('../images/image-satisfied-handsome-man-showing-laptop-screen-thumbsup-approval-like-website-internet.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.116);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Hero Section */
.about-hero {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 195, 210, 0.1), rgba(29, 195, 210, 0.05));
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 195, 210, 0.08), rgba(29, 195, 210, 0.03));
    z-index: 0;
    animation: float 20s infinite ease-in-out reverse;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, 15px) rotate(5deg); }
    50% { transform: translate(5px, -10px) rotate(0deg); }
    75% { transform: translate(-10px, 5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.about-hero-content {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}

.about-hero-image {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    transform: perspective(1000px) rotateY(3deg);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.about-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(29, 195, 210, 0.2), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-hero-image:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.about-hero-image:hover::before {
    opacity: 1;
}

.about-hero-image::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 70%;
    height: 70%;
    background-color: rgba(29, 195, 210, 0.1);
    z-index: -1;
    border-radius: 16px;
    transition: all 0.5s ease;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(1.02);
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-hero-text {
    flex: 1;
    text-align: right;
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 0.8s forwards 0.3s ease-out;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-hero-text h2 {
    font-size: 1.2rem;
    color: var(--primary-color, #1dc3d2);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.about-hero-text h3 {
    font-size: 3rem;
    color: #222;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(to right, #222, #555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.about-hero-text p {
    color: #555;
    line-height: 1.9;
    margin-bottom: 40px;
    font-size: 1.1rem;
    position: relative;
    padding-right: 20px;
    border-right: 3px solid var(--primary-color, #1dc3d2);
    border-left: none;
}

/* Button style with animation */
.btn-custom {
    display: inline-block;
    padding: 14px 32px;
    background:linear-gradient(to right, #031f2a, #28194c);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    box-shadow: 0 10px 20px rgba(29, 195, 210, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    text-align: center;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(29, 195, 210, 0.3);
}

.btn-custom:hover::before {
    width: 100%;
}

/* CTA Section Styling */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('../images/silhouette-three-executives-office.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: #fff;
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: var(--primary-color);
}

.btn-outline:hover:before {
    width: 100%;
}

/* Modern Skills Section */
.our-skills {
    padding: 90px 0;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.our-skills::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(29, 195, 210, 0.05);
    z-index: 0;
}

.section-badge {
    display: inline-block;
    background-color: rgba(29, 195, 210, 0.1);
    color: var(--primary-color, #1dc3d2);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skills-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.skills-text {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.skills-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--heading-color, #222);
    position: relative;
}

.skills-text p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

.skills-bars {
    flex: 1;
    min-width: 300px;
}

.skill-item {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 10px;
}

.skill-info span {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.skill-bar {
    height: 10px;
    background-color: #e9ecef;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(to right, var(--primary-color, #1dc3d2), #36d1dc);
    border-radius: 50px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.1, 0.5, 0.1, 1);
}

.skill-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255,255,255,0.2) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.2) 50%, rgba(255,255,255,0.2) 75%, transparent 75%, transparent);
    background-size: 15px 15px;
    animation: progressAnimation 1s linear infinite;
}

@keyframes progressAnimation {
    0% { background-position: 0 0; }
    100% { background-position: 15px 0; }
}

/* Modern Stats Section */
.stats-section {
    padding: 90px 0;
    background-color: #fff;
    position: relative;
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    font-size: 2.5rem;
    color: var(--heading-color, #222);
    margin-bottom: 15px;
}

.title-underline {
    height: 3px;
    width: 80px;
    background-color: var(--primary-color, #1dc3d2);
    margin: 0 auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.stat-item {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(29, 195, 210, 0.05) 0%, rgba(29, 195, 210, 0.01) 100%);
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(29, 195, 210, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.stat-icon i {
    font-size: 1.8rem;
    color: var(--primary-color, #1dc3d2);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon {
    background-color: var(--primary-color, #1dc3d2);
}

.stat-item:hover .stat-icon i {
    color: #fff;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color, #222);
    margin-bottom: 10px;
}

.stat-item p {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

/* Responsive styles for About page */
@media (max-width: 992px) {
    .about-hero-content {
        flex-direction: column;
    }
    
    .about-hero-image, 
    .about-hero-text {
        width: 100%;
    }
    
    .skills-content {
        flex-direction: column;
    }
    
    .skills-text, 
    .skills-bars {
        width: 100%;
    }
    
    .skills-text {
        margin-bottom: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .vision-mission .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .page-banner {
        height: 300px;
    }
    
    .page-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-text h3 {
        font-size: 2.2rem;
    }
    
    .member-image {
        width: 150px;
        height: 150px;
    }
}

/* Update button styling to match home page */
.about-hero-text .btn-custom {
    display: inline-block;
    background: linear-gradient(to right, #031f2a, #28194c);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(3, 31, 42, 0.2);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.about-hero-text .btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #28194c, #031f2a);
    z-index: -1;
    transition: width 0.4s ease;
}

.about-hero-text .btn-custom:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(40, 25, 76, 0.4);
    color: white;
}

.about-hero-text .btn-custom:hover::before {
    width: 100%;
}

/* Update CTA button style */
.cta-section .btn-outline {
    display: inline-block;
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-section .btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(to right, #031f2a, #28194c);
    z-index: -1;
    transition: width 0.4s ease;
}

.cta-section .btn-outline:hover {
    color: white;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border-color: transparent;
}

.cta-section .btn-outline:hover::before {
    width: 100%;
}