
.custom-services-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
    color: #fff;
    padding-top: 80px;
}

.bg-top-layer {
    position: absolute;
    top: 0; left: 0; width: 100%;
    height: 600px; /* Adjust to hit 1/3 of first row */
    background-color: #000;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.bg-bottom-layer {
    position: absolute;
    top: 600px; left: 0; width: 100%; bottom: 0;
    background-color: #0061FF; /* Blue section */
    z-index: -2;
}

.widget-container {
    margin: 0 auto;
    padding: 0 20px;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.service-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.label-icon { width: 20px; height: auto; }

.main-heading {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    max-width: 400px;
    margin: 0;
}

.hero-right {
    max-width: 450px;
    text-align: right;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
}

.dashed-circles {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}
.dashed-circles span {
    width: 40px; height: 40px;
    border: 1px dashed rgba(255,255,255,0.3);
    border-radius: 50%;
}

/* Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 100px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    padding: 40px;
    color: #333;
    position: relative;
    transition: all 0.4s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.card-inner { position: relative; z-index: 2; height: 100%; }

.card-bg-watermark {
    position: absolute;
    top: 0; right: 0;
    opacity: 0.05;
    width: 120px;
    z-index: 1;
}

.card-icon {
    font-size: 32px;
    color: #0061FF;
    margin-bottom: 20px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 25px;
}

.card-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hover State Logic */
.service-card:hover {
    background: linear-gradient(90deg, #01183C 0%, #000000 100%);
    color: #fff;
    transform: translateY(-5px);
}

.service-card:hover .card-desc { color: rgba(255,255,255,0.7); }
.service-card:hover .card-icon { color: #fff; }
.service-card:hover .card-link { color: #fff; }

/* Marquee Section */
.marquee-section {
    position: relative;
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Static non-moving background */
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: #0061FF;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee-scroll linear infinite;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.marquee-item {
    font-size: 80px;
    font-weight: 900;
    text-transform: uppercase;
    padding: 0 40px;
}

.m-solid { color: #fff; }
.m-outline {
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.m-dot {
    font-size: 80px;
    color: #fff;
}

@media (max-width: 991px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-header { flex-direction: column; }
    .hero-right { text-align: left; max-width: 100%; margin-top: 20px; }
}

@media (max-width: 767px) {
    .services-grid { grid-template-columns: 1fr; }
    .main-heading { font-size: 32px; }
    .marquee-item { font-size: 40px; }
}
