/* Hero Section - Clean & Professional Styles for المحيميد */
/* Hero Section - Clean & Professional Styles for المحيميد */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

/* Background - Fading between two images */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -3;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.hero-background.active {
    opacity: 1;
}

/* Optional overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 95, 122, 0.4) 0%,
        rgba(21, 152, 149, 0.3) 50%,
        rgba(26, 95, 122, 0.5) 100%
    );
    z-index: -2;
}

/* Container */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Brand Section */
.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    border-right: 3px solid #57c4e5;
    padding-right: 20px;
}

/* Title */
.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 25px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

/* Subtitle */
.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

/* Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
}

.feature i {
    font-size: 1.2rem;
    color: #57c4e5;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #57c4e5;
    color: #1a5f7a;
    box-shadow: 0 5px 20px rgba(87, 196, 229, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(87, 196, 229, 0.5);
    background: #fff;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #57c4e5;
    transform: translateY(-2px);
}

.btn-primary i,
.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(-5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
    cursor: pointer;
}

.scroll-indicator span {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    opacity: 0.8;
}

.scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 100vh;
        margin-top: 0;
        padding-top: 70px;
    }

    .hero-brand {
        flex-direction: column;
        gap: 15px;
    }

    .company-name {
        border-right: none;
        border-top: 3px solid #57c4e5;
        padding-right: 0;
        padding-top: 15px;
        font-size: 1.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .hero-features {
        flex-direction: column;
        gap: 20px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-logo {
        height: 50px;
    }
}

/* Beginning Section - Professional Styles with Pattern */
.beginning-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Blue Pattern Background */
.beginning-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: repeat;
    background-size: 300px 300px;
    background-position: center;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
}

/* Background Elements */
.beginning-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.beginning-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 95, 122, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

/* Container */
.beginning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layout */
.beginning-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
}

/* Founder Card Container */
.founder-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: sticky;
    top: 100px;
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper */
.founder-image-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 25px;
}

.founder-image {
    width: 220px;
    height: 260px;
    border-radius: 15px;
    object-fit: contain;
    object-position: center;
    background-color: #f8f9fa;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

/* Adjust badge position for larger image */
.founder-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.founder-badge img {
    width: 30px;
    height: auto;
}

/* Founder Details */
.founder-details h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 5px;
    font-weight: 700;
}

.founder-details p {
    color: #159895;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.founder-title {
    display: block;
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.4;
}

/* Founder Quote */
.founder-quote {
    position: relative;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
    margin-top: 25px;
}

.founder-quote i {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: #159895;
    opacity: 0.2;
}

.founder-quote p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #495057;
    font-style: italic;
    margin: 0;
}

/* Timeline Styles */
.story-timeline {
    position: relative;
    padding-right: 40px;
}

.story-timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, #1a5f7a 0%, #159895 100%);
}

