.priorities-section {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


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

.priorities-list li {
    background-color: #fff;
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.box {
    width: 100%;
    height: 600px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    /* background-image: linear-gradient(#00ff00, #00ff11, #11ee10); */

    z-index: 1;
    /* Ensure box stays below the bubbles */
}

.bubble-box {
    display: flex;
    position: absolute;
    justify-content: space-around;
    align-items: center;
    bottom: 10%;
    /* Adjusted to make bubbles visible */
    width: 100%;
    z-index: 2;
    /* Ensure bubbles are above other elements */
}

.bubble {
    width: 90px;
    animation: bubble 5s linear infinite;
    position: relative;
}

.bubble:nth-child(1) {
    animation-delay: 2s;
    width: 40px;
}

.bubble:nth-child(2) {
    animation-delay: 3s;
    width: 60px;
}

.bubble:nth-child(3) {
    animation-delay: 1s;
    width: 30px;
}

.bubble:nth-child(4) {
    animation-delay: 5s;
    width: 35px;
}

.bubble:nth-child(5) {
    animation-delay: 4s;
    width: 70px;
}

@keyframes bubble {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }

    100% {
        transform: translateY(-80vh);
        opacity: 0;
    }
}




.steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 65px;
    justify-content: end;
    padding-right: 150px;
    /* Ensure steps are centered */
}

.step {
    flex: 0 0 auto;
    /* Allow step circles to size properly */
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    color: white;
}

.step::after {
    content: '';
    position: absolute;
    right: -1rem;
    /* Adjust spacing between steps */
    width: 1rem;
    height: 2px;
    background: #ddd;
}

.step:last-child::after {
    display: none;
    /* Hide line after last step */
}

.step.active {
    border-color: #C69F08;
    color: #C69F08;
}

@media (max-width: 768px) {

    /* Adjust the breakpoint as needed */
    .steps {
        padding-right: 40px;
    }

    .step-content {
        min-height: 371px;
        width: 355px;
    }
}


.step-content {
    background: white;
    min-height: 400px;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 50%;
    /* Center the content */
    transform: translateX(-50%);
    /* Centering fix */
    transition: opacity 0.3s ease-in-out;
    pointer-events: none;
    width: 368px;
    border: 13px solid #f1f4f1;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.illustration {
    text-align: center;
    margin-top: 2rem;
    margin-left: -84px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    /* Ensures proper alignment on smaller screens */
    gap: 2rem;
}

.clothes-hanger {
    width: 120px;
    height: 160px;
}

.laundry-basket {
    width: 100px;
    height: 100px;
    border: 4px solid #4299e1;
    border-radius: 8px;
}


.step-header,
.step-content p {
    text-align: center;
    /* Center text */
}


.step-content.active {
    opacity: 1;
    pointer-events: all;
}

.step-header {
    margin-bottom: 1.5rem;
}

.step-header .highlight {
    color: #0076AE;
}

/* .illustration {
text-align: center;
margin-top: 2rem;
display: flex;
justify-content: center;
align-items: center;
gap: 2rem;
}

.clothes-hanger {
width: 120px;
height: 160px;
}

.laundry-basket {
width: 100px;
height: 100px;
border: 4px solid #4299e1;
border-radius: 8px;
} */

@media (max-width: 768px) {
    .content {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: start;
    }

    .right-content {
        width: 100%;
        min-height: 375px;
    }

    h1 {
        font-size: 2rem;
    }

    .steping {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.step-container {
    display: flex;
    align-items: center;
    /* Aligns items vertically */
}

.illustration {
    margin-right: -25px;
    /* Space between illustration and text */
}

.step-text {
    flex: 1;
    padding-left: 123px;

    /* Allows text to take remaining space */
}

.step-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.content {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
    /* margin-top: 2rem; */
}

.left-content {
    flex: 1;
    margin-top: 113px;
}

.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    /* Adds space between steps */
    position: relative;
}



.mission-section {
    min-height: 100vh;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
}

.background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image:
        radial-gradient(circle at 100% 150%, #333 24%, white 24%),
        radial-gradient(circle at 0 150%, #333 24%, white 24%);
    background-size: 5em 5em;
    background-repeat: repeat;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 6rem;
    position: relative;
    z-index: 1;
}

.mission-content {
    flex: 1;
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1s ease forwards;
}

.mission-subtitle {
    color: #3498db;
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.mission-title {
    color: #2c3e50;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    position: relative;
}

.mission-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #2ecc71);
    margin: 1rem 0;
    border-radius: 2px;
}

.mission-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 1.5rem;
    border-left: 3px solid rgba(52, 152, 219, 0.3);
}

.mission-image-container {
    flex: 1;
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    animation: slideIn 1s ease 0.3s forwards;
}

.mission-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 10px rgba(255, 255, 255, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-image-container:hover .mission-image {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 0 0 10px rgba(255, 255, 255, 0.9);
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #3498db;
    opacity: 0.2;
}

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

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.highlight-box {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: slideUp 0.8s ease 0.6s forwards;
}

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

@media (max-width: 1200px) {
    .mission-title {
        font-size: 3rem;
    }

    .highlight-box {
        display: none;
    }
}

@media (max-width: 768px) {
    .mission-container {
        flex-direction: column;
        gap: 3rem;
    }

    .mission-title {
        font-size: 2.5rem;
    }

    .mission-text {
        font-size: 1.1rem;
    }

    .mission-image-container {
        order: -1;
        margin: -2rem -1rem 0;
    }

    .mission-image {
        border-radius: 10px;
    }
}



/* What We Do Section */
.services-section {
    background: url('image.png') no-repeat center center/cover;
    position: relative;
    padding: 80px 20px;
    color: white;
    text-align: center;
}

/* Dark Overlay */
.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
}

/* Section Title */
.services-title {
    position: relative;
    font-size: 36px;
    margin-bottom: 30px;
}

/* Services Grid */
.services-container {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
}

/* Individual Service Box */
.service-box {
    background: #3498db;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s ease;
}

.service-box:hover {
    background: #3498db;
    transform: translateY(-5px);
}

/* Service Icon */
.service-icon {
    font-size: 40px;
    margin-bottom: 10px;
    color: #FFD700;
}

/* Service Title */
.service-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-title {
        font-size: 28px;
    }
}




/* Background Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    /* Adjust height as needed */
    background: url('Assets/Images/mission.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Semi-transparent overlay */
}

/* Text Container */
.hero-content {
    position: relative;
    max-width: 80%;
    font-family: Arial, sans-serif;
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 16px;
    }
}