/* Services Page Styles */

/* Banner Section - Custom height for this page */
.banner-section {
    height: 550px;
    margin-top: -120px !important;
}
.banner-content h1{
    font-size: 45px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
}
/* Center banner title */
.banner-section .container {
    height: 100%;
}
.banner-section .banner-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    position: relative;
}

.services-content {
    padding: 30px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.services-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #002D85, #0066CC);
}

.services-heading {
    font-size: 32px;
    font-weight: 700;
    color: #002D85;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

.services-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding-left: 20px;
}

.services-image {
    text-align: center;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Row spacing */
.services-section .row {
    margin-bottom: 60px;
}

.services-section .row:last-child {
    margin-bottom: 0;
}

/* Parallax Section */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0;
    position: relative;
    height: 500px;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

/* Commercial Advisory Section */
.commercial-advisory-section {
    padding: 80px 0 0 0;
    background-color: white;
}

.advisory-content {
    padding-right: 40px;
    padding-bottom: 60px;
}

.advisory-image {
    margin-bottom: 30px;
    text-align: center;
}

.advisory-image img {
    max-width: 100%;
    height: auto;
}

.advisory-heading {
    font-size: 28px;
    font-weight: 700;
    color: #002D85;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.advisory-counter {
    font-size: 48px;
    font-weight: 700;
    color: #002D85;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.counter-number {
    color: #002D85;
}

.advisory-text {
    font-size: 16px;
    line-height: 1.6;
    color: #0066CC;
    margin: 0;
}

.service-boy-image {
    display: flex;
    align-items: flex-end;
    height: 100%;
    min-height: 400px;
}

.service-boy-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
}