/* Timeline Items */
.timeline-item {
    position: relative;
    padding-bottom: 50px;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-icon {
    position: absolute;
    right: -20px;
    top: 0;
    width: 40px;
    height: 40px;
    background: #fff;
    border: 3px solid #159895;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-icon i {
    font-size: 1rem;
    color: #159895;
}

.timeline-item:hover .timeline-icon {
    background: #159895;
    transform: scale(1.2);
}

.timeline-item:hover .timeline-icon i {
    color: #fff;
}

.timeline-content {
    padding-right: 60px;
}

.timeline-content h4 {
    font-size: 1.4rem;
    color: #1a5f7a;
    margin-bottom: 15px;
    font-weight: 700;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    text-align: justify;
}

/* Experience Highlights */
.experience-highlights {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(21, 152, 149, 0.1);
    border-radius: 20px;
}

.highlight i {
    color: #159895;
    font-size: 1rem;
}

.highlight span {
    font-size: 0.9rem;
    color: #1a5f7a;
    font-weight: 600;
}

/* Bottom CTA */
.beginning-cta {
    background: linear-gradient(135deg, #1a5f7a 0%, #159895 100%);
    border-radius: 20px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.beginning-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: #1a5f7a;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-link:hover {
    transform: translateX(-5px);
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
}

.vision-badge {
    position: relative;
    z-index: 1;
}

.vision-badge img {
    height: 100px;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
    .beginning-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .founder-card {
        position: static;
        max-width: 500px;
        margin: 0 auto;
    }

    .beginning-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .founder-card {
        padding: 30px 20px;
    }

    .founder-image {
        width: 180px;
        height: 180px;
    }

    .founder-badge {
        width: 45px;
        height: 45px;
        bottom: 5px;
        right: 5px;
    }

    .founder-badge img {
        width: 25px;
    }

    .founder-details h3 {
        font-size: 1.3rem;
    }

    .timeline-content {
        padding-right: 40px;
    }

    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .experience-highlights {
        flex-wrap: wrap;
    }

    .beginning-cta {
        padding: 40px 30px;
    }

    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* AOS-like animations */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* Strategy Section Styles - Clean and Isolated */
#strategy {
    padding: 80px 0;
    background-color: #f8f9fa;
}

#strategy .strategy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Strategy Header */
#strategy .strategy-header {
    text-align: center;
    margin-bottom: 50px;
}

#strategy .strategy-header h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 20px;
    font-weight: 700;
}

#strategy .strategy-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Vision Box */
#strategy .vision-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

#strategy .vision-box-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

#strategy .vision-box-header img {
    width: 60px;
    height: auto;
}

#strategy .vision-box-header h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 5px;
}

#strategy .vision-box-header p {
    color: #6c757d;
    font-size: 1rem;
}

/* Vision Pillars */
#strategy .vision-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

#strategy .pillar {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

#strategy .pillar:hover {
    background: #e9ecef;
    transform: translateY(-5px);
}

#strategy .pillar i {
    font-size: 2rem;
    color: #159895;
    margin-bottom: 10px;
    display: block;
}

#strategy .pillar h4 {
    font-size: 1.1rem;
    color: #1a5f7a;
    margin-bottom: 5px;
    font-weight: 600;
}

#strategy .pillar p {
    font-size: 0.9rem;
    color: #6c757d;
}

/* Strategy Cards */
#strategy .strategy-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#strategy .strategy-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#strategy .strategy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

#strategy .card-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(21, 152, 149, 0.2);
}

#strategy .strategy-card i {
    font-size: 2.5rem;
    color: #159895;
    margin-bottom: 15px;
    display: block;
}

#strategy .strategy-card h3 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 600;
}

#strategy .strategy-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    #strategy .strategy-header h2 {
        font-size: 2rem;
    }

    #strategy .vision-box-header {
        flex-direction: column;
        text-align: center;
    }

    #strategy .vision-pillars {
        grid-template-columns: 1fr 1fr;
    }

    #strategy .strategy-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    #strategy .vision-pillars {
        grid-template-columns: 1fr;
    }
}


/* Vision & Mission Section Styles */
#vision {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
#vision::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 95, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

#vision::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Container */
#vision .vision-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
#vision .vision-header {
    text-align: center;
    margin-bottom: 60px;
}

#vision .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

#vision .section-main-title {
    font-size: 2.5rem;
    color: #1a5f7a;
    font-weight: 800;
    line-height: 1.3;
    max-width: 700px;
    margin: 0 auto;
}

/* Vision Mission Grid */
#vision .vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

/* Vision/Mission Cards */
#vision .vm-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

#vision .vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

#vision .card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

#vision .card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(21, 152, 149, 0.1));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

#vision .vm-card:hover .card-icon {
    background: linear-gradient(135deg, #1a5f7a, #159895);
}

#vision .card-icon i {
    font-size: 1.8rem;
    color: #159895;
    transition: all 0.3s ease;
}

#vision .vm-card:hover .card-icon i {
    color: white;
    transform: scale(1.1);
}

#vision .card-header h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    font-weight: 700;
}

#vision .card-content .main-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 15px;
}

#vision .card-content .sub-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #6c757d;
    font-style: italic;
}

