
.Bootcamp-section {
    margin-top: 15px;
    background-color: #F2F8FF;
    padding: 20px; /* Optional: Add padding for better spacing */
    border-radius: 10px; /* Optional: Add rounded corners for a better look */
}

@keyframes draw {
    0% {
        stroke-dasharray: 0, 150;
    }
    100% {
        stroke-dasharray: 150, 0;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* @keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
} */

.section-title {
    opacity: 0;
    animation: fadeInUp 1.2s ease-out forwards;
}

/* .section-title span {
    display: inline-block;
    animation: bounce 1s ease-in-out 1.5s infinite alternate;
} */

.section-title svg path {
    stroke-dasharray: 150, 0;
    stroke-dashoffset: 0;
    animation: draw 1.5s ease-in-out forwards;
}

p {
    font-weight: 300;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 1rem;
}


.h5, h5 {
    font-size: 1.10rem;
}

.pagination-container {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    margin-top: 20px; 
}


.scroll-buttons {
    display: flex;
    gap: 5px; /* Space between the scroll buttons */
    background-color: white; /* Ensure the background color is white */
    border-radius: 8px; /* Rounded corners */
    padding: 1px; /* Reduced padding to decrease height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
}

.scroll-btn {
    background-color: transparent; /* Default background for buttons */
    border: none; /* Remove default button border */
    cursor: pointer; /* Change cursor to pointer */
    font-size: 20px; /* Adjust font size for the icons */
    color: black; /* Default icon color */
    transition: background-color 0.3s, color 0.3s; /* Smooth transition for hover effect */
    padding: 5px; /* Reduced padding inside the button */
    border-radius: 5px; /* Rounded corners for buttons */
}

.scroll-btn:hover {
    background-color: blue; /* Background color on hover */
    color: white; /* Icon color on hover */
}


.pagination-dots {
    margin-left: 612px;
    display: flex; /* Ensures dots are in a row */
    gap: 5px; /* Adjust this value to reduce space between dots */
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    border-radius: 50%;
    background-color: #ccc; /* Inactive color */
    cursor: pointer;
}

.dot.active {
    background-color: #007bff; /* Active color */
}

.course-header {
    display: flex;
    align-items: center;
    gap: 45px;
}

.section-title {
    font-size: 3rem; /* Adjust as needed */
}

.section-title {
    width: 20%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.course-wrapper {
    width: 80%;
    position: relative;
    display: flex;
    align-items: center;
}

.course-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding-bottom: 10px;
    white-space: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.course-container::-webkit-scrollbar {
    display: none;
}

.course-card {
    flex: 0 0 auto;
    width: 275px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: 0.3s;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-img {
    width: 90%;
    height: 160px;
    object-fit: cover;
    margin: 10px auto;
    display: block;
    border-radius: 8px;
}

.course-info {
    padding: 15px;
}

.course-price {
    font-size: 20px;
    font-weight: bold;
}

.scroll-btn {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 100;
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

@media (max-width: 768px) {
    /* Center the course-header */
    .course-header {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    /* Ensure the course-container aligns items in the center */
    .course-container {
        display: flex;
        flex-direction: column;
        align-items: center; /* Center the cards */
        overflow-x: unset; /* Remove horizontal scrolling */
        white-space: normal;
    }

    .course-card {
        width: 90%; /* Adjust width for better visibility */
        max-width: 350px; /* Limit maximum width */
        margin-bottom: 15px; /* Add space between cards */
    }

    /* Hide pagination and scroll buttons on small screens */
    .pagination-container,
    .scroll-buttons {
        display: none !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .course-container {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .course-container::-webkit-scrollbar {
        display: none;
    }

    /* Show only two course cards at a time */
    .course-card {
        flex: 0 0 48%; /* Adjust width for two cards per row */
    }

    /* Show pagination and scroll buttons in medium screens */
    .pagination-container,
    .scroll-buttons {
        display: flex !important;
    }
}

@media (min-width: 1025px) {
    .course-container {
        display: flex;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-behavior: smooth;
    }

    .course-container::-webkit-scrollbar {
        display: none;
    }
}

/* whom do we service */

.main-section {
    background-color: #F6FAFF;
    padding: 50px 20px;
    text-align: center;
}

.service-box h1 {
    color: #0A033C;
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight:bolder;
}

.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items:stretch;
    gap: 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.text-content {
    flex: 1 1 50%;
    max-width: 600px;
    text-align: left;
}

.service-box {
    margin-bottom: 20px;
}

.service-box h2 {
    color: #0A033C;
    font-size: 20px;
    /* Ensures h2 remains in one line */
    margin-bottom: 5px;
    white-space: nowrap;
    /* Prevents h2 from wrapping to the next line */
    overflow: hidden;
    text-overflow: ellipsis;
    font-weight: 600;
}

.service-box p {
    color: #333;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    max-width: 100%;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
   
}

.image-content {
    flex: 1 1 40%;
    text-align: center;
}

.image-content img {
    width: 90%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.image-content img:hover {
    transform: scale(1.1);
}

.service-box {
    width: 45%;
    /* Adjust width for left and right alignment */
    margin-bottom: 40px;
    /* Increased gap between each h2, p block */
}

.service-box:nth-child(odd) {
    margin-left: 0;
    text-align: left;
}

.service-box:nth-child(even) {
    margin-left: auto;
    text-align: right;
}

           /* ------------ */

          /* Our Solution */
          

          .solution-title {
            text-align: center;
            font-size: 28px;
            font-weight: bold;
            margin: 40px 0; /* Added top and bottom margin */
            position: relative;
        }
        .solution-card { 
            background: white;
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
        }
        .solution-card:hover { 
            transform: translateY(-5px);
        }
        .icon-box {
            font-size: 30px;
            color: #007bff;
            margin-bottom: 10px;
        }
        .view-detail {
            text-decoration: none;
            font-weight: bold;
            color: #007bff;
            display: inline-block;
            margin-top: 10px;
        }
        .view-detail:hover {
            text-decoration: underline;
        }

        .solution-card.support:hover { background-color: #f8d7da; }  /* Light red */
.solution-card.web-development:hover { background-color: #d1ecf1; }  /* Light blue */
.solution-card.training:hover { background-color: #d4edda; }  /* Light green */
.solution-card.open-source:hover { background-color: #fff3cd; }  /* Light yellow */
.solution-card.virtualization:hover { background-color: #f5c6cb; }  /* Soft pink */
.solution-card.networking:hover { background-color: #c3e6cb; }  /* Soft mint */
.solution-card.storage:hover { background-color: #bee5eb; }  /* Soft cyan */
.solution-card.labs:hover { background-color: #f8d7d7; }  /* Pale salmon */
.solution-card.email:hover { background-color: #e2e3e5; }  /* Light grey */
.solution-card.amc:hover { background-color: #f3e6ff; }  /* Light purple */
.solution-card.vdi:hover { background-color: #ffeeba; }  /* Pale gold */
.solution-card.server:hover { background-color: #d6e9c6; }  /* Soft olive */


     /* Stats Section */
     .stats-section {
       background: url(images/Rectangle.html\ 2037\ \(3\).png);
        background-size: cover;
       background-position: center;
        background-repeat: no-repeat;
        color: white;
        padding: 19px 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .stats-container {
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-wrap: wrap;
        width: 90%;
        max-width: 1400px;
    }

    .stats-box {
        text-align: center;
        margin: 10px 15px;
        flex: 1;
        min-width: 120px;
    }

    .stats-box h2 {
        font-size: 2rem;
        font-weight: bold;
        margin: 0;
    }

    .stats-box p {
        font-size: 1.2rem;
        margin: 5px 0 0;
    }

    /* Divider (Only for larger screens) */
    .divider {
        display: none;
        width: 2px;
        height: 60px;
        background-color: rgba(255, 255, 255, 0.5);
    }

    /* Responsive Adjustments */
    @media (min-width: 768px) {
        .divider {
            display: block;
        }
    }

     /* Offer-section */

     .offer-heading {
        text-align: center;
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 100px;
        
    }
    
    .grid-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        row-gap: 40px;
        max-width: 1100px;
        margin: auto;
        position: relative;
        overflow: visible; /* Ensures no clipping */
    }
    
    /* Background Ellipses with increased opacity */
    .grid-wrapper::before, 
    .grid-wrapper::after {
        content: "";
        position: absolute;
        width: 180px;
        height: 180px;
        background: rgba(150, 150, 255, 0.5); /* Increased opacity */
        border-radius: 50%;
        z-index: -1;
    }
    
    .grid-wrapper::before {
        top: -50px;
        left: -50px;
    }
    
    .grid-wrapper::after {
        bottom: -50px;
        right: -50px;
    }
    
    .offer-card {
        background: #fff;
        padding: 30px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        position: relative;
        min-height: 240px;
        overflow: visible; /* Ensure icon is fully visible */
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .offer-card:hover {
        transform: translateY(-10px); /* Moves the card up slightly */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhances shadow effect */
    }
    
    .offer-card h5 {
        font-weight: bold;
        margin-top: 40px;
        margin-bottom: 15px;
    }
    
    .offer-card p {
        margin-top: 15px;
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }
    
    .offer-icon {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        position: absolute;
        top: -25px;
        left: 50%;
        transform: translateX(-50%);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        background: #007BFF;
    }
    
    /* More prominent ellipses within offer cards */
    .offer-card::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 90px;
        background: rgba(255, 150, 255, 0.4); /* Increased opacity */
        border-radius: 50%;
        top: 15px;
        right: 15px;
        z-index: -1;
    }
    
    .offer-card::after {
        content: "";
        position: absolute;
        width: 70px;
        height: 70px;
        background: rgba(150, 255, 150, 0.4); /* Increased opacity */
        border-radius: 50%;
        bottom: 15px;
        left: 15px;
        z-index: -1;
    }
    
    .icon-blue { background: #81DACA; }
    .icon-orange { background: #6395EE; }
    .icon-red { background: #B5C7EB; }
    .icon-green { background: #E0AFFF; }
    .icon-lightblue { background: #CCCCFF; }
    .icon-darkblue { background: #A8DCAB; }
 
    
     
      /* Whom do we service */

      .service-section {
        padding: 50px 5%;
        background-color: #f9f9f9; /* Light background for contrast */
    }
    
    .service-item {
        background: linear-gradient(135deg, #ffffff 0%, #f3f3f3 100%);
        border-left: 5px solid #ffb703;
        padding: 15px;
        border-radius: 10px;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        position: relative;
        overflow: hidden;
        margin-bottom: 30px; /* Increased gap between service items */
    }
    
    /* Subtle background pattern */
    .service-item {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #fdfbfb, #f5f5f5); /* Soft gradient */
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border-left: 5px solid #FFC27A; /* Light highlight on the left */
        position: relative;
        overflow: hidden;
    }
    
    /* Soft background pattern */
    .service-item {
        display: flex;
        align-items: center;
        background: linear-gradient(135deg, #e8e8e8, #d6d6d6); /* Slightly darker gradient */
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 20px;
        box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border-left: 6px solid #FF9800; /* Deeper orange highlight */
        position: relative;
        overflow: hidden;
    }
    
    /* Background texture */
    /* Light Blue Background */
.service-section {
    background-color: #EAF6FF; /* Light blue */
    padding: 50px 0;
}

/* Service Item Box */
.service-item {
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #D6EBFF, #B0D9FF); /* Soft gradient blues */
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-left: 6px solid #0099FF; /* Deep blue accent */
    position: relative;
    overflow: hidden;
}

/* Add a soft pattern for depth */
.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/pattern.html') repeat;
    opacity: 0.05;
    z-index: 0;
}

/* Service Icon/Image */
/* Light Blue Background */
.service-section {
    background-color: #EAF6FF; /* Light blue */
    padding: 50px 0;
}

/* Service Item Box */
/* Light Blue Background */
.service-section {
    margin-top: 84px;
    background-color: #EAF6FF; /* Light blue */
    padding: 50px 0;
}

/* Service Item Box */
.service-item {
    display: flex;
    align-items: center;
    background: #ffffff; /* Pure white background */
    padding: 15px; /* Reduced padding */
    border-radius: 10px; /* Slightly smaller corners */
    margin: 10px 0 20px 60px; /* Increased margin-left */
    box-shadow: 3px 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-left: 5px solid #0099FF; /* Deep blue accent */
    position: relative;
    overflow: hidden;
    width: 85%; /* Reduced width */
}

/* Service Icon/Image */
.service-item img {
    width: 100px; /* Reduced size */
    height: 100px;
    object-fit: contain;
    margin-right: 15px;
    border-radius: 8px;
    background: #ffffff;
    padding: 6px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

/* Service Text Content */
.service-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Headings and Text Colors */
.service-item h5 {
    font-size: 18px; /* Slightly reduced */
    font-weight: 700;
    color: #6395EE; /* Deep blue */
    margin-bottom: 3px;
}

.service-item p {
    font-size: 15px; /* Slightly reduced */
    color: black; /* Slightly darker blue */
    line-height: 1.5;
}

/* Hover effect */
.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 4px 4px 14px rgba(0, 0, 0, 0.12);
    border-left: 5px solid #007ACC; /* Darker blue on hover */
}

/* Service Image Styling */
.service-image {
    text-align: center;
}

.service-image img {
    max-width: 90%;
    height: auto;
    max-height: 650px;
    transition: transform 0.5s ease-in-out;
}

.service-image img:hover {
    transform: scale(1.1) rotate(5deg);
}



       /* How we work */

     
    .work-process-section {
        position: relative;
        width:100%;
        height: 110vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(images/how-we-work-bg.png) no-repeat;
        background-size: cover;
        background-position: center;
       
    }
    .line-vector{
        position: absolute;
        top: 95px;
        width: 70%;
    } 
    .vector{
        position: absolute;
        width: 10%;
        top: 78px;
        left: 700px;
    }
    .section-heading {
        margin-top: -250px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        color: #111;
    }
    .work-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        margin-top: 0px;
    }
    .work-box-one {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 60px;
        left: 80px;
    }
    .work-box-two {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 230px;
        left: 110px;
    }
    .work-box-three {
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 80px;
        left: 150px;
    }
    .work-box-four{
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 220px;
        left: 200px;
    }
    .work-box-five{
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 400px;
        right: 350px;
    }
    .work-box-six{
        background: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        width: 250px;
        position: relative;
        text-align: left;
        margin: 20px;
        top: 270px;
        right: 240px;
    }
    .work-box h5 {
        font-size: 16px;
        font-weight: bold;
        color: #1a1a1a;
    }
    .work-box p {
        font-size: 14px;
        color: #555;
    }
    .step-number {
        position: absolute;
        top: -15px;
        left: 200px;
        background: #ffcc99;
        color: #000;
        font-size: 14px;
        font-weight: bold;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }
    .step-2 { background: #99ccff; }
    .step-3 { background: #ff9999; }
    .step-4 { background: #cc99ff; }
    .step-5 { background: #99ffff; }
    .step-6 { background: #99ff99; }


    /* .section-heading::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background-color: #ffcc00;
        margin: 10px auto 20px;
    } */
    
    .steps-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
        max-width: 900px;
        position: relative;
    }
    
    .step-box {
        height: 110px;
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        position: relative;
        width: 300px;
    }
    
    /* Style for each step box */
    /* Added margin for the whole container */
/* Added margin for the whole container */
/* Added margin for the whole container */
.position {
    margin-left: -40px;
    margin-top: 110px;
    margin-right: 80px;
    position: relative;
    background-color: white; /* Full Light Grey Background */
    height: 500px;
}

.background-image {
    position: absolute;
    width: 100px; /* Adjust size as needed */
    height: auto;
    opacity: 0.7; /* Slight transparency */
}

/* Individual Positions */
.image1 { top: 50px; left: 50px; }
.image2 { top: 150px; right: 100px; }
.image3 { bottom: 200px; left: 300px; }
.image4 { top: 400px; right: 400px; }
.image5 { top: 40px; right: 500px; }

.work-title {
    margin-right: -30px;
    margin-top: -72px;
    text-align: center;
}
/* Boxes */
.box {
    width: 250px;
    height: 110px;
    background-color: white; /* Box remains white */
    color: black; /* Ensures text is black */
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    position: absolute;
    border: 1px solid #ddd; /* Subtle border */
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Soft shadow */
    animation: shake 1s infinite alternate; /* Shake animation */
}

.box h5 {
    color: black; /* Black text for heading */
    font-weight: bold;
}

.box p {
    color: black;
    font-weight: 300;
}

/* Adjusted positions */
.box1 { top: 100px; left: 180px; }  
.box2 { top: 280px; left: 420px; }  
.box3 { top: 100px; left: 620px; }  
.box4 { top: 300px; left: 850px; }  
.box5 { top: 150px; left: 1020px; }  
.box6 { top: 290px; left: 1220px; }  

/* Dashed Line Path */
#custom-paths {
    position: absolute;
    top: 50px;
    left: 80px;
    width: calc(100% - 180px);
    height: 100%;
    pointer-events: none;
}

#custom-paths path {
    fill: none;
    stroke: #666; /* Darker grey for better visibility */
    stroke-width: 2;
    stroke-dasharray: 6, 6;
}

/* Bell Shake Animation */
@keyframes shake {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(-3deg); }
    75% { transform: rotate(3deg); }
    100% { transform: rotate(0deg); }
}

/* Base styles remain unchanged */

/* Responsive Adjustments */
/* Base styles remain unchanged */

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .box {
        width: 220px;
        height: auto;
        padding: 0px;
    }
    
    .box1 { top: 80px; left: 100px; }  
    .box2 { top: 250px; left: 350px; }  
    .box3 { top: 80px; left: 550px; }  
    .box4 { top: 260px; left: 750px; }  
    .box5 { top: 130px; left: 920px; }  
    .box6 { top: 270px; left: 1100px; }  

    #custom-paths {
        left: 50px;
        width: calc(100% - 100px);
    }
}

@media (max-width: 992px) {
    .position {
        height: auto;
        padding-bottom: 50px;
    }

    .background-image {
        width: 80px;
    }

    .work-title {
        font-size: 24px;
        text-align: center;
        margin-top: 20px; /* Adds space on top */
    }

    .box {
        width: 200px;
        font-size: 14px;
        position: relative;
        top: auto;
        left: auto;
        margin: 20px auto;
    }

    .workflow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Adds spacing to prevent overlap */
    }

    #custom-paths {
        display: none; /* Hide the path lines on medium screens */
    }
}

@media (max-width: 768px) {
    .position {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        padding: 20px;
    }
    .position h2
    {
          font-size: 25px;
          font-weight: bold;
          width: 100%;
          margin-top: 15px;
    }
     .course-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: left;
     }
     .course-wrapper{
        width: 40%;
     }
    .background-image {
        display: none; /* Hide background images for clarity */
    }

    .work-title {
        font-size: 22px;
        text-align: center;
        margin-top: 20px; /* Adds more space on top */
    }

    .workflow {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px; /* Adds spacing between elements */
    }
    .work-image{
        width: 100%;
        height: 200vh;
        background: url(images/tablet.html\ view.png) no-repeat;
        background-size: cover;
        
    }

    .box {
        width: 90%;
        max-width: 320px;
        left: 50%;
        transform: translateX(-50%);
        position: relative;
        margin: 10px auto;
    }
    .box1, .box2, .box3, .box4, .box5, .box6 {
        position: relative;
        top: auto;
        left: auto;
    }

    #custom-paths {
        display: none; /* Hide the path lines on small screens */
    }
    .image-content img {
        width: 60%;
    }
    .work-process-section {
        position: relative;
        width: 100%; 
        height: 110vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(images/howwework_Bg.png) no-repeat;
       
    }.work-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        margin-top: 80px;
    }
    .line-vector{
        display: none;
    } 
    .vector{
        position: absolute;
        width: 20%;
        top: 67px;
        left: 309px;
    }
    .section-heading {
        margin-top: 15px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        color: #111;
    }
    .work-box-one {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-two {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-three {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-four{
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-five{
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-six{
        position: relative;
        top: 0px;
        left: 0px;
    }
}

@media (max-width: 576px) {
    .position {
        margin: 0px;
        height: auto;
        width: 90%;
    }
    .position h2
    {
          font-size: 25px;
          font-weight: bold;
          width: 100%;
          margin-top: 15px;
    }
    .workflow {
        gap: 15px; /* Adds spacing to prevent overlap */
    }

    .box {
        width: 95%;
        max-width: 280px;
        padding: 5px;
    }

    .work-title {
        font-size: 20px;
        text-align: center;
        margin-top: -51px;
    }
    .course-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: left;
     }
     .course-wrapper{
        width: 60%;
     }
     .image-content img {
        width: 60%;
    }
    .work-image{
        width: 100%;
        height: 200vh;
        background: url(images/mobileview.png) no-repeat;
        background-size: cover;
        
    }
    .work-process-section {
        position: relative;
        width: 100%; 
        height: 182vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: url(images/mobileview.png) no-repeat;
        background-size: cover;
       
    }.work-process {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        position: relative;
        margin-top: 50px;
    }
    .line-vector{
        display: none;
    } 
    .vector{
        position: absolute;
        width: 20%;
        top: 64px;
        left: 236px;
    }
    .section-heading {
        margin-top: 20px;
        font-size: 2rem;
        font-weight: bold;
        text-align: center;
        color: #111;
    }
    .work-box-one {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-two {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-three {
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-four{
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-five{
        position: relative;
        top: 0px;
        left: 0px;
    }
    .work-box-six{
        position: relative;
        top: 0px;
        left: 0px;
    }

}

@media (max-width: 480px) {
    .position {
        margin: 20px;
        height: 800px;
    }
   .position h2
   {
         font-size: 25px;
         font-weight: bold;
         width: 100%;
         margin-top: 15px;
   }
    .workflow {
        gap: 15px; /* Adds spacing to prevent overlap */
    }

    .box {
        width: 95%;
        max-width: 280px;
        padding: 5px;
    }

    .work-title {
        font-size: 20px;
        text-align: center;
        margin-top: -51px;
    }
    .course-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: left;
     }
     .course-wrapper{
        width: 70%;
     }
     .image-content img {
        width: 70%;
    }
    .work-image{
        width: 100%;
        height: 200vh;
        background: url(images/mobileview.png) no-repeat;
        background-size: cover;
        
    }
    .vector{
        position: absolute;
        width: 27%;
        top: 67px;
        left: 182px;
    }
}


@media (max-width: 375px) {
    .position {
        margin: 20px;
        height: 800px;
    }
   .position h2
   {
         font-size: 25px;
         font-weight: bold;
         width: 100%;
         margin-top: 15px;
   }
    .workflow {
        gap: 15px; /* Adds spacing to prevent overlap */
    }

    .box {
        width: 95%;
        max-width: 280px;
        padding: 5px;
    }

    .work-title {
        font-size: 20px;
        text-align: center;
        margin-top: -51px;
    }
    .course-header{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: left;
     }
     .course-wrapper{
        width: 70%;
     }
     .image-content img {
        width: 70%;
    }
    .work-image{
        width: 100%;
        height: 200vh;
        background: url(images/mobileview.png) no-repeat;
        background-size: cover;
        
    }
    .vector{
        position: absolute;
        width: 27%;
        top: 67px;
        left: 182px;
    }
    .work-process-section {
        width: 100%; 
        height: 250vh;
       
    }
}










        /* Footer-section */

        .footer-section {
            background-color: #050026;
            color: #ffffff;
            padding: 40px 20px;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .footer-address {
            margin-bottom: 15px;
        }
        
        .footer-links h5 {
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links ul li {
            margin-bottom: 8px;
        }
        
        .footer-links ul li a {
            text-decoration: none;
            color: #ffffff;
        }
        
        .footer-images img {
            width: 30px;
            height: 30px;
            margin-right: 5px;
        }
        
        .copyright {
            margin-top: 20px;
            text-align: center;
            font-size: 14px;
        }
        
/* animation */

.animate {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.animate.visible {
    opacity: 1;
    transform: translateY(0);
}