body{
    text-align: center;
    font-family: 'Arial';
}

.indepth-title {
    width: 100%; /* Full width, adjust as needed */
    height: 800px; /* Adjust the height of the title box */
    background-image: url('https://img.freepik.com/premium-vector/watercolor-outer-space-purple-background_23-2149247753.jpg'); /* Background image */
    background-size: cover; /* Ensures the image covers the entire box */
    background-position: center; /* Centers the background image */
    position: relative; /* Allows for text positioning */
    display: flex; /* Flexbox to center the title */
    justify-content: center; /* Centers the title horizontally */
    align-items: center; /* Centers the title vertically */
    color: white; /* Title text color */
    font-family: 'Arial', sans-serif; /* Font styling */
    font-size: 5em; /* Adjust the title size */
}

.aboutus-title {
    width: 100%; /* Full width, adjust as needed */
    height: 800px; /* Adjust the height of the title box */
    background-size: cover; /* Ensures the image covers the entire box */
    background-position: center; /* Centers the background image */
    background-color: #f8f9fa;
    position: relative; /* Allows for text positioning */
    display: flex; /* Flexbox to center the title */
    justify-content: center; /* Centers the title horizontally */
    align-items: center; /* Centers the title vertically */
    color: black; /* Title text color */
    font-family: 'Arial', sans-serif; /* Font styling */
    font-size: 5em; /* Adjust the title size */
    margin-bottom: 50px;
}

.sub-title {
    font-size: 4.5em; /* Adjust the title size */
    position: relative; /* Allows for text positioning */
    justify-content: center;
    margin-top:200px;
    margin-bottom:200px;
}



.deep-dive-container {
    margin: auto;
    display: inline-block;
    width: 600px; /* Set container width */
    height: 600px; /* Set container height */
    position: relative;
}

.image {
    width: 1000px; /* Make the image fill the container's width */
    height: 1000px;
}

.image-container {
    margin-top: 15px; /* Add margin to create buffer space above the image */
    margin-bottom: 15px;
    display: inline-block;
    width: 600px; /* Set container width */
    height: 600px; /* Set container height */
    position: relative;
}

/* Styling the original image */
.original-image {
    display: block; /* Block display */
    width: 100%; /* Full width of container */
    height: 100%; /* Full height of container */
    transition: transform 0.5s ease, opacity 0.5s ease; /* Smooth transition for original image */
}

/* Styling the hover image */
.hover-image {
    display: block; /* Block display */
    width: 20%; /* Full width of container */
    height: 20%; /* Full height of container */
    position: absolute; /* Position on top of original image */
    top: 20%; /* Align to the top */
    left: 50%; /* Align to the left */
    opacity: 0; /* Initially hidden */
    transition: opacity 0.5s ease; /* Smooth transition for opacity */
}

/* Show the hover image and zoom the original on hover */
.image-container:hover .original-image {
    transform: scale(1.1); /* Zoom the original image */
}

.image-container:hover .hover-image {
    opacity: 1; /* Show hover image */
}


/* Styling for each bubble */
.bubble {
    position: absolute; /* Allows the text box to be positioned relative to the bubble */
    width: 50px;
    height: 50px;
    background-color: purple; /* Blue background */
    border-radius: 50%; /* Makes the bubble round */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: transform 0.3s ease; /* Smooth scaling effect */
}

.bubble:hover {
    transform: scale(1.2); /* Make the bubble slightly larger on hover */
}

/* Number styling inside the bubble */
.number {
    font-weight: bold;
    pointer-events: none; /* Ensures the number doesn't interfere with hover events */
}

/* Hidden text box */
.text-box {
    position: absolute;
    top: 60px; /* Position the text box below the bubble */
    left: 50%;
    transform: translateX(-50%); /* Center the text box horizontally */
    width: 200px;
    padding: 10px;
    background-color: #f8f9fa; /* Light background for text box */
    color: #333;
    border: 1px solid purple; /* Border matching the bubble color */
    border-radius: 5px;
    opacity: 0; /* Initially hidden */
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* Smooth transition */
    font-size: 14px;
    text-align: center;
    z-index: 2; /* Ensure text box appears above other elements */
}

/* Show the text box on hover */
.bubble:hover .text-box {
    opacity: 1; /* Show the text box */
    visibility: visible; /* Make it visible */
}

.bottom-link{
    width: 100%; /* Full width, adjust as needed */
    height: 25px; /* Adjust the height of the title box */
    background-size: cover; /* Ensures the image covers the entire box */
    background-position: center; /* Centers the background image */
    background-color: #f8f9fa;
    position: relative; /* Allows for text positioning */
    display: flex; /* Flexbox to center the title */
    justify-content: center; /* Centers the title horizontally */
    color: black; /* Title text color */
    font-family: 'Arial', sans-serif; /* Font styling */
    font-size: 1em; /* Adjust the title size */
}

.top {
    top:2600px;
    right:32%;
}

.middle {
    top:2800px;
    right:50%;
}

.bottom {
    top:3000px;
    left:35%;
}

.very-bottom {
    top:3100px;
    left:62%;
}

#about-us {
    margin-top: 50px;
    background-color: #00000000;
    border: 1px solid #dddddd00;
    border-radius: 10px;
}

h2 {
    font-size: 30px;
    margin-bottom: 50px;
    color: #000000;
}

h3 {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #3b3737;
}
p {
    line-height: 1.9; /* Adjust this value as needed */
}

.fade-in-section {
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Slightly move down */
    transition: opacity 1s ease-out, transform 0.5s ease-out; /* Animation */
}

.fade-in-section.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}

.fade-in-text-section {
    position: relative;
    left:14%;
    transform: translateX(-50%); /* Center the text box horizontally */
    width: 1000px;
    padding: 10px;
    background-color: #f8f9fa; /* Light background for text box */
    font-size: 20px;
    text-align: center;
    z-index: 1; /* Ensure text box appears above other 
    opacity: 0; /* Start hidden */
    transform: translateY(20px); /* Slightly move down */
    transition: opacity 1s ease-out, transform 0.5s ease-out; /* Animation */
}

.fade-in-text-section.visible {
    opacity: 1; /* Fully visible */
    transform: translateY(0); /* Move to original position */
}