/* Card Decoration */
#vision .card-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #1a5f7a, #159895);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#vision .vm-card:hover .card-decoration {
    transform: scaleX(1);
}

/* Goals Section */
#vision .goals-section {
    margin-bottom: 60px;
}

#vision .goals-title {
    text-align: center;
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 50px;
    font-weight: 700;
}

#vision .goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

#vision .goal-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

#vision .goal-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#vision .goal-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#vision .goal-icon i {
    font-size: 1.5rem;
    color: white;
}

#vision .goal-content h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 8px;
    font-weight: 600;
}

#vision .goal-content p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Vision Statement */
#vision .vision-statement {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(21, 152, 149, 0.05));
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 40px;
    text-align: center;
}

#vision .statement-content i {
    font-size: 3rem;
    color: rgba(21, 152, 149, 0.2);
    margin-bottom: 20px;
    display: block;
}

#vision .statement-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1a5f7a;
    font-weight: 500;
    max-width: 800px;
    margin: 0 auto 30px;
}

#vision .statement-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

#vision .statement-decoration span {
    width: 50px;
    height: 2px;
    background: #159895;
}

#vision .statement-decoration i {
    font-size: 1.5rem;
    color: #159895;
    margin: 0;
}

/* CTA Section */
#vision .vision-cta {
    text-align: center;
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

#vision .vision-cta h3 {
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 25px;
    font-weight: 700;
}

#vision .vision-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(26, 95, 122, 0.3);
}

#vision .vision-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.4);
}

#vision .vision-cta-btn i {
    transition: transform 0.3s ease;
}

#vision .vision-cta-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    #vision .vision-mission-grid {
        grid-template-columns: 1fr;
    }

    #vision .goals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    #vision .section-main-title {
        font-size: 2rem;
    }

    #vision .vm-card {
        padding: 30px 20px;
    }

    #vision .goal-item {
        padding: 20px;
    }

    #vision .vision-statement {
        padding: 30px 20px;
    }

    #vision .statement-content p {
        font-size: 1.1rem;
    }
}

/* Animations */
#vision .vm-card,
#vision .goal-item,
#vision .vision-statement {
    opacity: 0;
    transform: translateY(30px);
}

#vision .vm-card.visible,
#vision .goal-item.visible,
#vision .vision-statement.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

#vision .vm-card:nth-child(1) { transition-delay: 0.1s; }
#vision .vm-card:nth-child(2) { transition-delay: 0.2s; }
#vision .goal-item:nth-child(1) { transition-delay: 0.3s; }
#vision .goal-item:nth-child(2) { transition-delay: 0.4s; }
#vision .goal-item:nth-child(3) { transition-delay: 0.5s; }

/* Services Section Styles */
#services {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
}

/* Section Header */
#services .services-header {
    text-align: center;
    margin-bottom: 70px;
}

#services .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#services .section-title {
    font-size: 2.8rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
}

#services .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Container */
#services .services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Services Grid */
#services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

/* Service Card */
#services .service-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

#services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #1a5f7a, #159895);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

#services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(21, 152, 149, 0.2);
}

#services .service-card:hover::before {
    transform: scaleX(1);
}

/* Service Icon */
#services .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(21, 152, 149, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

#services .service-card:hover .service-icon {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    transform: scale(1.1) rotate(5deg);
}

#services .service-icon i {
    font-size: 2rem;
    color: #159895;
    transition: all 0.3s ease;
}

#services .service-card:hover .service-icon i {
    color: white;
}

/* Service Content */
#services .service-title {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 8px;
    font-weight: 700;
}

#services .service-subtitle {
    font-size: 1rem;
    color: #159895;
    margin-bottom: 15px;
    font-weight: 600;
}

#services .service-description {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 80px;
}

/* Service Features */
#services .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

#services .service-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #6c757d;
}

#services .service-features i {
    color: #159895;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Service Link */
#services .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a5f7a;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#services .service-link:hover {
    color: #159895;
    gap: 12px;
}

#services .service-link i {
    transition: transform 0.3s ease;
}

