.logo-image {
   height: 80px;
   width: auto;
}

.text-white {
   color: beige;
}

.text-justify {
   text-align: justify;
}

.footer-wrapper.section-bg2 {
   position: relative;
   /* Needed to position the overlay */
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
   padding-left: 100px;
   /* Your custom padding */
}

.clients-area .single-offers {
   display: flex;
   flex-direction: column;
   align-items: center;
   /* Center the content inside */
   height: 100%;
   /* Ensure that all boxes have the same height */
   text-align: center;
   /* Center the text */
   background-color: #fff;
   /* Optional: to give a clean background */
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
   /* Optional: Add shadow for separation */
   border-radius: 10px;
   /* Optional: Rounded corners */
   padding: 20px;
}

.clients-area .offers-img {
   width: 100%;
   /* Ensures the image is full width of the container */
   height: 200px;
   /* Fix the height to make images uniform */
   overflow: hidden;
   margin-bottom: 20px;
}

.clients-area .offers-img img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   /* Ensures images cover the container without stretching */
}

.clients-area .offers-cap h3 a {
   font-size: 18px;
   font-weight: bold;
   color: #333;
   text-decoration: none;
}

.clients-area .offers-cap p {
   font-size: 14px;
   color: #666;
   margin-top: 10px;
}

.clients-area .offers-cap span {
   display: inline-block;
   font-size: 24px;
   font-weight: bold;
   margin-bottom: 10px;
   /* color: #007bff; */
   /* Optional: Blue color for the number */
}

/* Add to mystyle.css or style.css */
.offers-cap {
   position: relative;
   /* Ensures the number-wrapper can be absolutely positioned */
   text-align: center;
   padding-top: 40px;
   /* Add padding to make space for the number */
}

.number-wrapper {
   position: absolute;
   /* Allow precise positioning */
   top: -25px;
   /* Move it up to overlap the card */
   left: 50%;
   /* Center horizontally */
   transform: translateX(-50%);
   /* Adjust for the centering */
   width: 50px;
   height: 50px;
   /* background-color: #007bff; */
   /* Blue circle */
   /* border-radius: 50%; */
   display: flex;
   justify-content: center;
   align-items: center;
   z-index: 1;
   /* Ensure it's above other elements */
   /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); */
   /* Optional: Adds shadow for effect */
}

.number-wrapper span {
   font-size: 20px;
   font-weight: bold;
   color: #fff;
}

/* Section Styling */
.section-padding40 {
   padding: 60px 0;
}

.text-center {
   text-align: center;
}

/* Expertise Section */
.expertise-box {
   padding: 20px;
   background: #f9f9f9;
   border: 1px solid #ddd;
   border-radius: 10px;
   transition: transform 0.3s ease;
}

.expertise-box:hover {
   transform: translateY(-5px);
}

.expertise-box img {
   width: 50px;
   margin-bottom: 20px;
}

.expertise-box h4 {
   font-size: 18px;
   margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio-box {
   overflow: hidden;
   margin-bottom: 30px;
   border-radius: 10px;
}

.portfolio-box img {
   width: auto;
   height: 450px;
   transition: transform 0.3s ease;
}

.portfolio-box:hover img {
   transform: scale(1.1);
}

.portfolio-box h5 {
   text-align: center;
   margin-top: 10px;
   font-size: 16px;
}

/* Appointment Section */
.bg-gray {
   background: #f7f7f7;
}

.appointment-area .btn {
   background: #007bff;
   color: #fff;
   padding: 10px 30px;
   border-radius: 5px;
   text-transform: uppercase;
}

.appointment-area .btn:hover {
   background: #0056b3;
}

/* FAQ Section */
.faq-area h5 {
   font-size: 18px;
   margin-bottom: 10px;
}

.faq-area p {
   font-size: 14px;
   color: #666;
}

/* General Section Styles */
.section-padding40 {
   padding: 40px 0;
}

.text-center {
   text-align: center;
}

.theme-color {
   color: #8D2B23;
   /* Match with the logo color */
}

/* Hero Banner */
.hero-overly {
   position: relative;
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}

.hero-caption {
   padding: 20px;
   background: rgba(0, 0, 0, 0.6);
   display: inline-block;
   border-radius: 8px;
}

.hero-caption h2 {
   font-size: 2.5rem;
   font-weight: bold;
}

.hero-caption p {
   font-size: 1.2rem;
}

/* Timeline Styles */
.timeline {
   position: relative;
   max-width: 900px;
   margin: auto;
}

.timeline-item {
   display: flex;
   margin-bottom: 30px;
   position: relative;
}

.timeline-icon {
   background: #8D2B23;
   color: white;
   border-radius: 50%;
   width: 50px;
   height: 50px;
   display: flex;
   justify-content: center;
   align-items: center;
   font-size: 1.5rem;
   position: absolute;
   left: -25px;
   top: 5px;
}

.timeline-content {
   background: #f8f9fa;
   padding: 15px;
   margin-left: 50px;
   border-radius: 8px;
   box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

/* Core Values */
.core-value-box {
   padding: 20px;
   margin-bottom: 20px;
   background: white;
   border-radius: 10px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   transition: 0.3s;
}

.core-value-box:hover {
   transform: translateY(-5px);
}

.core-value-box .icon {
   font-size: 2.5rem;
   color: #8D2B23;
   margin-bottom: 10px;
}

/* Vision & Mission */
.vision-mission-box {
   display: flex;
   justify-content: center;
}

.funky-box {
   position: relative;
   background: white;
   padding: 20px;
   border-radius: 10px;
   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
   text-align: center;
   height: 100%;
}

.funky-box img {
   width: 350px;
   height: 450px;
   /* Set a fixed height */
   object-fit: cover;
   /* Ensures the image fits properly */
   border-radius: 10px;
}

.funky-box-text {
   margin-top: 15px;
}

.funky-box h4 {
   font-size: 1.8rem;
   color: #8D2B23;
   font-weight: bold;
}

/* Call to Action */
.btn {
   background: #8D2B23;
   color: white;
   padding: 12px 30px;
   border-radius: 5px;
   font-size: 1.2rem;
   text-decoration: none;
   transition: 0.3s;
}

.btn:hover {
   background: #6B1F1A;
}

 /* Testimonial */
.circle-wrapper {
   position: relative;
   display: inline-block;
}

.circle-image {
   width: 100px;
   /* Adjust as needed */
   height: 100px;
   border-radius: 50%;
   object-fit: cover;
   border: 5px solid white;
   /* Optional: White border */
   position: relative;
   z-index: 2;
   /* Ensure the image stays above */
}

.circle-wrapper::before {
   content: "";
   position: absolute;
   top: -5px;
   padding-left: 10px;
   left: -5px;
   width: 110px;
   /* Slightly larger than image */
   height: 110px;
   border-radius: 50%;
   border: 3px solid #cda368;
   /* Adjust color as needed */
   z-index: 1;
   /* Behind the image */
}