/* ── Banner ── */
.smart-agency-scope {
    background-color: var(--primary);
    color: var(--black);
    /* min-height: 100vh; */
    padding: 0px 60px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
.smart-agency-scope .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.smart-agency-scope .logo {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 1.5rem;
    font-family: var(--font_4);
    color: #28282B;
}

.smart-agency-scope .showreel-top {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.smart-agency-scope .play-btn {
    width: 35px;
    height: 35px;
    border: 1px solid var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-agency-scope .nav-menu a {
    text-decoration: none;
    color: var(--black);
    margin-left: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.smart-agency-scope .nav-menu a.active {
    background: var(--black);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
}

/* Hero Layout */
.smart-agency-scope .hero-container {
    display: flex;
    gap: 50px;
    flex-grow: 1;
    align-items: center;
}
.smart-agency-scope .hero-title-area{
    width: 45%;
} 
.smart-agency-scope .hero-content-area{
    width: 55%;
}
/* Animated Title */
.smart-agency-scope .main-title {
    font-size: clamp(5rem, 10vw, 12rem);
    line-height: 1;
    font-weight: 900;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: var(--font_4);
    /* Scroll Animation Link */
    view-timeline-name: --title-scroll;
}

.smart-agency-scope .main-title span {
    display: block;
    animation: expandSpacing linear both;
    animation-timeline: --title-scroll;
    animation-range: entry 0% cover 40%;
}

@keyframes expandSpacing {
    from {
        letter-spacing: -2px;
    }

    to {
        letter-spacing: 1.2rem;
    }
}

/* Slider Styling */
.smart-agency-scope .swiper {
    width: 100%;
    height: 400px;
    background: #eee;
}

.smart-agency-scope .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.smart-agency-scope .swiper-button-next,
.smart-agency-scope .swiper-button-prev {
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
}

/* Footer elements & Hatched pattern */
.smart-agency-scope .hatched-btn {
    display: inline-block;
    padding: 10px 15px;
    font-weight: 800;
    font-size: 0.75rem;
    border: 1px solid var(--black);
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.1) 2px,
            rgba(0, 0, 0, 0.1) 4px);
}

.smart-agency-scope .info-footer {
    margin-top: 20px;
}

.smart-agency-scope .labels-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.smart-agency-scope .agency-desc {
    font-size: 0.95rem;
    max-width: 400px;
    line-height: 1.4;
    margin-bottom: 30px;
}

.smart-agency-scope .social-links {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

.smart-agency-scope .social-links a {
    color: var(--black);
    text-decoration: none;
}

.smart-agency-scope .showreel-container {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.smart-agency-scope .play-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.smart-agency-scope .play-btn {
    width: 36px;
    height: 36px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.smart-agency-scope .play-btn svg {
    width: 16px;
    fill: var(--white);
    margin-left: 2px;
}

/* Radar Animation Circles */
.smart-agency-scope .radar-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    animation: radarPulse 2s infinite linear;
    opacity: 0;
}

.smart-agency-scope .radar-circle:nth-child(2) {
    animation-delay: 0.6s;
}

.smart-agency-scope .radar-circle:nth-child(3) {
    animation-delay: 1.2s;
}

@keyframes radarPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

.smart-agency-scope .showreel-text {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
}

/* --- NAVIGATION & DROPDOWNS --- */
.smart-agency-scope .main-nav {
    display: flex;
    gap: 10px;
}

.smart-agency-scope .nav-item-wrapper {
    position: relative;
    padding: 10px 0;
}

.smart-agency-scope .nav-item {
    text-decoration: none;
    color: var(--black);
    font-weight: 700;
    font-size: 14px;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.smart-agency-scope .nav-item.active {
    background: var(--black);
    color: var(--white);
    border-radius: 4px;
}

/* Dropdown Logic */
.smart-agency-scope .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black);
    min-width: 160px;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.smart-agency-scope .dropdown-menu a {
    color: var(--white);
    text-decoration: none;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
}

.smart-agency-scope .dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.smart-agency-scope .nav-item-wrapper:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.smart-agency-scope .nav-item-wrapper:hover .nav-item:not(.active) {
    color: rgba(0, 0, 0, 0.6);
}
/*
    * SCROLL DRIVER
    * Height = how much total scroll we give for all transitions.
    * 400vh gives us plenty of room for 2 slide transitions + holds.
*/
.scroll-driver {
    height: 400vh;
    position: relative;
}

/* Sticky wrapper — clips panels sliding in from below */
.scroll-sticky-wrap {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

/* Every panel: absolutely stacked, full size */
.slide-section {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100vh;
    will-change: transform;
}

/* Z-index layering */
/* .panel-integrity {
    z-index: 1;
    transform: translateY(0);
}

.panel-community {
    z-index: 2;
    transform: translateY(100%);
}

.panel-safety {
    z-index: 3;
    transform: translateY(100%);
} */

/* ── Panel layout ── */
.panel-inner {
    display: flex;
    width: 100%;
    height: 100vh;
}

.content-side {
    width: 50%;
    background-color: #FFC107;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.image-side {
    width: 50%;
    overflow: hidden;
}

.image-side .img-block {
    width: 100%;
    height: 100%;
    display: block;
}

/* Placeholder image blocks — swap src on .image-side img for real photos */
.img-1 {
    background: linear-gradient(160deg, #dce8f0 0%, #b0c8d8 100%);
}

.img-2 {
    background: linear-gradient(160deg, #d4e6f0 0%, #a8c4d8 100%);
}

.img-3 {
    background: linear-gradient(160deg, #ccddf0 0%, #98b8d0 100%);
}

.inner-content {
    max-width: 420px;
}

.section-title {
    font-family: var(--font_1);
    font-size: clamp(2.8rem, 4.5vw, 5rem);
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1;
    margin: 0 0 30px 0;
}

.section-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0 0 60px 0;
}

.cta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background-color: transparent;    
    padding: 15px 15px;
    border-radius: 4px;
    transition: 350ms;
}
.cta-link:hover{
    background-color: #1a1a1a;
    color: white;
}

/* ── Footer ── */
.smart-footer-scope {
    padding: 100px 60px 40px 60px;
    box-sizing: border-box;
    color: var(--black);

    /* Sticky/Fixed Logic */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    /* height: 460px; */
    /* Set a specific height */
    z-index: 1;
    /* Keep it behind the main content */
}

/* Contact Heading - Static Spacing */
.smart-footer-scope .contact-heading {
    font-size: 70px;
    font-family: var(--font_4);
    letter-spacing: 2px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
    text-transform: uppercase;
}

/* Navigation Row */
.smart-footer-scope .footer-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.smart-footer-scope .social-links a {
    text-decoration: none;
    color: var(--black);
    font-family: var(--font_4);
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 18px;
    margin-right: 25px;
    transition: opacity 0.3s;
}

.smart-footer-scope .social-links a:hover {
    opacity: 0.6;
}

.smart-footer-scope .contact-link {
    font-weight: 800;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font_4);
    letter-spacing: 4px;
    cursor: pointer;
}

/* Bottom Bar */
.smart-footer-scope .footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
}

.smart-footer-scope .footer-logo {
    font-weight: 900;
    letter-spacing: 4px;
    font-size: 18px;
    font-family: var(--font_4);
}

.smart-footer-scope .copyright-text {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.8;
    font-family: var(--font_2);
}

.smart-footer-scope .scroll-top-btn {
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .smart-footer-scope {
        padding: 60px 20px 30px 20px;
    }

    .smart-footer-scope .footer-nav-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.position-relative {
    position: relative;
}
.z-index-2 {
    z-index: 2;     
}
.m-bottom-460{
    margin-bottom: 460px !important;
}
.smart-pixel-scope .work-social-grid {
    display: flex;        
    /* Matching visual ratio */
    background: var(--white);
    border-top: 1px solid var(--black);
    width: 100%;
}

/* Hatched Header Pattern */
.smart-pixel-scope .hatched-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    border: 1px solid var(--black);
    margin-bottom: 25px;
    background-image: repeating-linear-gradient(45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.08) 2px,
            rgba(0, 0, 0, 0.08) 4px);
}

.smart-pixel-scope .header-title {
    font-family: var(--font_4);
    font-size: 20px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.text-hover{
    /* Fallback/Initial letter color */
    display: inline-block;
    cursor: pointer;

    /* 2. Create the sliding background */
    /* We use a gradient: 50% initial color, 50% hover color */
    background: linear-gradient(to right, #000 50%, #f51212 50%);
    background-size: 200% 100%;
    background-position: 0% 0%;
    /* Shows the black part first */

    /* 3. Clip the background to the text only */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Makes standard text color invisible */

    /* 4. Smooth transition */
    transition: background-position 1s ease !important;
}

/* 5. Hover state: Move the background to the right */
.text-hover:hover {
    background-position: -100% 0%;
}

/* Left Column */
.smart-pixel-scope .work-column {
    padding: 60px;
    border-right: 1px solid var(--black);
    width: 60%;    
}

.smart-pixel-scope .workSwiper {
    width: 100%;
    padding-bottom: 20px;
    overflow: hidden;
}

.smart-pixel-scope .swiper-slide img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    display: block;
}

.smart-pixel-scope .slider-controls {
    display: flex;
    gap: 15px;
    font-weight: bold;
    cursor: pointer;
}

/* Right Column (Social) */
.smart-pixel-scope .social-column {
    background-color: var(--primary);
    padding: 60px;
    display: flex;
    flex-direction: column;
    width: 40%;
}

.smart-pixel-scope .huge-social-links {
    margin-top: 30px;
}

.smart-pixel-scope .huge-social-links a {
    display: block;
    font-family: var(--font_4);
    font-size: 4rem;
    font-weight: bold;
    color: var(--black);
    text-decoration: none;
    line-height: 1.1;
    margin-bottom: 5px;
    transition: transform 0.3s ease;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .smart-pixel-scope .work-social-grid {
        grid-template-columns: 1fr;
    }

    .smart-pixel-scope .work-column {
        border-right: none;
        border-bottom: 1px solid var(--black);
    }
}
.about-us .mySwiper {
    padding: 0 8%;
}

.about-us .mySwiper .swiper-slide {
    transition: 0.4s ease;
}

.about-us .mySwiper .swiper-slide-prev,
.about-us .mySwiper .swiper-slide-next {
    transform: scale(0.85);
    opacity: 0.9;
}

.about-us .mySwiper .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
}
/* --- SECTION 1: WHO WE ARE --- */
.who-we-are-section {
    padding: 80px 0px;
    background: #fff;
}

.who-we-are-section .who-we-are-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

.who-we-are-section .who-we-are-section__main-title {
    font-size: 80px;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 0.9;
    font-family: var(--font_4);
    letter-spacing: -2px;
}

.who-we-are-section .who-we-are-section__intro {
    font-size: 18px;
    color: #333;
    max-width: 500px;
    margin-bottom: 60px;
    line-height: 1.4;
}

.who-we-are-section .who-we-are-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.who-we-are-section .who-we-are-section__card-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    font-family: var(--font_4);
}

.who-we-are-section .who-we-are-section__card-text {
    font-size: 18px;
    color: #28282B;
    line-height: 1.6;
    font-family: var(--font_2);
}

/* --- SECTION 2: VALUES --- */
.values-section {
    padding: 100px 0px;
    background: #fff;
    /* border-top: 1px solid #eee; */
}

.values-section .values-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.values-section .values-section__left {
    flex: 0 0 35%;
}

.values-section .values-section__title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    font-family: var(--font_4);
}

.values-section .values-section__right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.values-section .values-section__item-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 10px;
    font-family: var(--font_4);
}