#services .service-link:hover i {
    transform: translateX(-3px);
}

/* Additional Services */
#services .additional-services {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 50px;
    margin-bottom: 50px;
}

#services .additional-title {
    text-align: center;
    font-size: 1.8rem;
    color: #1a5f7a;
    margin-bottom: 40px;
    font-weight: 700;
}

#services .additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

#services .additional-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

#services .additional-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#services .additional-item i {
    font-size: 2.5rem;
    color: #159895;
    margin-bottom: 15px;
    display: block;
}

#services .additional-item h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 8px;
    font-weight: 600;
}

#services .additional-item p {
    font-size: 0.95rem;
    color: #6c757d;
}

/* Services CTA */
#services .services-cta {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 20px;
    padding: 60px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

#services .services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#services .cta-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

#services .cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

#services .cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
}

#services .services-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1a5f7a;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

#services .services-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#services .services-cta-btn i {
    transition: transform 0.3s ease;
}

#services .services-cta-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 992px) {
    #services .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    #services .services-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    #services .services-grid {
        grid-template-columns: 1fr;
    }

    #services .section-title {
        font-size: 2rem;
    }

    #services .additional-services {
        padding: 30px 20px;
    }

    #services .additional-grid {
        grid-template-columns: 1fr;
    }

    #services .services-cta {
        padding: 40px 20px;
    }

    #services .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Animations */
#services .service-card {
    opacity: 0;
    transform: translateY(30px);
}

#services .service-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

#services .service-card:nth-child(1) { transition-delay: 0.1s; }
#services .service-card:nth-child(2) { transition-delay: 0.2s; }
#services .service-card:nth-child(3) { transition-delay: 0.3s; }
#services .service-card:nth-child(4) { transition-delay: 0.4s; }
#services .service-card:nth-child(5) { transition-delay: 0.5s; }
#services .service-card:nth-child(6) { transition-delay: 0.6s; }


/* Client Journey Section Styles */
#journey {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
#journey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(26, 95, 122, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(21, 152, 149, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
#journey .journey-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
#journey .journey-header {
    text-align: center;
    margin-bottom: 80px;
}

#journey .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#journey .section-title {
    font-size: 2.8rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
}

#journey .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Journey Timeline */
#journey .journey-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

/* Timeline Line */
#journey .journey-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 50%;
    transform: translateX(50%);
    width: 3px;
    height: calc(100% - 80px);
    background: linear-gradient(to bottom, #1a5f7a, #159895);
    z-index: 0;
}

/* Journey Steps */
#journey .journey-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

#journey .journey-step.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Alternate steps */
#journey .journey-step:nth-child(odd) {
    text-align: right;
    padding-right: 50%;
    padding-left: 0;
}

#journey .journey-step:nth-child(even) {
    text-align: left;
    padding-left: 50%;
    padding-right: 0;
}

/* Step Icon */
#journey .step-icon {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}

#journey .journey-step:hover .step-icon {
    transform: translateX(50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

#journey .step-icon i {
    font-size: 2rem;
    color: #159895;
}

#journey .step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Step Content */
#journey .step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin: 0 20px;
    position: relative;
}

#journey .journey-step:nth-child(odd) .step-content {
    margin-right: 60px;
    margin-left: 20px;
}

#journey .journey-step:nth-child(even) .step-content {
    margin-left: 60px;
    margin-right: 20px;
}

/* Arrow connector */
#journey .journey-step:nth-child(odd) .step-content::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 15px;
    border-color: transparent transparent transparent white;
}

#journey .journey-step:nth-child(even) .step-content::after {
    content: '';
    position: absolute;
    top: 30px;
    right: 100%;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 15px 10px 0;
    border-color: transparent white transparent transparent;
}

#journey .step-content h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 700;
}

#journey .step-content p {
    font-size: 1.05rem;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.6;
}

#journey .step-details {
    list-style: none;
    padding: 0;
}

#journey .step-details li {
    position: relative;
    padding-right: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: #6c757d;
}

