.hero-section {
    position: relative;
    background: url('/images/white-desk-earphones-iphone.jpg') no-repeat center center;
    background-size: cover;
    padding: 50px 0;
    color: #000;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #91a6b6b0; /* Blue color with 50% opacity */
    z-index: 1;
}
.hero-section .container {
    position: relative;
    z-index: 10;
}

.kola {
    
    max-width: 330px;
  margin-right: 0px;
    /* Center the card horizontally */
}

@media (max-width: 768px) {
    .kola {
        max-width: 100%;
    }}
.pricing-card {
    background-color:  rgba(252, 250, 250, 0.836);
    color: #000;
    border-radius: 25px;
    box-shadow: #333;
  
}



.card-title1 {
   position: relative;
   padding-bottom: 15px;
    }
.card-title1::after {
    content: '';
    width: 50px;
    height: 1px;
    background-color: #3a3938; /* Yellow underline */
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    }

.pricing-card h2 {
    margin-top: 0;
}

.pricing-card .price {
    font-size: 2em;
    margin: 20px 0;
}

.pricing-card button {
    background-color: #29C40F;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
}
.pricing-card button:hover {
    background-color: #D86E13;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
}
.help-you {
/* height: 100%;
margin: 0px; */
/* background-image: url('/images/desktop_computer_plant_mug.jpg'); */
position: relative;
background: url('/images/desktop_computer_plant_mug.jpg') no-repeat center center/cover;
color: rgb(36, 33, 33);
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
}


.contact-page {
/* height: 100%;
margin: 0px; */
background-image: url('/images/Large_leaves.jpg');
background-size: cover;
background-position: center;
justify-content: center;
overflow:hidden;
}
.form-control {
background-color: transparent; /* Makes the background transparent */
border: none; /* Removes all borders */
border-bottom: 1px solid #fff; /* Adds a solid bottom border */
border-radius: 0; /* Ensures no rounded corners */
outline: none; /* Removes the outline on focus */
box-shadow: none; /* Removes any box shadow */
color: #fff; /* Sets the text color to black (or any color you prefer) */
}
.form-control::placeholder {
color: #fff; /* White placeholder text */
opacity: 1; /* Ensures the placeholder is fully visible */
}
.form-control:focus {
background-color: transparent; /* Makes the background transparent */
border-bottom-color: #007bff; /* Changes the bottom border color on focus */
box-shadow: none; /* Ensures no shadow on focus */
color: #fff;
}

@media (max-width: 991.98px) {
.contact-image-wrapper {
display: none; /* Hide image on medium and smaller screens */
}
}
.testimonials-section {
background-color: #f8f9fa;
}

.testimonials-section h2 {
font-size: 2.5rem;
margin-bottom: 2rem;
}

.testimonial {
background-color: #fff;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
height: 100%;
}

.testimonial img {
border: 5px solid #ddd;
}

.testimonial p {
font-style: italic;
font-size: 1.1rem;
color: #555;
margin: 1.5rem 0;
}

.testimonial h5 {
margin-top: 1rem;
font-weight: bold;
color: #333;
}

.bi-quote {
font-size: 2rem;
color: #6c63ff;
}

.clients-testimonials {
background-color: #1a1b4d; /* Dark background color */
color: #f5f5f5; /* Light text color */
}

.testimonial-box {
background-color: #fff;
color: #333;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
display: flex;
align-items: center;
max-width: 500px;
}

.testimonial-box img {
width: 50px;
height: 50px;
margin-right: 15px;
}

.testimonial-box p {
font-style: italic;
margin-bottom: 0;
font-size: 1rem;
}

.testimonial-box h6 {
margin-top: 10px;
font-weight: bold;
font-size: 0.9rem;
}

.small-text {
font-size: 1rem;
font-weight: 400;
margin-bottom: 10px;
}

h1 {
    font-size: 73px;
    }
h2 {
font-size: 2.5rem;
}

@media (max-width: 992px) {
.clients-testimonials h2 {
font-size: 2rem;
}
.clients-testimonials .testimonial-box {
margin-bottom: 10px;
}
}

@media (max-width: 768px) {
.clients-testimonials h2 {
font-size: 1.8rem;
}
.testimonial-box {
flex-direction: column;
text-align: center;
}
.testimonial-box img {
margin-bottom: 15px;
}
}

.features-section {
background-color: #f9f9f9; /* Light background */
}

.section-title {
font-size: 24px;
font-weight: bold;
color: #333;
position: relative;
padding-bottom: 15px;
}

.section-title::after {
content: '';
width: 50px;
height: 2px;
background-color: #ffc107; /* Yellow underline */
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
}

.row.text-center {
display: flex;
flex-wrap: wrap;
}

.feature-box {
padding: 20px;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%; /* Make sure all cards have the same height */
}

.feature-icon {
width: 60px;
height: 60px;
background-color: #ffc107; /* Yellow background */
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 15px;
}

.feature-icon img {
max-width: 50%;
height: auto;
}

.feature-title {
font-size: 18px;
font-weight: 600;
margin-bottom: 10px;
color: #333;
}

.feature-description {
font-size: 14px;
color: #666;
}

.feature-box:hover {
transform: translateY(-10px);
transition: transform 0.3s ease;
}

/* kakakka */

.text-highlight {
color: #f28c8c; /* Light red color as per your screenshot */
font-weight: bold;
}

.highlight-blue {
font-weight: bold;
color: #333;
position: relative;
color: #00bfff;

}
.highlight-blue::after{
content: '';
width: 50px;
height: 2px;
background-color: #00bfff; /* Yellow underline */
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);

}

.lead {
margin-bottom: 20px;
color: #666;
}

.image-container {
width: 100%;
height: 100%;
overflow: hidden;
}

.image-container img {
width: 100%;
height: 100%;
object-fit: cover;
}

.btn-outline-dark {
display: inline-flex;
align-items: center;
}

.btn-outline-dark i {
margin-right: 10px;
}

/* Responsive adjustments */
@media (max-width: 767px) {
.text-center {
text-align: center !important;
}
.text-md-start {
text-align: center !important;
}
.image-container img {
object-fit: contain; /* Ensures image scales well on small screens */
}
}
