ul.circle {
    list-style-type: circle;
}

.logo {
    position: fixed; /* Makes the logo sticky */
    top: 0; /* Sticks to the top */
    left: 0; /* Position from the left edge */
    right: 0; /* Position to the right edge */
    z-index: 10; /* Ensures logo is above other elements */
    padding: 10px; /* Add padding around the logo */
    background-color: rgba(255, 255, 255, 0.8); /* Background color */
    border-radius: 0; /* No rounded corners to maintain full width */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.logo img {
    width: 100px; /* Adjust the size as needed */
    height: auto;
}

.cta-button {
    background-color: rgb(122, 235, 135);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    background-color: rgb(122, 235, 135);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.content-section {
    padding: 40px 15px; /* Adjusted padding for mobile */
}

.content-section img {
    max-width: 100%;
    height: auto;
}

.accordion-button::after {
    margin-left: auto;
}

.footer {
    background-color: rgb(122, 235, 135);
    color: white;
    padding: 20px 0;
}

.footer .footer-text {
    text-align: right;
}

@media (max-width: 768px) {
    .footer-text {
        text-align: center;
    }
    .logo {
        left: 5px; /* Slight adjustment for mobile */
    }
    .carousel-caption h1 {
        font-size: 1.75rem; /* Adjust size for mobile */
    }
    .carousel-caption p {
        font-size: 1rem; /* Adjust size for mobile */
    }
}

.carousel-item {
    height: 70vh;
    min-height: 300px;
    background: no-repeat center center scroll;
    background-size: cover;
    transition: opacity 0.75s ease-in-out, transform 0.5s ease;
}

/* Effect hover on carousel images */
.carousel-item:hover {
    transform: scale(1.05);
}

.carousel-caption {
    position: absolute;
    bottom: 10%; /* Adjusted to position caption higher on mobile */
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding: 15px; /* Adds padding around the text */
    background-color: rgba(0, 0, 0, 0); /* Semi-transparent background for better readability */
    border-radius: 10px; /* Rounded corners for aesthetic appeal */
}

.carousel-caption h6 {
    font-size: 1.5rem; /* Adjust size for mobile */
}

.carousel-caption p {
    font-size: 1rem; /* Adjust size for mobile */
}

/* Optional: To smooth fade effect during carousel transition */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

:root {
    --primary-color: rgb(122, 235, 135);
    --secondary-color: #191A23;
    --body-color: hsl(0, 0%, 95%);
}
.working-process .accordion-item {
    border: 1px solid var(--secondary-color);
    border-bottom: 3px solid var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
    /* padding: 20px; */
    background-color: var(--body-color);
}

.working-process .accordion-item .accordion-button {
    background-color: var(--body-color);
    padding: 20px 40px;
    border-bottom: 1px solid var(--secondary-color);
}

.working-process .accordion-item .accordion-collapse.collapse.show, .working-process .accordion-item .accordion-collapse.collapse.show {
    background-color: var(--primary-color);
    transition: all 0.2s ease-in-out;
}

.working-process .accordion-item .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    transition: all 0.2s ease-in-out;
    background-color: var(--primary-color) !important;
    box-shadow: none;
}

.working-process .accordion-item .accordion-button:focus {
    box-shadow: none;
}

.working-process .accordion-item .accordion-collapse .accordion-body {
    padding: 20px 40px;
}

.working-process .accordion-item .accordian-numbers {
    font-size: 44px;
    padding-right: 20px;
}

.accordion-button::after {
    background-image: none;
    font-family: "Font Awesome 6 Free";
    content: "\f068";
    height: 35px;
    width: 35px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 1px solid var(--secondary-color);
    background-color: var(--body-color);
    color: var(--secondary-color);
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
    content: "\f067"; 
}

.working-process .accordion-item .collapsing {
    transition: all 0.3s ease-in-out;
}

.contact-form-wrapper {
  padding: 100px 0;
}

.contact-form {
  padding: 30px 40px;
  background-color: #ffffff;
  border-radius: 12px;
  max-width: 400px;
}

.contact-form textarea {
  resize: none;
}

.contact-form .form-input,
.form-text-area {
  background-color: #f0f4f5;
  height: 50px;
  padding-left: 16px;
}

.contact-form .form-text-area {
  background-color: #f0f4f5;
  height: auto;
  padding-left: 16px;
}

.contact-form .form-control::placeholder {
  color: #aeb4b9;
  font-weight: 500;
  opacity: 1;
}

.contact-form .form-control:-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control::-ms-input-placeholder {
  color: #aeb4b9;
  font-weight: 500;
}

.contact-form .form-control:focus {
  border-color: rgb(122, 235, 135);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07), 0 0 8px rgb(122, 235, 135);
}

.contact-form .title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}

.contact-form .description {
  color: #aeb4b9;
  font-size: 14px;
  text-align: center;
}

.contact-form .submit-button-wrapper {
  text-align: center;
}

.contact-form .submit-button-wrapper input {
  border: none;
  border-radius: 4px;
  background-color: rgb(122, 235, 135);
  color: rgb(0, 0, 0);
  text-transform: uppercase;
  padding: 10px 60px;
  font-weight: 500;
  letter-spacing: 2px;
}

.contact-form .submit-button-wrapper input:hover {
  background-color: rgb(122, 235, 135);
}