#journey .journey-step:nth-child(even) .step-details li {
    padding-right: 0;
    padding-left: 20px;
}

#journey .step-details li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #159895;
    font-weight: 700;
}

#journey .journey-step:nth-child(even) .step-details li::before {
    right: auto;
    left: 0;
}

/* Journey Features */
#journey .journey-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

#journey .feature-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

#journey .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

#journey .feature-card i {
    font-size: 3rem;
    color: #159895;
    margin-bottom: 20px;
    display: block;
}

#journey .feature-card h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 600;
}

#journey .feature-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Journey CTA */
#journey .journey-cta {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 20px;
    padding: 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

#journey .journey-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#journey .journey-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

#journey .journey-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

#journey .journey-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #1a5f7a;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#journey .journey-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#journey .journey-cta-btn i {
    transition: transform 0.3s ease;
}

#journey .journey-cta-btn:hover i {
    transform: translateX(-5px);
}

/* Responsive */
@media (max-width: 768px) {
    #journey .section-title {
        font-size: 2rem;
    }

    #journey .journey-timeline::before {
        right: 40px;
        transform: none;
    }

    #journey .journey-step {
        padding-right: 80px !important;
        padding-left: 0 !important;
        text-align: right !important;
    }

    #journey .step-icon {
        right: 0;
        transform: none;
    }

    #journey .journey-step:hover .step-icon {
        transform: scale(1.1);
    }

    #journey .step-content {
        margin: 0 !important;
    }

    #journey .journey-step .step-content::after {
        display: none;
    }

    #journey .journey-features {
        grid-template-columns: 1fr;
    }

    #journey .journey-cta {
        padding: 40px 20px;
    }

    #journey .journey-cta h3 {
        font-size: 1.5rem;
    }
}

/* Step animations delay */
#journey .journey-step:nth-child(1) { transition-delay: 0.1s; }
#journey .journey-step:nth-child(2) { transition-delay: 0.2s; }
#journey .journey-step:nth-child(3) { transition-delay: 0.3s; }
#journey .journey-step:nth-child(4) { transition-delay: 0.4s; }
#journey .journey-step:nth-child(5) { transition-delay: 0.5s; }
#journey .journey-step:nth-child(6) { transition-delay: 0.6s; }
#journey .journey-step:nth-child(7) { transition-delay: 0.7s; }
/* Clients Section Styles - Centered Layout */
#clients {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
#clients::before {
    content: '';
    position: absolute;
    top: 20%;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Container */
#clients .clients-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
#clients .clients-header {
    text-align: center;
    margin-bottom: 60px;
}

#clients .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#clients .section-title {
    font-size: 2.8rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
}

/* Clients Showcase */
#clients .clients-showcase {
    margin-bottom: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Clients Grid - Centered 4 logos */
#clients .clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    justify-items: center;
    align-items: center;
}

/* Client Logo - Direct Display */
#clients .client-logo {
    background: white;
    border-radius: 15px;
    padding: 30px;
    width: 180px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

#clients .client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #159895;
}

/* Images - Always Visible and Colored */
#clients .client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(0%);
    opacity: 1;
    transition: transform 0.3s ease;
}

#clients .client-logo:hover img {
    transform: scale(1.1);
}

/* Fade Animation */
#clients .fade-logo {
    opacity: 1;
    animation: fadeIn 0.8s ease-in-out;
}

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

/* Success Message */
#clients .success-message {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

#clients .success-message::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

#clients .success-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    opacity: 0.9;
}

#clients .success-message h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

#clients .success-message p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tablet View - 2x2 Grid */
@media (max-width: 768px) {
    #clients .section-title {
        font-size: 2rem;
    }

    #clients .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 400px;
    }

    #clients .client-logo {
        width: 160px;
        height: 120px;
        padding: 20px;
    }

    #clients .success-message {
        padding: 40px 20px;
    }
}

