/* General Styles */


/* Service Section Layout */
.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

/* Service Box Styling */
.service-box {
    background-color: #fff;
    width: 400px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

/* Number Circle Styling */
.service-box .number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFC107;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    width: 50px;  /* Ensure width and height are equal */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;  /* Makes it a perfect circle */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid white; /* Optional: Add a border for a better look */
}


/* Title Styling */
.service-box h2 {
    font-size: 20px;
    margin-top: 30px;
    font-weight: 600;
}

/* Description Styling */
.service-box p {
    font-size: 14px;
    color: #555;
    margin: 15px 0;
}

/* Button Styling */
.explore-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #FF8C61;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 20px;
    transition: 0.3s;
}

.explore-btn:hover {
    background-color: #FF5722;
}

/* Image Styling */
.service-box img {
    width: 100%;
    height: auto;
    margin-top: 15px;
    border-radius: 10px;
}


/* Image Styling */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.3);
}

.about-left img {
    width: 100%;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

.about-left img:hover {
    transform: scale(1.05);
}

.about-right {
    text-align: center; /* Centers inline elements like the button */
}

/* Title */
.section-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #FF9800;
}

/* Subtitle */
.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #FFD700;
    margin-bottom: 15px;
}

/* Description */
.description {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Button Styling */
.primary-btn {
    display: inline-block;
    background: #FF9800;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(255, 152, 0, 0.4);
}

.primary-btn:hover {
    background: #FF5722;
    box-shadow: 0 6px 15px rgba(255, 87, 34, 0.5);
}
