 /* Hero-services Section */
.hero-services {
    background: linear-gradient(rgba(1, 32, 53, 0.8), rgba(1, 32, 53, 0.7)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 80px;
}

.home-content {

    margin: 0 auto;
    display: block;
    padding: 3rem 5rem 0;

}

/* 
.hero-services h1 {
    font-size: 2.7rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-services h1 span {
    color: #FF6404;
} */

.hero-services p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--primary-accent);
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.3s;
}

.btn:hover {
    background-color: #e05a03;
    transform: translateY(-3px);
}

/* Services Section */
.services {
    padding: 70px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

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

.service-card {
    background-color: var(--text-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-content p {
    margin-bottom: 20px;
}

.service-content a {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-content a i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.service-content a:hover i {
    transform: translateX(5px);
}

/*-----  Wave Section ----*/
.wave-section {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;

}

.wave-section.light {
    /* background-color: white; */
    color: #012035;
}

.wave-section.dark {
    background-color: #012035;
    color: white;
}

.wave-section.accent {
    background-color: #FF6404;
    color: white;
}

/* Wave Design */
.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
}

.wave.light-to-dark {
    background: linear-gradient(to right, white 0%, #012035 100%);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.wave.dark-to-accent {
    background: linear-gradient(to right, #012035 0%, #FF6404 100%);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.wave.accent-to-light {
    background: linear-gradient(to right, #FF6404 0%, white 100%);
    clip-path: ellipse(100% 100% at 50% 100%);
}

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

/* Content Layout */
.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.image-content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.image-content img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Typography */
.wave-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: inherit;
}

.accent h2,
.dark h2 {
    color: white;
}

.wave-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-wave {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF6404;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.accent .btn-wave {
    background-color: #012035;
    color: white;
}

.btn-wave:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


/*-------------- Network Section Start ------------------*/
.container-network {
    max-width: 1200px;
    margin: 70px auto;
    padding: 40px 20px;
}

/* Network section styles */
.network-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.network-content {
    flex: 1 1 400px;
}

.network-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.network-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    max-width: 500px;
}

.network-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item {
    flex: 1 1 150px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-accent);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #7f8c8d;
    font-weight: 500;
}

.network-image {
    flex: 1 1 400px;
    position: relative;
    min-height: 300px;
}

.network-image img {
    max-width: 100%;
    border-radius: 10px;
}

.network-dots {
    position: absolute;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--primary-accent) 3px, transparent 3px);
    background-size: 20px 20px;
    opacity: 0.2;
    z-index: 0;
}

.dots-1 {
    top: -50px;
    left: -50px;
}

.dots-2 {
    bottom: -30px;
    right: -30px;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: var(--primary-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #012035;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(41, 128, 185, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .network-section {
        padding: 40px 30px;
        text-align: center;
    }

    .network-content {
        flex: 1 1 100%;
    }

    .network-content p {
        max-width: 100%;
    }

    .network-stats {
        justify-content: center;
    }

    .network-image {
        min-height: 250px;
        margin-top: 30px;
    }
}

/*-------------- Network Section End ------------------*/
/* Color Variables */

/* Base Styles */
.working-with-us {

    color: var(--navy);
    padding: 100px 0;
}

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

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


.section-header h2:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--orange);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header .subtitle {
    font-size: 1.2rem;
    color: lighten(var(--navy), 20%);
    max-width: 700px;
    margin: 3rem auto 0;
}

/* Benefit Cards */
.benefit-card {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    background: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(1, 32, 53, 0.1);
}

.benefit-card.reverse {
    flex-direction: row-reverse;
}


.benefit-img {
    flex: 1;
    /* min-height: 400px; */
}

.benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefit-content {
    flex: 1;
    padding: 50px;
}

.benefit-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--navy);
}

.benefit-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 25px;
    color: lighten(var(--navy), 20%);
}

.benefit-list {
    list-style-type: none;
    padding-left: 0;
}

.benefit-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 1rem;
}

.benefit-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: bold;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.cta-section p {
    font-size: 1.3rem;
    font-weight: 500;
    padding-bottom: 1rem;
    margin-bottom: 20px;
    color: var(--navy);
}



/* Responsive Design */
@media (max-width: 768px) {

    .home-content {
        padding: 3rem 2rem 0;
    }
}

@media (max-width: 992px) {
    .benefit-card {
        flex-direction: column;
    }

    .benefit-card.reverse {
        flex-direction: column;
    }

    .benefit-img {
        width: 100%;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .working-with-us {
        padding: 60px 0;
    }

    .benefit-content {
        padding: 30px;

    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}