/* Mobile View - Single Column */
@media (max-width: 480px) {
    #clients .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 340px;
    }

    #clients .client-logo {
        width: 150px;
        height: 110px;
        padding: 15px;
    }

    #clients .success-message h3 {
        font-size: 1.5rem;
    }

    #clients .success-message p {
        font-size: 1rem;
    }
}

/* Very Small Mobile - Single Column */
@media (max-width: 360px) {
    #clients .clients-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 200px;
    }

    #clients .client-logo {
        width: 180px;
        height: 120px;
    }
}


/* Contact Section Complete CSS */

/* Base Section Styles */
#contact {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(26, 95, 122, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(21, 152, 149, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Container */
#contact .contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Section Header */
#contact .contact-header {
    text-align: center;
    margin-bottom: 60px;
}

#contact .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 8px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .section-title {
    font-size: 2.8rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
}

#contact .section-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Grid */
#contact .contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Wrapper */
#contact .contact-form-wrapper {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Form Styles */
#contact .contact-form {
    position: relative;
    z-index: 1;
}

#contact .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

#contact .form-group {
    position: relative;
}

#contact .form-group.full-width {
    grid-column: 1 / -1;
}

#contact .form-group label {
    display: block;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-size: 1rem;
}

#contact .required {
    color: #e74c3c;
}

/* Input Wrapper */
#contact .input-wrapper {
    position: relative;
}

#contact .input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #159895;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

#contact textarea ~ i {
    top: 25px;
}

/* Form Controls */
#contact input,
#contact select,
#contact textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

#contact textarea {
    resize: vertical;
    min-height: 120px;
}

#contact input:focus,
#contact select:focus,
#contact textarea:focus {
    outline: none;
    border-color: #159895;
    background: white;
    box-shadow: 0 0 0 4px rgba(21, 152, 149, 0.1);
}

#contact input:focus ~ i,
#contact select:focus ~ i,
#contact textarea:focus ~ i {
    color: #1a5f7a;
}

/* Error States */
#contact .error-message {
    display: none;
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
}

#contact .form-group.error input,
#contact .form-group.error select,
#contact .form-group.error textarea {
    border-color: #e74c3c;
    animation: shake 0.5s;
}

#contact .form-group.error .error-message {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Form Footer */
#contact .form-footer {
    margin-top: 35px;
    text-align: center;
}

/* Submit Button */
#contact .submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 35px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Mada', sans-serif;
}

#contact .submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

#contact .submit-btn:active {
    transform: translateY(-1px);
}

#contact .submit-btn i {
    transition: transform 0.3s ease;
}

#contact .submit-btn:hover i {
    transform: translateX(-5px);
}

/* Loader */
#contact .loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

#contact .submit-btn.loading .loader {
    display: block;
}

#contact .submit-btn.loading span,
#contact .submit-btn.loading i:not(.loader) {
    display: none;
}

/* Form Note */
#contact .form-note {
    margin-top: 15px;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Success Modal */
#contact .form-success {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 95, 122, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

#contact .form-success.show {
    opacity: 1;
    visibility: visible;
}

/* Success Container */
#contact .success-container {
    background: white;
    border-radius: 30px;
    padding: 60px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

#contact .form-success.show .success-container {
    transform: scale(1) translateY(0);
}

/* Success Animation Circle */
#contact .success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    position: relative;
}

#contact .success-circle {
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    stroke-width: 3;
    stroke: #159895;
    fill: none;
    animation: drawCircle 0.8s ease forwards 0.3s;
}

#contact .success-check {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    stroke-width: 4;
    stroke: #159895;
    fill: none;
    animation: drawCheck 0.6s ease forwards 0.9s;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

/* Success Content */
#contact .success-title {
    font-size: 2.2rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.2s;
}

#contact .success-subtitle {
    font-size: 1.3rem;
    color: #159895;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.3s;
}

#contact .success-message {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.4s;
}

/* Reference Number */
#contact .reference-box {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(21, 152, 149, 0.05));
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    border: 2px dashed #159895;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.5s;
}

#contact .reference-label {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 8px;
}

#contact .reference-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5f7a;
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

