.services-banner-section {
width: 100%;
background-color: #FAF9F6; display: flex;
flex-direction: column;
} .sb-image-wrapper {
position: relative;
width: 100%;
height: 65vh; min-height: 500px;
overflow: hidden; }
.sb-main-img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center; 
display: block;
} .sb-badge-track {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
width: 100%;
max-width: 1440px;
height: 100%;
pointer-events: none; z-index: 10;
}
.sb-rotating-badge {
position: absolute; bottom: 30px; right: 30px;  transform: none; 
width: 160px;
height: 160px; mix-blend-mode: difference; 
} .spin-animation {
width: 100%;
height: 100%;
animation: spin 15s linear infinite;
display: block;
} .static-center-logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 40px; height: auto;
}
@keyframes spin {
100% { transform: rotate(360deg); }
} .sb-content-wrapper {
width: 100%;
padding: 80px 20px;
}
.sb-content-inner {
width: 100%;
max-width: 1440px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 40px;
}
.sb-title {
font-family: 'Cormorant Garamond', serif;
font-size: 80px;
font-weight: 500;
color: #000000;
margin: 0;
line-height: 1;
}
.sb-desc {
font-family: 'General Sans', sans-serif;
font-size: 16px;
font-weight: 400;
line-height: 1.6;
color: #333333;
margin: 0 0 30px 0;
max-width: 480px;
} .btn-outline-dark {
display: inline-flex;
align-items: center;
gap: 12px;
padding: 0 35px;
height: 56px;
border: 1px solid #000000;
border-radius: 50px;
text-decoration: none;
font-family: 'Cormorant Garamond', serif;
font-weight: 600;
font-size: 20px;
color: #000000;
transition: background-color 0.3s, color 0.3s;
width: fit-content;
}
.btn-outline-dark:hover {
background-color: #000000;
color: #ffffff;
} @media (min-width: 1024px) {
.sb-content-inner {
flex-direction: row;
justify-content: space-between;
align-items: flex-start; }
.sb-desc-col {
display: flex;
flex-direction: column;
align-items: flex-start;
}
} @media (max-width: 1023px) {
.sb-image-wrapper {
height: 50vh;
}
.sb-title {
font-size: 56px;
} .sb-rotating-badge {
width: 120px;
height: 120px;
bottom: 15px; 
right: 15px; 
}
.static-center-logo {
width: 30px;
}
}