.values-section .values-section__item-text {
    font-size: 18px;
    line-height: 1.5;
    color: #28282B;
}

/* --- SECTION 3: TEAM --- */
.team-section {    
    background: #fff;
    padding: 0px 0px;
}
.team-section .team-container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    box-sizing: border-box;
}

.team-section .team-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-section .team-section__member {
    background: #fff;
    line-height: 0;
}

.team-section .team-section__member img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%);
}

.team-section .team-section__cta {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.team-section .team-section__cta-title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    font-family: var(--font_4);
}

.team-section .team-section__cta-link {
    color: #000;
    text-decoration: none;
    font-weight: 800;
    border-bottom: 2px solid #000;
    display: inline-block;
    align-self: flex-start;
    padding-bottom: 2px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .who-we-are-section .who-we-are-section__grid,
    .values-section .values-section__container,
    .values-section .values-section__right,
    .team-section .team-section__grid {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}
/* Parent Class Scoping */
.custom-client-section {
    width: 100%;
    background-color: #ffffff;
    padding: 60px 0px;
    box-sizing: border-box;
}

.custom-client-section .custom-client-section__container {
    display: flex;
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    align-items: flex-start;
}

/* Header Styling */
.custom-client-section .custom-client-section__header {
    flex: 0 0 40%;
    /* Takes up 25% of the width */
}

.custom-client-section .custom-client-section__title {
    font-size: 64px;
    font-weight: 900;
    margin: 0;
    letter-spacing: -2px;
    line-height: 1;
    color: #000;
    text-transform: uppercase;
    font-family: var(--font_4);
    /* Mimicking the condensed look */
}

/* Grid Styling */
.custom-client-section .custom-client-section__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Creates the outer borders of the grid */
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.custom-client-section .custom-client-section__item {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    background: #fff;
    /* Creates the inner borders */
    border-right: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

/* Logo Placeholder Styling */
.custom-client-section .custom-client-section__item span {
    font-weight: bold;
    color: #000;
    text-align: center;
    font-size: 14px;
    /* If using images, use max-width: 100% and height: auto */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-client-section .custom-client-section__container {
        flex-direction: column;
    }

    .custom-client-section .custom-client-section__header {
        margin-bottom: 40px;
    }

    .custom-client-section .custom-client-section__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Scoped Parent Container */
.custom-contact-section {
    padding: 0px 0px 80px 0px;
    background-color: #ffffff;
    text-align: center;
}

.custom-contact-section .custom-contact-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

/* Heading Styling */
.custom-contact-section .custom-contact-section__main-heading {
    font-size: 84px;
    font-weight: 900;
    margin-bottom: 80px;
    color: #000;
    text-transform: uppercase;
    text-align: start;
    font-family: var(--font_4);
    letter-spacing: -2px;
}

.custom-contact-section .custom-contact-section__highlight {
    color: #FFB400;
    /* Yellow highlight color from image */
}

/* Grid Layout */
.custom-contact-section .custom-contact-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Card Styling */
.custom-contact-section .custom-contact-section__illustration {
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-contact-section .custom-contact-section__illustration img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.custom-contact-section .custom-contact-section__location-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #000;
}

.custom-contact-section .custom-contact-section__address {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin-bottom: 25px;
}

.custom-contact-section .custom-contact-section__map-link {
    font-size: 14px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.custom-contact-section .custom-contact-section__map-link:hover {
    border-bottom: 1px solid #000;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .custom-contact-section .custom-contact-section__main-heading {
        font-size: 56px;
    }

    .custom-contact-section .custom-contact-section__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}
/* Scoped Parent Container */
.custom-services-grid {
    width: 100%;
    background-color: #000;
    margin: 0;
    padding: 0;
}

.custom-services-grid .custom-services-grid__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0px 0px;
    width: 100%;
}

/* Individual Item Styling */
.custom-services-grid .custom-services-grid__item {
    position: relative;
    /* flex: 1; */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    transition: flex 0.5s ease;
    cursor: pointer;
}

/* Initial Dark Overlay */
.custom-services-grid .custom-services-grid__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darker by default */
    transition: background 0.4s ease;
    z-index: 1;
}

/* Content Container */
.custom-services-grid .custom-services-grid__content {
    position: relative;
    z-index: 2;
}

.custom-services-grid .custom-services-grid__number {
    display: block;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 20px;
    opacity: 0.8;
}

.custom-services-grid .custom-services-grid__title {
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.custom-services-grid .custom-services-grid__description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 300px;
    color: #ccc;
}

.custom-services-grid .custom-services-grid__link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.3s ease;
}