/* Next Steps */
#contact .next-steps {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    text-align: right;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.6s;
}

#contact .next-steps-title {
    font-size: 1.2rem;
    color: #1a5f7a;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

#contact .next-steps-title i {
    color: #159895;
}

#contact .steps-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    position: relative;
}

#contact .steps-timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 40px;
    left: 40px;
    height: 2px;
    background: linear-gradient(to left, #159895, #1a5f7a);
    z-index: 0;
}

#contact .step-item {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

#contact .step-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #e9ecef;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#contact .step-icon i {
    font-size: 1rem;
    color: #6c757d;
}

#contact .step-item.active .step-icon {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-color: #1a5f7a;
    animation: pulse 2s infinite;
}

#contact .step-item.active .step-icon i {
    color: white;
}

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

#contact .step-text {
    font-size: 0.85rem;
    color: #6c757d;
}

#contact .step-item.active .step-text {
    color: #1a5f7a;
    font-weight: 600;
}

/* Action Buttons */
#contact .success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards 1.7s;
}

#contact .btn-close-modal {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tajawal', sans-serif;
}

#contact .btn-close-modal:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.3);
}

#contact .btn-secondary-action {
    background: transparent;
    color: #1a5f7a;
    padding: 15px 30px;
    border-radius: 30px;
    border: 2px solid #1a5f7a;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tajawal', sans-serif;
}

#contact .btn-secondary-action:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
}

/* Close Button */
#contact .modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards 1.8s;
}

#contact .modal-close:hover {
    background: white;
    border-color: #159895;
    transform: rotate(90deg);
}

#contact .modal-close i {
    font-size: 1.2rem;
    color: #6c757d;
}

#contact .modal-close:hover i {
    color: #1a5f7a;
}

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

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Contact Info Side */
#contact .contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Info Card */
#contact .info-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#contact .info-card h3 {
    font-size: 1.5rem;
    color: #1a5f7a;
    margin-bottom: 30px;
    font-weight: 700;
}

/* Info Items */
#contact .info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

#contact .info-item:last-child {
    margin-bottom: 0;
}

#contact .info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.1), rgba(21, 152, 149, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#contact .info-icon i {
    font-size: 1.3rem;
    color: #159895;
}

#contact .info-content h4 {
    font-size: 1.1rem;
    color: #1a5f7a;
    margin-bottom: 5px;
    font-weight: 600;
}

#contact .info-content p {
    color: #6c757d;
    line-height: 1.6;
}

#contact .info-content a {
    color: #159895;
    text-decoration: none;
    transition: color 0.3s ease;
}

#contact .info-content a:hover {
    color: #1a5f7a;
}

/* Quick Actions */
#contact .quick-actions {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 20px;
    padding: 30px;
    color: white;
    text-align: center;
}

#contact .quick-actions h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

#contact .action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

#contact .action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

#contact .action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

#contact .action-btn i {
    font-size: 1.8rem;
}

#contact .action-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Trust Badges */
#contact .trust-badges {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

#contact .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

#contact .badge-item i {
    font-size: 2rem;
    color: #159895;
}

#contact .badge-item span {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    #contact .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    #contact .contact-info-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    #contact .quick-actions {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    #contact .section-title {
        font-size: 2rem;
    }

    #contact .contact-form-wrapper {
        padding: 30px 20px;
    }

    #contact .form-row {
        grid-template-columns: 1fr;
    }

    #contact .contact-info-wrapper {
        grid-template-columns: 1fr;
    }

    #contact .action-buttons {
        flex-wrap: wrap;
    }

    #contact .trust-badges {
        justify-content: center;
        gap: 30px;
    }

    #contact .success-container {
        padding: 40px 30px;
    }

    #contact .success-title {
        font-size: 1.8rem;
    }

    #contact .reference-number {
        font-size: 1.4rem;
    }

    #contact .steps-timeline {
        flex-direction: column;
        gap: 20px;
    }

    #contact .steps-timeline::before {
        display: none;
    }

    #contact .success-actions {
        flex-direction: column;
    }

    #contact .btn-close-modal,
    #contact .btn-secondary-action {
        width: 100%;
        justify-content: center;
    }
}


