/* Services Section Styling */
.services-style1-area {
    padding: 30px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services-style1-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.services-style1-area .container {
    position: relative;
    z-index: 1;
}

.specialised-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.specialised-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #3498db;
}

.specialised-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.services-slider {
    margin-top: 50px;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin: 15px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-image {
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.image-border {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.service-card:hover .image-border {
    border-color: rgba(255, 255, 255, 0.8);
}

.service-footer {
    padding: 25px;
    background: #ffffff;
    text-align: center;
}

.service-footer h5 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-footer .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #3498db;
    color: #ffffff;
    transition: all 0.3s ease;
}

.service-footer .btn:hover {
    background: #2980b9;
    transform: rotate(90deg);
}

/* Owl Carousel Customization */
.owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-nav button {
    width: 40px;
    height: 40px;
    background: #3498db !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.owl-nav button:hover {
    background: #2980b9 !important;
}

.owl-dots {
    margin-top: 20px;
    text-align: center;
}

.owl-dot {
    width: 12px;
    height: 12px;
    background: #bdc3c7 !important;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.owl-dot.active {
    background: #3498db !important;
    transform: scale(1.2);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 152, 219, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    padding: 20px;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #ffffff;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.service-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/*** 
=============================================
    Breadcrumb area style
=============================================
***/

.breadcrumb-area {
    position: relative;
    background-attachment: scroll;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 110px 0 60px;
    z-index: 1;
    overflow: hidden;
    margin-top: 80px;

}

.breadcrumb-area::before {
    background: rgba(0, 37, 53, 0.41);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.breadcrumb-area .inner-content {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 768px) {
    .breadcrumb-area .inner-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 25px;
        margin-top: 25px;
    }
}

.breadcrumb-area .title {
    display: block;
}

.breadcrumb-area .title h2 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.3;
    font-weight: 700;
    text-transform: capitalize;
    margin: 0;
}

@media (min-width: 768px) {
    .breadcrumb-area .title h2 {
        font-size: 30px;
    }
}

.breadcrumb-area .breadcrumb-menu {
    position: relative;
    display: block;
}

.breadcrumb-area .breadcrumb-menu ul {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 10px;
}

.breadcrumb-area .breadcrumb-menu ul li {
    position: relative;
    display: inline-block;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 400;
    text-transform: capitalize;
    font-family: 'Rubik', sans-serif;
    transition: all 500ms ease;
}

@media (min-width: 768px) {
    .breadcrumb-area .breadcrumb-menu ul li {
        font-size: 15px;
    }
}

.breadcrumb-area .breadcrumb-menu ul li a {
    color: #ffffff;
    font-weight: 700;
    transition: all 500ms ease;
}

.breadcrumb-area .breadcrumb-menu ul li.active {
    color: #ffffff;
}

.breadcrumb-area .breadcrumb-menu ul li a:hover {
    color: #022534;
}

.services-section {
    width: 100%;
    padding: 4rem 1rem;
    background: linear-gradient(to right, rgba(6, 78, 59, 0.2), rgba(8, 145, 178, 0.2), rgba(6, 78, 59, 0.2));
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-image {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-layout {
        flex-direction: row;
    }
}

.services-sidebar {
    width: 100%;
    border-radius: 0.5rem;
    padding: 1rem;
}

@media (min-width: 768px) {
    .services-sidebar {
        width: 25%;
    }
}

.services-content {
    width: 100%;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
}

@media (min-width: 768px) {
    .services-content {
        width: 75%;
    }
}

.service-button {
    width: 100%;
    text-align: left;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    background: white;
    transition: all 0.2s;
}

.service-button:hover {
    background: #f3f4f6;
}

.service-button.active {
    background: #eab308;
    color: black;
}

.service-section {
    margin-bottom: 1rem;
    background: #f3f4f6;
    padding: 1rem;
    border-radius: 0.5rem;
}

.service-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.service-section p {
    color: #4b5563;
}

.service-section ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    color: #4b5563;
}

.service-section li {
    margin-bottom: 0.5rem;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: center;
    margin-bottom: 1rem;
}

.service-card{
    flex: 1; min-width: 260px; border: 1px solid #007bff; border-radius: 5px; padding: 10px;
}

/* Book Appointment Section Styles */
.book-appointment {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f7ff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e3f2fd;
}

.book-appointment h3 {
    color: #1a365d;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.book-appointment p {
    color: #4a5568;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.book-appointment button {
    width: 100%;
    background-color: #2563eb;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-appointment button:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
}

.book-appointment button:active {
    transform: translateY(0);
}

/* Responsive styles for book appointment section */
@media screen and (max-width: 768px) {
    .book-appointment {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .book-appointment h3 {
        font-size: 1.125rem;
    }
    
    .book-appointment p {
        font-size: 0.8125rem;
    }
    
    .book-appointment button {
        padding: 0.625rem 0.875rem;
    }
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .services-layout {
        flex-direction: column;
    }
    
    .services-sidebar {
        position: relative !important;
        top: 0 !important;
        min-width: 100% !important;
        margin-bottom: 20px;
    }

    .services-content {
        width: 100%;
    }

    .service-button {
        width: 100%;
        margin-bottom: 8px;
    }
}

/* Base Layout Styles */
.services-layout {
    display: flex;
    gap: 30px;
}

.services-content {
    flex: 1;
}

.small-banner {
    max-width: 50%;
    height: auto;
    margin: 0 auto;
    display: block;
} 