/* HOVER EFFECTS */

/* 1. Item expands slightly on hover */
.custom-services-grid .custom-services-grid__item:hover {
    flex: 1.2;
}

/* 2. Overlay becomes lighter to reveal background image */
.custom-services-grid .custom-services-grid__item:hover .custom-services-grid__overlay {
    background: #F3A930;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .custom-services-grid .custom-services-grid__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    .custom-services-grid .custom-services-grid__item {
        min-height: 400px;
    }
}
.title-stroke {
    color: #fff;
    -webkit-text-stroke: 1px #000;
}
.title-back {
    font-weight: 600;
    font-size: 8vw;
    text-transform: uppercase;
    line-height: 100px;
    margin-bottom: -35px;
    letter-spacing: 1px;
}
/* Scoped Parent Container */
.custom-stack-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0px;
    box-sizing: border-box;
}

.custom-stack-section .custom-stack-section__container {    
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
}

/* Header Styling */
.custom-stack-section .custom-stack-section__header {
    flex: 0 0 25%;
}

.custom-stack-section .custom-stack-section__main-title {
    font-size: 80px;
    font-weight: 900;
    margin: 0;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: var(--font_4);
}

/* Content Columns Styling */
.custom-stack-section .custom-stack-section__content {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.custom-stack-section .custom-stack-section__col-title {
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 30px 0;
    text-transform: uppercase;
    font-family: var(--font_4);
}

.custom-stack-section .custom-stack-section__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-stack-section .custom-stack-section__list-item {
    font-size: 16px;
    font-weight: 500;
    padding: 15px 0;
    color: #000;
    border-bottom: 1px solid #e0e0e0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Handle mixed casing for specific items like 'Progressive Apps' */
.custom-stack-section .custom-stack-section__list-item:nth-child(2) {
    text-transform: none;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .custom-stack-section .custom-stack-section__container {
        flex-direction: column;
    }

    .custom-stack-section .custom-stack-section__header {
        margin-bottom: 50px;
    }

    .custom-stack-section .custom-stack-section__content {
        grid-template-columns: 1fr;
        width: 100%;
    }
}
/* Scoped Parent Container */
.custom-quote-section {
    width: 100%;
    padding: 120px 0px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #F3A930;
}

.custom-quote-section .custom-quote-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Author Section Styling */
.custom-quote-section .custom-quote-section__author {
    flex: 0 0 200px;
    padding-top: 15px;
    /* Alignment with the quote text */
}

.custom-quote-section .custom-quote-section__name {
    font-family: var(--font_4);
    font-size: 18px;
    font-weight: 900;
    margin: 0;
    color: #000;
    letter-spacing: 0.5px;
}

.custom-quote-section .custom-quote-section__role {
    font-family: var(--font_4);
    font-size: 14px;
    font-weight: 700;
    margin: 5px 0 0 0;
    color: rgba(0, 0, 0, 0.5);
    /* Faded black for the role */
    text-transform: uppercase;
}

/* Quote Section Styling */
.custom-quote-section .custom-quote-section__content {
    flex: 1;
    position: relative;
}

.custom-quote-section .custom-quote-section__text {
    font-family: var(--font_4);
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    margin: 0;
    color: #000;
    text-transform: uppercase;
    position: relative;
    padding: 0 40px;
}

/* Pseudo-elements for Quote Marks */
.custom-quote-section .custom-quote-section__text::before {
    content: '“';
    position: absolute;
    left: -10px;
    top: 0;
    font-size: 60px;
}

.custom-quote-section .custom-quote-section__text::after {
    content: '”';
    position: absolute;
    right: 0;
    bottom: -20px;
    font-size: 60px;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .custom-quote-section .custom-quote-section__container {
        flex-direction: column;
        gap: 40px;
    }

    .custom-quote-section .custom-quote-section__text {
        font-size: 36px;
        padding: 0 20px;
    }

    .custom-quote-section .custom-quote-section__author {
        flex: none;
    }
}
/* Scoped Parent Container */
.custom-services-clients-section {
    width: 100%;
    background-color: #000000;
    /* Solid black background */
    padding: 100px 0px;
    box-sizing: border-box;
    color: #ffffff;
    font-family: var(--font_4);
}

.custom-services-clients-section .custom-services-clients-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* Left Content Styling */
.custom-services-clients-section .custom-services-clients-section__content {
    flex: 0 0 45%;
}

.custom-services-clients-section .custom-services-clients-section__main-title {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 900;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    font-family: var(--font_4);
}

.custom-services-clients-section .custom-services-clients-section__description {
    font-size: 16px;
    line-height: 1.5;
    color: #cccccc;
    margin-bottom: 50px;
    max-width: 480px;
}

.custom-services-clients-section .custom-services-clients-section__cta {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 5px;
    display: inline-block;
    transition: opacity 0.3s;
}

.custom-services-clients-section .custom-services-clients-section__cta:hover {
    opacity: 0.7;
}

/* Right Grid Styling */
.custom-services-clients-section .custom-services-clients-section__grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Creates the outer borders of the grid */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-services-clients-section .custom-services-clients-section__grid-item {
    /* height: 180px; */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.custom-services-clients-section .custom-services-clients-section__grid-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.custom-services-clients-section .custom-services-clients-section__grid-item span {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .custom-services-clients-section .custom-services-clients-section__container {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-services-clients-section .custom-services-clients-section__main-title {
        font-size: 42px;
    }

    .custom-services-clients-section .custom-services-clients-section__grid {
        width: 100%;
        margin-top: 60px;
    }
}

@media (max-width: 600px) {
    .custom-services-clients-section .custom-services-clients-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}
/* Scoped Parent Wrapper */
.service-details-section {
    padding: 100px 0px;
    background-color: #ffffff;
    color: #000000;
}

.service-details-section .service-details-section__container {
    max-width: 100%;
    padding-left: 60px;
    padding-right: 60px;
    margin: 0 auto;
}

/* Header Styling */
.service-details-section .service-details-section__header {
    margin-bottom: 80px;
}

.service-details-section .service-details-section__main-title {
    font-size: 82px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 40px 0;
    letter-spacing: -2px;
    text-transform: uppercase;
    font-family: var(--font_4);
}

.service-details-section .service-details-section__intro {
    font-size: 18px;
    line-height: 1.5;
    max-width: 500px;
    margin: 0;
    font-weight: 500;
}

/* Grid Layout */
.service-details-section .service-details-section__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Individual Item Styling */
.service-details-section .service-details-section__sub-title {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    font-family: var(--font_4);
}

.service-details-section .service-details-section__text {
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-details-section .service-details-section__main-title {
        font-size: 60px;
    }

    .service-details-section .service-details-section__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}
.footer-logo-space {
    font-weight: bold;
    /* Adjust as needed */
    text-transform: uppercase;
    /* Ensures it stays capitalized */
    letter-spacing: 0.5em;
    /* This creates the 'S M A R T' look */
    text-align: center;
    /* To offset the extra space added to the last letter: */
    padding-left: 0.5em;
}