#services .services-tabs {
    margin-bottom: 50px;
}

#services .tabs-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

#services .tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
}

#services .tab-btn:hover {
    color: #159895;
}

#services .tab-btn.active {
    color: #1a5f7a;
    border-bottom: 3px solid #159895;
}

#services .tab-btn i {
    font-size: 1.2rem;
}

/* Tab Content */
#services .tabs-content {
    position: relative;
}

#services .tab-pane {
    display: none;
    animation: fadeInTab 0.5s ease;
}

#services .tab-pane.active {
    display: block;
}

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

/* Responsive Tabs */
@media (max-width: 768px) {
    #services .tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 10px;
    }

    #services .tab-btn {
        width: 100%;
        justify-content: center;
        border: 2px solid #e9ecef;
        border-radius: 10px;
        margin-bottom: 0;
    }

    #services .tab-btn.active {
        background: linear-gradient(135deg, #1a5f7a, #159895);
        color: white;
        border-color: transparent;
        border-bottom: 2px solid #e9ecef;
    }
}


/* ======================
   PARTNER PROFILE SECTION - SIMPLIFIED
   ====================== */
.partner-profile-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.partner-profile-section::before {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(21, 152, 149, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.partner-profile-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(26, 95, 122, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Container */
.profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.profile-header {
    text-align: center;
    margin-bottom: 80px;
}

.profile-header .section-label {
    display: inline-block;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-header .section-title {
    font-size: 3rem;
    color: #1a5f7a;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
}

.profile-header .section-subtitle {
    font-size: 1.3rem;
    color: #159895;
    font-weight: 600;
}

/* Experience Container */
.experience-container {
    background: white;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
}

/* Experience Tabs */
.experience-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0;
}

.tab-btn {
    padding: 15px 35px;
    background: transparent;
    border: none;
    color: #6c757d;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: -2px;
    font-family: 'Tajawal', sans-serif;
}

.tab-btn:hover {
    color: #159895;
}

.tab-btn.active {
    color: #1a5f7a;
    border-bottom: 3px solid #159895;
}

/* Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

/* Experience List */
.experience-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.experience-item {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.experience-item:hover {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.05), rgba(21, 152, 149, 0.05));
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.exp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a5f7a, #159895);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.exp-icon i {
    font-size: 1.8rem;
    color: white;
}

.exp-content {
    flex: 1;
}

.exp-content h4 {
    font-size: 1.3rem;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 700;
}

.exp-content p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Expertise Areas */
.expertise-areas {
    background: white;
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.areas-title {
    text-align: center;
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 50px;
    font-weight: 700;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.area-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.area-card:hover {
    background: linear-gradient(135deg, #1a5f7a, #159895);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(26, 95, 122, 0.3);
}

.area-card i {
    font-size: 3rem;
    color: #159895;
    margin-bottom: 20px;
    display: block;
    transition: all 0.3s ease;
}

.area-card:hover i {
    color: white;
    transform: scale(1.2) rotate(10deg);
}

.area-card h4 {
    font-size: 1.2rem;
    color: #1a5f7a;
    margin-bottom: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.area-card:hover h4 {
    color: white;
}

.area-card p {
    font-size: 0.95rem;
    color: #6c757d;
    transition: all 0.3s ease;
}

.area-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
    .experience-list {
        grid-template-columns: 1fr;
    }

    .experience-tabs {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .profile-header .section-title {
        font-size: 2rem;
    }

    .experience-container {
        padding: 30px 20px;
    }

    .experience-item {
        flex-direction: column;
        text-align: center;
    }

    .exp-icon {
        margin: 0 auto;
    }

    .expertise-areas {
        padding: 40px 20px;
    }

    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .area-card {
        padding: 20px;
    }

    .area-card i {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .profile-container {
        padding: 0 20px;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .areas-grid {
        grid-template-columns: 1fr 1fr;
    }
}
