body {
    margin: 0;
    padding: 0;
    font-family: "Urbanist", sans-serif;
    box-sizing: border-box;
}

.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Modal Card */
.custom-modal-card {
    background: #FFFFFF;
    padding: 50px 40px;
    border-radius: 30px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.custom-modal-overlay.show {
    display: flex;
}

.custom-modal-overlay.show .custom-modal-card {
    transform: scale(1);
}

/* Icons */
.custom-modal-icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.icon-success {
    background: #ECFDF5;
    color: #10B981;
}

.icon-error {
    background: #FEF2F2;
    color: #EF4444;
}

.custom-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
}

.custom-modal-text {
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 30px;
}

.custom-modal-btn {
    width: 100%;
    padding: 15px;
    background: #0F172A;
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.custom-modal-btn:hover {
    background: #1E40AF;
}

.preloader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0A162F;
    /* Match your corporate dark theme */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    /* Ensure it stays above everything */
    transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Geometric Box Animation */
.preloader-architecture-box {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 30px;
}

.preloader-line {
    position: absolute;
    background: #3B82F6;
    /* Your corporate blue */
    transition: all 0.5s ease;
}

.preloader-line-top {
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    animation: drawTop 2s infinite;
}

.preloader-line-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 0;
    animation: drawRight 2s infinite;
    animation-delay: 0.5s;
}

.preloader-line-bottom {
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    animation: drawBottom 2s infinite;
    animation-delay: 1s;
}

.preloader-line-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 0;
    animation: drawLeft 2s infinite;
    animation-delay: 1.5s;
}

@keyframes drawTop {

    0%,
    100% {
        width: 0;
    }

    50% {
        width: 100%;
    }
}

@keyframes drawRight {

    0%,
    100% {
        height: 0;
    }

    50% {
        height: 100%;
    }
}

@keyframes drawBottom {

    0%,
    100% {
        width: 0;
    }

    50% {
        width: 100%;
    }
}

@keyframes drawLeft {

    0%,
    100% {
        height: 0;
    }

    50% {
        height: 100%;
    }
}

/* Text Animation */
.preloader-text-container {
    font-family: 'Urbanist', sans-serif;
    margin-bottom: 20px;
}

.preloader-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    margin: 0;
}

/* The "Filling" Text Effect */
.preloader-brand::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    color: #FFFFFF;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #3B82F6;
    animation: textFill 3s infinite alternate cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes textFill {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.preloader-status {
    font-size: 0.7rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-top: 10px;
    font-weight: 600;
}

/* Progress Bar at Bottom */
.preloader-progress-wrap {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.preloader-progress-bar {
    width: 100%;
    height: 100%;
    background: #3B82F6;
    transform: translateX(-100%);
    animation: progressMove 3s infinite linear;
}

@keyframes progressMove {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Fade Out Class */
.preloader-hidden {
    opacity: 0;
    visibility: hidden;
}


/* Container & Wrapper */
.main-nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    font-family: 'Urbanist', sans-serif;
    box-sizing: border-box;
}

.main-nav-logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.main-nav-logo-img {
    width: 50%;
}

.main-nav-links-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.main-nav-link-item {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.main-nav-link-item:hover {
    opacity: 1;
}

.main-nav-button-cta {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid #0A162F;
    color: #0A162F;
    border-radius: 4px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.main-nav-button-cta:hover {
    background: #0A162F;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    /* Hidden on desktop */
    font-size: 28px;
    cursor: pointer;
    color: #0A162F;
}

/* Mobile Responsive Styles */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        /* Show hamburger on mobile */
    }

    .main-nav-links-wrapper {
        position: fixed;
        top: 75px;
        /* Adjust based on your nav height */
        left: -100%;
        /* Hide off-screen */
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        /* height: calc(100vh - 70px); */
        gap: 30px;
        padding-top: 40px;
        padding-bottom: 40px;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        align-items: center;
    }

    /* Class to show menu via JavaScript */
    .main-nav-links-wrapper.active {
        left: 0;
    }

    .main-nav-logo-img {
        width: 120px;
        /* Fixed width for mobile so it doesn't shrink too much */
    }
}

.home-hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    /* Adjusted for better mobile scaling */
    display: flex;
    align-items: center;
    padding: 0 8%;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.home-hero-bg-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-hero-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.87) 40%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.home-hero-content-box {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.home-hero-intro-label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;

}



.home-hero-intro-line {
    width: 40px;
    height: 1px;
    background-color: #FFFFFF;

}

.home-hero-main-heading {
    font-size: clamp(27px, 5vw, 64px);
    color: #FFFFFF;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    min-height: 2.5em;
}

.home-hero-dynamic-text {
    color: #FFFFFF;
}

.cursor {
    font-weight: 300;
    color: #FFFFFF;
    animation: blink 0.7s infinite;
    margin-left: 5px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.home-hero-sub-heading {
    font-size: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 600;
    max-width: 1050px;
}

.home-hero-cta-btn {
    display: inline-block;
    text-decoration: none;
    color: #0A162F;
    background-color: #fff;
    padding: 16px 35px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 17px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.home-hero-cta-btn:hover {
    background-color: #0A162F;
    color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .home-hero-section {
        padding: 0 5%;
        text-align: center;
        justify-content: center;
    }

    .home-hero-intro-label {
        justify-content: center;
    }

    .home-hero-sub-heading {
        margin-left: auto;
        margin-right: auto;
    }

    .home-hero-sub-heading {
        font-size: 16px;
    }
}





.home-about-section {
    padding: 120px 0;
    background: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.home-about-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Intro Grid */
.home-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /* margin-bottom: 100px; */
}

.home-about-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: #008080;
    background-color: #f0f8f8;
    padding: 6px 14px;
    border-radius: 4px;
}

.home-about-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -1.5px;
}

.home-about-text-group {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: justify;
    max-width: 600px;
}

.home-about-para-primary {
    font-size: 20px;
    color: #334155;
    line-height: 1.3;
    font-weight: 600;
}

.home-about-para-secondary {
    font-size: 20px;
    color: #334155;
    line-height: 1.3;
    font-weight: 600;
}

/* Visual Side */
.home-about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.home-about-img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.home-about-floating-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #0F172A;
    color: #FFFFFF;
    padding: 24px;
    border-radius: 20px;
    text-align: center;
}

.home-about-badge-title {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1E40AF;
}

.home-about-badge-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Pillar Section */
.home-about-pillars {
    border-top: 1px solid #F1F5F9;
    /* padding-top: 80px; */
}

.home-about-pillar-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 20px;
}

.home-about-pillar-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
    white-space: nowrap;
}

.home-about-pillar-line {
    width: 100%;
    height: 1px;
    background: #E2E8F0;
}

.home-about-pillar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.home-about-pillar-item {
    padding: 20px;
    transition: all 0.3s ease;
}

.home-about-pillar-icon {
    width: 48px;
    height: 48px;
    background: #EFF6FF;
    color: #1E40AF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    transition: 0.3s;
}

.home-about-pillar-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.home-about-pillar-desc {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.6;
    font-weight: 600;
    text-align: left;
}

.home-about-pillar-item:hover .home-about-pillar-icon {
    background: #1E40AF;
    color: #FFFFFF;
    transform: scale(1.1);
}

/* Responsive Logic */
@media (max-width: 1024px) {
    .home-about-grid {
        grid-template-columns: 1fr;
    }

    .home-about-pillar-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-about-heading {
        font-size: 2.3rem;
    }

    .home-about-img {
        height: 400px;
    }

    .home-about-para-primary {
        text-align: left;
        font-size: 17px;
    }

    .home-about-para-secondary {
        font-size: 17px;
    }
}

@media (max-width: 640px) {
    .home-about-pillar-grid {
        grid-template-columns: 1fr;
    }

    .home-about-container {
        padding: 0px 20px;
    }
}


.home-msp-section {
    padding: 120px 0;
    background: #F8FAFC;
    /* Very light subtle gray to differentiate from white sections */
    font-family: 'Urbanist', sans-serif;
}

.home-msp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styling */
.home-msp-header {
    margin-bottom: 80px;
}

.home-msp-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.home-msp-main-heading {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Grid Layout */
.home-msp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    /* Removing gap to use borders for structure */
}

.home-msp-item {
    background: transparent;
    padding: 60px 20px;
    border-right: 1px solid #E2E8F0;
    transition: all 0.4s ease;
    position: relative;
}

.home-msp-item:last-child {
    border-right: none;
}

/* Corporate Accent Line */
.home-msp-accent-line {
    position: absolute;
    top: 0;
    left: 40px;
    width: 40px;
    height: 4px;
    background: #CBD5E1;
    transition: all 0.4s ease;
}

.home-msp-item:hover {
    background: #FFFFFF;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.home-msp-item:hover .home-msp-accent-line {
    width: 80px;
    background: #1E40AF;
    /* Corporate Blue on hover */
}

/* Content Details */
.home-msp-label {
    display: block;
    font-size: 2.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748B;
    margin-bottom: 24px;
    letter-spacing: 1px;
    opacity: 0.3;
}

.home-msp-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.home-msp-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #000000;
    margin: 0;
    text-align: left;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .home-msp-grid {
        grid-template-columns: 1fr;
    }

    .home-msp-item {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 40px 0;
    }

    .home-msp-accent-line {
        left: 0;
    }

    .home-msp-main-heading {
        font-size: 2.4rem;
    }
}



.home-service-section {
    padding: 120px 0;
    background: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.home-service-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.home-service-header {
    margin-bottom: 80px;
    max-width: 900px;
}

.home-service-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.home-service-lead {
    font-size: 22px;
    font-weight: 600;
    color: #2c2e32;
    line-height: 1.6;
}

.home-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.home-service-card {
    background: #F8FAFC;
    border-radius: 24px;
    overflow: hidden;
    height: 500px;
    display: flex;
    flex-direction: column;
    border: 1px solid #E2E8F0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-service-image-box {
    width: 100%;
    height: 40%;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.home-service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.8) contrast(1.1);
    transition: transform 0.8s ease;
}

.home-service-content {
    padding: 40px 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.6s ease;
}

.home-service-card:hover {
    border-color: #1E40AF;
    box-shadow: 0 30px 60px -15px rgba(30, 64, 175, 0.15);
}

.home-service-card:hover .home-service-image-box {
    height: 100%;
}

.home-service-card:hover .home-service-img {
    transform: scale(1.1);
}

.home-service-card:hover .home-service-content {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(5px);
    margin-top: -500px;
    justify-content: center;
    color: #FFFFFF;
}

.home-service-title {
    font-size: 25;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.home-service-card:hover .home-service-title {
    color: #FFFFFF;
}

.home-service-desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
    transition: color 0.4s ease;
    text-align: left;
}

.home-service-card:hover .home-service-desc {
    color: #CBD5E1;
}

.home-service-btn {
    margin-top: auto;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1E40AF;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-service-card:hover .home-service-btn {
    color: #FFFFFF;
    padding: 20px;
    background-color: #0A162F;
    gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-service-grid {
        grid-template-columns: 1fr;
    }

    .home-service-card {
        height: 450px;
    }

    .home-service-container {
        padding: 0px 20px;
    }

    .home-service-lead {
        font-size: 17px;
    }
}



.home-cat-section {
    padding: 120px 0;
    background: #FFFFFF;
    width: 100%;
    overflow: hidden;
}

.home-cat-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styling */
.home-cat-header {
    margin-bottom: 80px;
    max-width: 800px;
}

.home-cat-subtitle {
    font-family: 'Urbanist', sans-serif;
    color: #0A162F;
    /* Corporate Blue */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 16px;
}

.home-cat-main-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 80px;
    font-weight: 600;
    color: #0F172A;
    /* line-height: 1.1; */
    margin: 0;
}

.home-cat-title-thin {
    font-weight: 300;
    color: #94A3B8;
}

/* Grid Layout */
.home-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card Styling */
.home-cat-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 40px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
}

.home-cat-card-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #0000009e;
    top: 0;
    left: 0;
    border-radius: 24px;
}

.home-cat-card:hover {
    background: #FFFFFF;
    border-color: #0A162F;
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(30, 64, 175, 0.1);
}

.home-cat-card:nth-child(1) {
    background-image: url(https://images.unsplash.com/photo-1590411585839-e8c119cb393a?q=80&w=1374&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

.home-cat-card:nth-child(2) {
    background-image: url(https://images.unsplash.com/photo-1497366754035-f200968a6e72?q=80&w=1469&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

.home-cat-card:nth-child(3) {
    background-image: url(https://images.unsplash.com/photo-1599619351208-3e6c839d6828?q=80&w=1472&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

.home-cat-card:nth-child(4) {
    background-image: url(https://images.unsplash.com/photo-1587745890135-20db8c79b027?q=80&w=1470&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
    background-size: cover;
    background-position: center;
}

.home-cat-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.home-cat-number {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    transition: color 0.3s ease;
}

.home-cat-icon {
    font-size: 2.5rem;
    color: #ffffff;
    transition: all 0.3s ease;
}

.home-cat-card:hover .home-cat-icon {
    color: #ffffff;
    transform: scale(1.1);
}

.home-cat-card:hover .home-cat-number {
    color: #ffffff;
}

.home-cat-card-content {
    position: relative;
    z-index: 10;
}

/* Card Content */
.home-cat-card-title {
    font-family: 'Urbanist', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.home-cat-card-desc {
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.6;
    font-weight: 600;
    max-width: 400px;
    margin-bottom: 0px;
}

/* Footer & Link */
.home-cat-card-footer {
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid #ffffff;
    position: relative;
    z-index: 10;
}

.home-cat-link {
    font-family: 'Urbanist', sans-serif;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.home-cat-card:hover .home-cat-link {
    color: #ffffff;
    gap: 14px;
}

/* Responsive Grid Adjustments */
@media (max-width: 1024px) {
    .home-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .home-cat-grid {
        grid-template-columns: 1fr;
    }

    .home-cat-main-title {
        font-size: 2.2rem;
    }

    .home-cat-card {
        min-height: auto;
    }
}





.why-choose-section {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
    position: relative;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Reference Image Grid Pattern */
.why-choose-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.why-choose-header {
    width: 100%;
    max-width: 1500px;
    position: relative;
    z-index: 5;
    margin-bottom: 60px;
}

.why-choose-label-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    color: #008080;
    /* Tealer shade from reference */
}

.why-choose-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.why-choose-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.why-choose-main-title {
    font-size: 70px;
    font-weight: 600;
    color: #111111;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}

.why-choose-top-desc {
    max-width: 600px;
    font-size: 20px;
    font-weight: 600;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* THE FLEX SYSTEM */
.why-choose-flex-container {
    width: 100%;
    max-width: 1500px;
    display: flex;
    gap: 20px;
    height: 650px;
    position: relative;
    z-index: 10;
    box-sizing: border-box;
}

.why-choose-card {
    flex: 1;
    /* Default unhovered size */
    background-color: #ffffff;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    box-sizing: border-box;
}

/* HOVER STATE: EXPANSION */
.why-choose-card:hover {
    flex: 2.5;
    /* Card expands */
    background-color: #ffffff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.why-choose-card-number {
    position: absolute;
    top: 40px;
    left: 40px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    transition: color 0.5s ease;
}

.why-choose-card:hover .why-choose-card-number {
    color: rgba(0, 0, 0, 0.1);
}

/* Card Media - Top Image */
.why-choose-card-media {
    width: 100%;
    height: 0;
    /* Hidden initially */
    opacity: 0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.6s ease;
    transform: translateY(20px);
}

.why-choose-card:hover .why-choose-card-media {
    height: 270px;
    opacity: 1;
    transform: translateY(0);
}

.why-choose-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-card-content {
    position: relative;
    z-index: 2;
}

.why-choose-card-icon {
    width: 40px;
    height: 40px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 20px;
    color: #111111;
    transition: all 0.3s ease;
}

.why-choose-card:hover .why-choose-card-icon {
    background: #111111;
    color: #ffffff;
}

.why-choose-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.why-choose-card-desc {
    font-size: 20px;
    font-weight: 600;
    color: #212121;
    line-height: 1.6;
    margin: 0;
    max-height: 0;
    /* Hidden initially */
    opacity: 0;
    transition: all 0.6s ease;
    transition-delay: 0.1s;
    transform: translateY(10px);
}

/* HOVER REVEAL: DESC */
.why-choose-card:hover .why-choose-card-desc {
    max-height: 150px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 10px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .why-choose-flex-container {
        height: auto;
        flex-direction: column;
    }

    .why-choose-card {
        height: 200px;
        /* Small collapsed height for mobile */
        flex: none;
    }

    .why-choose-card:hover {
        height: auto;
        flex: none;
    }

    .why-choose-main-title {
        font-size: 42px;
    }
}



.home-process-section {
    padding: 120px 0px 200px 0px;
    background: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    /* overflow: hidden; */
}

.home-process-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.home-process-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 80px auto;
}

.home-process-badge {
    background: #98c5ff;
    color: #0A162F;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.home-process-main-title {
    font-size: 80px;
    font-weight: 600;
    color: #0F172A;
    margin: 24px 0 16px 0;
    margin: 0;
}

.home-process-lead {
    color: #373737;
    line-height: 1.6;
    font-size: 22px;
    font-weight: 600;
    max-width: 1000px;
    margin: 0;
}

/* Grid & Visual Path */
.home-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.home-process-item {
    position: relative;
    transition: all 0.4s ease;
}

.home-process-visual-row {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.home-process-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: #F1F5F9;
    /* Subtle large number */
    line-height: 1;
    transition: color 0.4s ease;
}

.home-process-line {
    flex-grow: 1;
    height: 2px;
    background: #F1F5F9;
    margin-left: 20px;
    position: relative;
    overflow: hidden;
}

/* Animated line effect on hover */
.home-process-line::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0A162F;
    transition: left 0.6s ease;
}

.home-process-item:hover .home-process-line::after {
    left: 0;
}

.home-process-item:hover .home-process-number {
    color: #0A162F;
    transform: translateX(5px);
}

/* Card Content */
.home-process-content {
    background: #F8FAFC;
    padding: 40px 30px;
    border-radius: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid transparent;
    transition: all 0.4s ease;
}

.home-process-item:hover .home-process-content {
    background: #FFFFFF;
    border-color: #E2E8F0;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    transform: translateY(-10px);
}

.home-process-step-title {
    font-size: 35px;
    font-weight: 600;
    color: #0F172A;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.home-process-description {
    color: #666666;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 600;
}

.home-process-icon-box {
    width: 50px;
    height: 50px;
    background: #FFFFFF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1E40AF;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.home-process-item:hover .home-process-icon-box {
    background: #0A162F;
    color: #FFFFFF;
}

/* Responsive */
@media (max-width: 1024px) {
    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 250px;
    }

    .home-process-line {
        display: none;
    }
}

@media (max-width: 640px) {
    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-process-main-title {
        font-size: 2.2rem;
    }
}



.home-cta-island-section {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 40px 100px 40px;
    /* Top, Left, Right padding as requested */
    box-sizing: border-box;
    font-family: 'Urbanist', sans-serif;
}

/* The "Island" Image Container */
.home-cta-image-frame {
    position: relative;
    width: 100%;
    height: 800px;
    /* Controlled height for the slim trend */
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.home-cta-bg-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.home-cta-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
    /* Soft darken */
    z-index: 2;
}

/* --- THE FLOATING GLASS CARD --- */
.home-cta-centered-card {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 750px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
    box-sizing: border-box;
}

.home-cta-card-badge {
    display: inline-block;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.home-cta-card-title {
    font-size: 50px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 20px 0;
}

.home-cta-card-text {
    font-size: 17px;
    color: #ffffff;
    line-height: 1.6;
    margin: 0 0 40px 0;
    font-weight: 600;
}

.home-cta-card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.home-cta-card-button {
    background-color: #0A162F;
    color: #ffffff;
    padding: 20px 45px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.home-cta-card-button:hover {
    transform: translateY(-3px);
    background-color: #222222;
}

.home-cta-card-limit {
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .home-cta-island-section {
        padding: 30px 15px 0 15px;
    }

    .home-cta-image-frame {
        height: 700px;
        /* taller on mobile to fit card */
        border-radius: 24px;
    }

    .home-cta-centered-card {
        width: 90%;
        padding: 40px 24px;
    }

    .home-cta-card-title {
        font-size: 32px;
    }

    .home-cta-card-button {
        padding: 20px;
    }
}





.home-footer-section {
    width: 100%;
    background-color: #ffffff;
    /* White Themed */
    color: #444444;
    font-family: 'Urbanist', sans-serif;
    border-top: 1px solid #eeeeee;
    position: relative;
    overflow: hidden;
    /* Contains the image */
}

/* Main Footer Content (Columns) */
.home-footer-content {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 5;
    /* Above the image */
}

/* Footer Columns */
.home-footer-col {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
}

.home-footer-col-brand {
    flex: 1.5 1 300px;
}

/* Brand & Logo */
.home-footer-logo {
    text-decoration: none;
}

.home-footer-logo img {
    width: 50%;
    margin-bottom: 30px;
}

.home-footer-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #666666;
    max-width: 500px;
    margin: 0 0 30px 0;
    font-weight: 500;
}

/* Column Headings */
.home-footer-heading {
    font-size: 16px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 24px;
}

/* Link Lists */
.home-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.home-footer-link {
    color: #666666;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.home-footer-link:hover {
    color: #111111;
}

/* Newsletter Form */
.home-footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.home-footer-newsletter-input {
    padding: 14px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    color: #444444;
    font-size: 14px;
    font-family: 'Urbanist', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
}

.home-footer-newsletter-input:focus {
    border-color: #111111;
    background-color: #ffffff;
}

.home-footer-newsletter-btn {
    padding: 14px;
    background-color: #111111;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-family: 'Urbanist', sans-serif;
}

.home-footer-newsletter-btn:hover {
    background-color: #333333;
}

/* Footer Bottom (Copyright & Social) */
.home-footer-bottom {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid #0A162F;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 5;
    /* Above the image */
}

.home-footer-copyright {
    font-size: 18px;
    font-weight: 600;
    color: #0A162F;
}

.home-footer-social-links {
    display: flex;
    gap: 20px;
}

.home-footer-social-link {
    color: #0A162F;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.home-footer-social-link:hover {
    color: #111111;
}

/* --- CITYSCAPE IMAGE AT THE BOTTOM --- */
.home-footer-cityscape {
    width: 100%;
    height: 200px;
    position: relative;
}

.home-footer-cityscape img {
    width: 100%;
    height: 500px;
    position: absolute;
    z-index: 1;
    top: -100%;
    opacity: 0.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .home-footer-content {
        padding: 60px 0;
        gap: 30px;
    }

    .home-footer-col {
        flex: 1 1 45%;
    }

    .home-footer-col-brand {
        flex: 1 1 100%;
        text-align: center;
        align-items: center;
    }

    .home-footer-desc {
        margin: 0 auto 30px auto;
    }
}

@media (max-width: 768px) {
    .home-footer-bottom {
        flex-direction: column-reverse;
        text-align: center;
    }

    .home-footer-col {
        flex: 1 1 100%;
        text-align: center;
    }

    .home-footer-links {
        align-items: center;
    }

    .home-footer-cityscape img {
        object-fit: cover;
    }
}



.about-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1760503850317-f398353073a3?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
    color: #FFFFFF;
}

.about-hero-section-2 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-image: url('https://images.unsplash.com/photo-1605152276897-4f618f831968?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
    color: #FFFFFF;
}

/* Dark Overlay for proper contrast */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 100%);
    z-index: 1;
}

.about-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.about-hero-content {
    max-width: 800px;
}

/* Minimal Breadcrumb */
.about-hero-breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-hero-parent {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.about-hero-parent:hover {
    color: #FFFFFF;
}

.about-hero-separator {
    margin: 0 10px;
    color: #3B82F6;
}

.about-hero-current {
    color: #FFFFFF;
}

/* Shortened, Bold Heading */
.about-hero-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.about-hero-accent {
    color: #3B82F6;
    /* Modern Bright Blue */
}

.about-hero-lead {
    font-size: 1.3rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
}

/* Bottom Scroll Line Animation */
.about-hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero-scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, #3B82F6, transparent);
    position: relative;
    overflow: hidden;
}

.about-hero-scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(100%);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-section {
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .about-hero-section-2 {
        height: 100vh;
    }

    .about-hero-title {
        font-size: 2.1rem;
    }

    .about-hero-container {
        padding: 0 25px;
    }

    /* .about-hero-container{
        display: flex;
        align-items: center;
        justify-content: center;
    } */
}




.about-us-hero-wrapper {
    width: 100%;
    background-color: #ffffff;
    padding: 100px 0;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-us-main-container {
    width: 90%;
    max-width: 1500px;
    box-sizing: border-box;
}

/* Intro Grid */
.about-us-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: flex-end;
    margin-bottom: 80px;
}

.about-us-title-block {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    height: 100%;
}

.about-us-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: rgb(225, 225, 225);
    padding: 8px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.about-us-badge-dot {
    width: 6px;
    height: 6px;
    background-color: #008080;
    border-radius: 50%;
}

.about-us-badge-text {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #111;
}

.about-us-main-heading {
    font-size: 60px;
    font-weight: 600;
    color: #111;
    line-height: 1;
    margin: 0;
    text-transform: uppercase;
}

.about-us-lead-text {
    font-size: 20px;
    color: #222222;
    line-height: 1.6;
    margin: 0;
    border-left: 2px solid #eee;
    padding-left: 30px;
    font-weight: 600;
}

/* Details Grid */
.about-us-details-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 80px;
}

.about-us-visual-frame {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
}

.about-us-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-us-glass-stat {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-us-stat-value {
    font-size: 32px;
    font-weight: 800;
    color: #111;
}

.about-us-stat-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.about-us-text-stack {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-us-sub-title {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.about-us-paragraph {
    font-size: 20px;
    color: #3a3a3a;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

/* Foundation Bar */
.about-us-foundation-bar {
    background-color: #111;
    padding: 60px;
    border-radius: 40px;
    color: #fff;
}

.about-us-foundation-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-us-icon-ring {
    width: 80px;
    height: 80px;
    border: 3px solid rgba(255, 255, 255, 0.521);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    flex-shrink: 0;
}

.about-us-foundation-text {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    color: rgb(255, 255, 255);
}

/* Responsive Logic */
@media (max-width: 1024px) {

    .about-us-intro-grid,
    .about-us-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-us-main-heading {
        font-size: 60px;
    }

    .about-us-lead-text {
        border-left: none;
        padding-left: 0;
    }

    .about-us-foundation-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-us-hero-wrapper {
        padding: 60px 0;
    }

    .about-us-main-heading {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .about-us-visual-frame {
        height: 350px;
    }

    .about-us-foundation-bar {
        padding: 40px 30px;
    }

    .about-us-foundation-text {
        font-size: 16px;
        text-align: left;
    }
}



.who-are-we-section {
    width: 100%;
    background-color: #ffffff;
    padding: 120px 0;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.who-are-we-container {
    width: 90%;
    max-width: 1500px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: flex-start;
    box-sizing: border-box;
}

/* Visual Column */
.who-are-we-visual-column {
    position: relative;
    padding-top: 40px;
}

.who-are-we-image-wrapper {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 24px;
    overflow: hidden;
    z-index: 2;
}

.who-are-we-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%) contrast(105%);
}

.who-are-we-floating-badge {
    position: absolute;
    top: 40px;
    right: 2%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.who-are-we-floating-badge i {
    font-size: 24px;
    color: #008080;
}

.who-are-we-badge-title {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.who-are-we-badge-sub {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.who-are-we-accent-element {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 2px solid #f0f0f0;
    border-radius: 24px;
    z-index: 1;
}

/* Content Column */
.who-are-we-content-column {
    padding-top: 20px;
}

.who-are-we-eyebrow {
    font-size: 11px;
    font-weight: 800;
    color: #008080;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    display: block;
}

.who-are-we-title {
    font-size: 70px;
    font-weight: 600;
    color: #111;
    margin: 0 0 40px 0;
    text-transform: uppercase;
    line-height: 1;
}

.who-are-we-text-stack {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.who-are-we-paragraph {
    font-size: 20px;
    line-height: 1.7;
    color: #353535;
    margin: 0;
    font-weight: 600;
}

.who-are-we-paragraph-lead {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    line-height: 1.6;
}

.who-are-we-subheading {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
    margin: 0 0 10px 0;
}

.who-are-we-footer-pill-row {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.who-are-we-pill {
    background-color: #98c5ff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 700;
    color: #000000;
    border: 1px solid #eeeeee;
}

/* Responsive Adaptation */
@media (max-width: 1024px) {
    .who-are-we-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .who-are-we-visual-column {
        order: 2;
    }

    .who-are-we-content-column {
        order: 1;
    }

    .who-are-we-image-wrapper {
        height: 450px;
    }

    .who-are-we-floating-badge {
        right: 20px;
    }
}

@media (max-width: 768px) {
    .who-are-we-section {
        padding: 60px 0;
    }

    .who-are-we-title {
        font-size: 48px;
    }

    .who-are-we-paragraph-lead {
        font-size: 18px;
    }

    .who-are-we-paragraph {
        font-size: 17px;
    }

    .who-are-we-footer-pill-row {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .who-are-we-pill {
        font-size: 12px;
        text-align: center;
        width: fit-content;
    }
}


.about-approach-section {
    padding: 100px 0;
    background: #F1F5F9;
    font-family: 'Urbanist', sans-serif;
}

.about-approach-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0px;
}

/* Header: Spanning the full width to feel "Full" */
.about-approach-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 40px;
}

.about-approach-tag {
    display: block;
    color: #1E40AF;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-approach-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin-bottom: 0px;
}

.about-approach-stat {
    text-align: right;
}

.about-approach-stat-num {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: #1E40AF;
    line-height: 1;
}

.about-approach-stat-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748B;
    text-transform: uppercase;
}

/* The Grid: 3 Equal Columns */
.about-approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Styling: Deep and Professional */
.about-approach-card {
    background: #FFFFFF;
    padding: 50px 25px;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    transition: all 0.4s ease;
}

/* Dark Variant for the Middle Card to break the "sameness" */
.about-approach-card-dark {
    background: #0F172A;
    color: #FFFFFF;
}

.about-approach-card-dark .about-approach-title {
    color: #FFFFFF;
}

.about-approach-card-dark .about-approach-text {
    color: #94A3B8;
}

.about-approach-card-dark .about-approach-footer-num {
    color: rgba(255, 255, 255, 0.05);
}

.about-approach-icon-wrap {
    font-size: 2.5rem;
    color: #1E40AF;
    margin-bottom: 30px;
    transition: all 0.4s ease;
}

.about-approach-title {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-approach-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
}

.about-approach-footer-num {
    margin-top: auto;
    font-size: 5rem;
    font-weight: 900;
    color: #F1F5F9;
    position: absolute;
    bottom: 10px;
    right: 30px;
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

/* Hover Effects */
.about-approach-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.about-approach-card:hover .about-approach-icon-wrap {
    transform: translateY(-10px);
    transition: 0.3s;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-approach-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .about-approach-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-card {
        min-height: auto;
    }

    .about-approach-heading {
        font-size: 2.1rem;
    }

    .about-approach-section {
        padding: 60px 20px;
    }

    .about-approach-text {
        font-size: 17px;
    }

    .about-approach-title {
        margin-top: 0px;
    }
}



@media (max-width: 768px) {
    .our-approach-section {
        padding: 60px 0;
    }

    .our-approach-main-title {
        font-size: 36px;
    }

    .our-approach-number {
        font-size: 40px;
    }
}

.about-msp-section {
    padding: 140px 0;
    background: #ffffff;
    font-family: 'Urbanist', sans-serif;
    color: #0F172A;
}

.about-msp-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Logic */
.about-msp-header {
    margin-bottom: 100px;
    border-left: 4px solid #1E40AF;
    padding-left: 40px;
}

.about-msp-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.about-msp-main-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

/* Stack Logic: Vertical Rows */
.about-msp-stack {
    display: flex;
    flex-direction: column;
}

.about-msp-row {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    padding: 80px 0;
    border-top: 1px solid #E2E8F0;
    transition: all 0.5s ease;
}

.about-msp-row:last-child {
    border-bottom: 1px solid #E2E8F0;
}

/* Label Area (Left Side) */
.about-msp-label-area {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.about-msp-index {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1E40AF;
    font-variant-numeric: tabular-nums;
    margin-top: 8px;
}

.about-msp-row-title {
    font-size: 55px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 0;
}

/* Content Area (Right Side) */
.about-msp-content-area {
    padding-left: 20px;
}

.about-msp-text {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    color: #000000;
    max-width: 700px;
    margin: 0;
}

/* Professional Hover Animation */
.about-msp-row:hover {
    background: #F8FAFC;
    padding-left: 30px;
    padding-right: 30px;
}

.about-msp-row:hover .about-msp-row-title {
    color: #1E40AF;
    transform: translateX(10px);
}

.about-msp-row-title {
    transition: all 0.4s ease;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .about-msp-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 60px 0;
    }

    .about-msp-header {
        padding-left: 25px;
    }

    .about-msp-row:hover {
        padding-left: 0;
        padding-right: 0;
    }

    .about-msp-main-heading {
        font-size: clamp(2.2rem, 5vw, 4rem);
    }

    .about-msp-container {
        padding: 0px 20px;
    }

    .about-msp-text {
        font-size: 17px;
    }

    .about-msp-row-title {
        font-size: 35px;
    }
}



.service-hero-section {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Strategic-Advisory.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}

.service-hero-section-2 {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Marketing-Solutions.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}

.service-hero-section-3 {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Sales-Enablement.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}

.service-hero-section-4 {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Capital-Market-Guidance.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}

.service-hero-section-5 {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Home-Finance-Advisory.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}


.service-hero-section-6 {
    position: relative;
    height: 100vh;
    min-height: 650px;
    display: flex;
    align-items: center;
    background-image: url('/assets/images/banner/Brand-Support-Services.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
}


.service-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 50%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 1;
}

.service-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.service-hero-content {
    max-width: 750px;
}

.service-hero-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #3B82F6;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 25px;
}

.service-hero-heading {
    font-size: 60px;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 30px;
}

.service-hero-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}








.service-intro-section {
    padding: 120px 0;
    background: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.service-intro-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-intro-grid {
    display: grid;
    grid-template-columns: 0.4fr 1.6fr;
    gap: 60px;
    align-items: flex-start;
}

/* Side Accent Styling */
.service-intro-accent-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.service-intro-label {
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1E40AF;
}

.service-intro-vertical-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, #1E40AF, transparent);
}

/* Paragraph Styling */
.service-intro-paragraph {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #0F172A;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0 0 40px 0;
}

/* Footer Anchor */
.service-intro-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-intro-dot {
    width: 8px;
    height: 8px;
    background: #1E40AF;
    border-radius: 50%;
}

.service-intro-firm {
    font-size: 0.9rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .service-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-intro-vertical-line {
        height: 2px;
        width: 60px;
        background: linear-gradient(to right, #1E40AF, transparent);
    }

    .service-intro-paragraph {
        font-size: 17px;
    }

    .service-intro-container {
        padding: 0px 20px;
    }
}



.service-cover-section {
    padding: 100px 0;
    background-color: #F1F5F9;
    /* Fills the "void" with a premium tint */
    font-family: 'Urbanist', sans-serif;
}

.service-cover-container {
    max-width: 1400px;
    margin: 0 auto;
}

.service-cover-header {
    margin-bottom: 50px;
    text-align: center;
}

.service-cover-tag {
    display: block;
    color: #1E40AF;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.service-cover-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1.5px;
}

/* The Grid: 3 Columns with no gaps to eliminate white space */
.service-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #E2E8F0;
    /* This creates the "border" lines between cards */
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    overflow: hidden;
}

.service-cover-card {
    background: #FFFFFF;
    padding: 60px 45px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

/* Smooth Hover Animation */
.service-cover-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #0F172A;
    /* Corporate Dark Blue/Black */
    transition: all 0.5s ease;
    z-index: 1;
}

.service-cover-card:hover::before {
    height: 100%;
}

.service-cover-card-content {
    position: relative;
    z-index: 2;
}

.service-cover-num {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: #1E40AF;
    margin-bottom: 30px;
    margin-top: 0px;
    transition: color 0.4s ease;
}

.service-cover-title {
    font-size: 30px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.service-cover-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 0px;
    transition: color 0.4s ease;
}

/* Hover Content Colors */
.service-cover-card:hover .service-cover-title {
    color: #FFFFFF;
}

.service-cover-card:hover .service-cover-text {
    color: #94A3B8;
}

.service-cover-card:hover .service-cover-num {
    color: #3B82F6;
}

/* Responsive Scaling */
@media (max-width: 1100px) {
    .service-cover-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .service-cover-grid {
        grid-template-columns: 1fr;
    }

    .service-cover-main-title {
        font-size: 2.2rem;
    }

    .service-cover-card {
        padding: 40px 30px;
    }

    .service-cover-title {
        font-size: 25px;
    }

    .service-cover-text {
        font-size: 17px;
    }
}



.service-cta-section {
    padding: 100px 0 140px 0;
    background-color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.service-cta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-cta-box {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1768839722425-4f209a3e4fda?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.service-cta-box-2 {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.service-cta-box-3 {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.service-cta-box-4 {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1723095304732-7bb4d8a69b51?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.service-cta-box-5 {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1723095304732-7bb4d8a69b51?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}

.service-cta-box-6 {
    position: relative;
    border-radius: 40px;
    padding: 120px 60px;
    text-align: center;
    overflow: hidden;
    /* High-end architectural background */
    background-image: url('https://images.unsplash.com/photo-1690228254548-31ef53e40cd1?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.2);
}


/* Dark Gradient Overlay */
.service-cta-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 100%);
    z-index: 1;
}

.service-cta-content {
    position: relative;
    z-index: 2;
    max-width: 1050px;
    margin: 0 auto;
}

.service-cta-tag {
    display: inline-block;
    color: #3B82F6;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
}

.service-cta-heading {
    font-size: clamp(2rem, 3vw, 2.6rem);
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
    letter-spacing: -1.5px;
    margin-bottom: 25px;
}

.service-cta-text {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.884);
    line-height: 1.7;
    margin-bottom: 50px;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #FFFFFF;
    color: #0F172A;
    text-decoration: none;
    padding: 22px 45px;
    border-radius: 15px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-cta-btn:hover {
    background: #3B82F6;
    color: #FFFFFF;
    transform: translateY(-5px);
}

.service-cta-btn i {
    transition: transform 0.3s ease;
}

.service-cta-btn:hover i {
    transform: translateX(8px);
}

@media (max-width: 768px) {

    .service-cta-box,
    .service-cta-box-2,
    .service-cta-box-3,
    .service-cta-box-4,
    .service-cta-box-5 {
        padding: 80px 30px;
        border-radius: 24px;
    }

    .service-cta-heading {
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 1px;
        text-align: left;
    }

    .service-cta-btn {
        font-size: 0.8rem;
        padding: 20px 20px;
    }

    .service-cta-text {
        font-size: 15px;
        text-align: left;
    }

    .service-cta-box-6 {
        padding: 60px 20px;
    }

    .service-cta-container {
        padding: 0px 20px;
    }
}



.market-cover-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.market-cover-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.market-cover-header {
    margin-bottom: 60px;
}

.market-cover-main-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1.5px;
}

/* Split Layout Logic */
.market-cover-split {
    display: flex;
    min-height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.1);
}

.market-cover-block {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Light Block Styling */
.market-cover-block-light {
    background-color: #F8FAFC;
    color: #0F172A;
}

/* Dark Block Styling */
.market-cover-block-dark {
    background-color: #0F172A;
    color: #FFFFFF;
}

.market-cover-block-dark .market-cover-text {
    color: #94A3B8;
}

.market-cover-block-dark .market-cover-index {
    color: #3B82F6;
}

/* Content Details */
.market-cover-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.market-cover-index {
    font-size: 1rem;
    font-weight: 900;
    color: #1E40AF;
    letter-spacing: 2px;
}

.market-cover-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
}

.market-cover-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #6d7e95;
    margin-bottom: 40px;
}

.market-cover-footer-line {
    width: 60px;
    height: 4px;
    background: #3B82F6;
}


/* Responsive Scaling */
@media (max-width: 1024px) {
    .market-cover-split {
        flex-direction: column;
        min-height: auto;
    }

    .market-cover-block {
        padding: 20px;
    }

    .market-cover-block:hover {
        flex: 1;
    }

    .market-cover-container {
        padding: 0 20px;
    }
}


.sales-cover-section {
    padding: 100px 0;
    background-color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
}

.sales-cover-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.sales-cover-header {
    margin-bottom: 60px;
}

.sales-cover-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.sales-cover-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1.5px;
}

/* Checkerboard Grid Logic */
.sales-cover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns to fill horizontal space */
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
}

.sales-cover-row {
    padding: 80px 60px;
    background-color: #FFFFFF;
    border-bottom: 1px solid #E2E8F0;
    border-right: 1px solid #E2E8F0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

/* Alternate Background to eliminate blank white space feel */
.sales-cover-row-alt {
    background-color: #F8FAFC;
}

.sales-cover-row:nth-child(even) {
    border-right: none;
}

.sales-cover-row:nth-last-child(-n+2) {
    border-bottom: none;
}

.sales-cover-number {
    font-size: 0.9rem;
    font-weight: 900;
    color: #3B82F6;
    margin-bottom: 30px;
    display: block;
}

.sales-cover-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.3;
    margin-bottom: 20px;
}

.sales-cover-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    color: #6f7e94;
}

/* Smooth Hover Animation */
.sales-cover-row:hover {
    background-color: #0F172A;
    /* Corporate Dark Inversion */
    transform: scale(1.02);
    z-index: 10;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2);
}

.sales-cover-row:hover .sales-cover-title {
    color: #FFFFFF;
}

.sales-cover-row:hover .sales-cover-text {
    color: #94A3B8;
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .sales-cover-grid {
        grid-template-columns: 1fr;
    }

    .sales-cover-row {
        border-right: none !important;
        padding: 20px;
    }

    .sales-cover-row:nth-child(even) {
        border-bottom: 1px solid #E2E8F0;
    }

    .sales-cover-container {
        padding: 0 20px;
    }
}



.capital-cover-section {
    padding: 120px 0;
    background-color: #FBFBFE;
    font-family: 'Urbanist', sans-serif;
}

.capital-cover-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.capital-cover-header {
    margin-bottom: 60px;
}

.capital-cover-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.capital-cover-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -2px;
}

/* Asymmetric Grid Logic */
.capital-cover-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.capital-cover-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 45px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Featured Block makes it look "Full" */
.capital-cover-featured {
    grid-column: span 2;
    background-color: #0F172A;
    color: #FFFFFF;
}

.capital-cover-featured .capital-cover-title {
    color: #FFFFFF;
    font-size: 2.2rem;
}

.capital-cover-featured .capital-cover-text {
    color: #94A3B8;
    font-size: 1.2rem;
    max-width: 90%;
}

.capital-cover-featured .capital-cover-index {
    color: #3B82F6;
}

/* Content Details */
.capital-cover-index {
    display: block;
    font-size: 0.9rem;
    font-weight: 900;
    color: #1E40AF;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.capital-cover-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    line-height: 1.2;
}

.capital-cover-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    color: #475569;
}

/* Hover Animation - Elevate & Tint */
.capital-cover-card:hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
}

.capital-cover-featured:hover {
    background-color: #16213E;
    box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.4);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .capital-cover-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .capital-cover-featured {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .capital-cover-container {
        padding: 0 20px;
    }

    .capital-cover-grid {
        grid-template-columns: 1fr;
    }

    .capital-cover-featured {
        grid-column: span 1;
    }

    .capital-cover-main-title {
        font-size: 2.2rem;
    }

    .capital-cover-card {
        padding: 35px;
    }
}




.home-cover-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.home-cover-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.home-cover-header {
    margin-bottom: 70px;
    text-align: center;
}

.home-cover-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.home-cover-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -2px;
}

/* 3-Column Blade Layout */
.home-cover-row {
    display: flex;
    border: 1px solid #E2E8F0;
    border-radius: 30px;
    overflow: hidden;
}

.home-cover-blade {
    flex: 1;
    position: relative;
    padding: 80px 50px;
    border-right: 1px solid #E2E8F0;
    background: #FFFFFF;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-cover-blade:last-child {
    border-right: none;
}

.home-cover-inner {
    position: relative;
    z-index: 2;
}

.home-cover-num {
    display: block;
    font-size: 1rem;
    font-weight: 900;
    color: #3B82F6;
    margin-bottom: 30px;
}

.home-cover-title {
    font-size: 35px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 25px;
    line-height: 1.2;
    transition: color 0.4s ease;
}

.home-cover-text {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.8;
    color: #475569;
    transition: color 0.4s ease;
}

/* Hover Background Animation */
.home-cover-hover-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #0F172A;
    /* Corporate Navy */
    transition: height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.home-cover-blade:hover .home-cover-hover-bg {
    height: 100%;
}

.home-cover-blade:hover .home-cover-title {
    color: #FFFFFF;
}

.home-cover-blade:hover .home-cover-text {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Adjustments */
@media (max-width: 1024px) {
    .home-cover-row {
        flex-direction: column;
    }

    .home-cover-blade {
        border-right: none;
        border-bottom: 1px solid #E2E8F0;
        padding: 20px;
    }

    .home-cover-blade:last-child {
        border-bottom: none;
    }

    .home-cover-container {
        padding: 0 20px;
    }

    .home-cover-section{
        padding: 60px 0px;
    }
}





.brand-cover-section {
    padding: 120px 0;
    background-color: #F8FAFC;
    font-family: 'Urbanist', sans-serif;
}

.brand-cover-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
}

.brand-cover-header {
    margin-bottom: 60px;
}

.brand-cover-tag {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.brand-cover-main-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -2px;
}

/* Layout Management */
.brand-cover-layout {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.brand-cover-item {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    padding: 60px;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Featured Top Block */
.brand-cover-featured {
    background-color: #0F172A;
    color: #FFFFFF;
}

.brand-cover-featured .brand-cover-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.brand-cover-featured .brand-cover-title {
    color: #FFFFFF;
    font-size: 2.2rem;
}

.brand-cover-featured .brand-cover-paragraph {
    color: #94A3B8;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.brand-cover-featured .brand-cover-index {
    color: #3B82F6;
}

/* Bottom Split Row */
.brand-cover-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.brand-cover-index {
    display: block;
    font-size: 0.9rem;
    font-weight: 900;
    color: #1E40AF;
    margin-bottom: 25px;
}

.brand-cover-title {
    font-size: 35px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
}

.brand-cover-paragraph {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.7;
    color: #475569;
}

/* Professional Hover Interactions */
.brand-cover-item:not(.brand-cover-featured):hover {
    transform: translateY(-10px);
    border-color: #3B82F6;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.1);
}

.brand-cover-featured:hover {
    background-color: #16213E;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .brand-cover-featured .brand-cover-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .brand-cover-split {
        grid-template-columns: 1fr;
    }

    .brand-cover-item {
        padding: 20px;
    }

    .brand-cover-container {
        padding: 0 20px;
    }
    .brand-cover-section{
        padding: 60px 0px;
    }
}



.service-hero-section {
    padding: 0px 0 100px 0;
    background-color: #FFFFFF;
    font-family: 'Urbanist', sans-serif;
    overflow: hidden;
}

.service-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.service-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.service-hero-tag {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #003cff;
    /* Corporate Blue */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

/* .service-hero-heading {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 30px;
} */

.service-hero-accent {
    color: #003cff;
}

.service-hero-paragraph {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #ffffff;
    max-width: 650px;
}

.service-hero-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 550px;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.1);
}

.service-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

/* Maintain the hover effect from the About page */
.service-hero-image-wrapper:hover .service-hero-img {
    transform: scale(1.05);
}

/* Responsive Scaling */
@media (max-width: 1024px) {
    .service-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .service-hero-image-wrapper {
        height: 400px;
    }

    .service-hero-content {
        text-align: left;
    }

    .service-hero-heading {
        font-size: 1.7rem;
    }

    .service-hero-paragraph {
        font-size: 1.05rem;
    }
}




.contact-hero-section {
    position: relative;
    height: 100vh;
    /* Full screen height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    font-family: 'Urbanist', sans-serif;
    text-align: center;
}

/* Dark professional overlay to ensure legibility */
.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.7));
    z-index: 1;
}

.contact-hero-container {
    position: relative;
    z-index: 2;
    padding: 0 40px;
}

.contact-hero-tag {
    display: inline-block;
    color: #3B82F6;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
}

.contact-hero-heading {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -2px;
    margin: 0;
    line-height: 1;
}

/* Smooth fade-in animation */
.contact-hero-content {
    animation: heroFadeUp 1.2s ease-out;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .contact-hero-heading {
        font-size: 2.8rem;
    }
}





.contact-form-section {
    padding: 100px 0;
    background-color: #F8FAFC;
    font-family: 'Urbanist', sans-serif;
}

.contact-form-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-form-wrapper {
    background: #FFFFFF;
    padding: 80px;
    border-radius: 40px;
    box-shadow: 0 40px 100px -20px rgba(15, 23, 42, 0.08);
}

.contact-form-header {
    margin-bottom: 50px;
    text-align: center;
}

.contact-form-tag {
    font-size: 0.85rem;
    font-weight: 800;
    color: #1E40AF;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.contact-form-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0F172A;
    margin: 15px 0;
}

.contact-form-subtext {
    color: #64748B;
    font-size: 1.1rem;
}

/* Grid Logic */
.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-form-group.full-width {
    grid-column: span 2;
}

.contact-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    padding: 18px 25px;
    background: #F1F5F9;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: #0F172A;
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #1E40AF;
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.05);
}

.contact-form-btn {
    margin-top: 40px;
    width: 100%;
    padding: 22px;
    background: #0F172A;
    color: #FFFFFF;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.4s ease;
    font-family: 'Urbanist', sans-serif;
}

.contact-form-btn:hover {
    background: #003cff;
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.2);
}

.contact-form-btn i {
    transition: all 0.4s ease;
}

.contact-form-btn:hover i {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-group.full-width {
        grid-column: span 1;
    }

    .contact-form-wrapper {
        padding: 40px 25px;
    }

    .contact-form-container {
        padding: 0;
    }

    .contact-form-heading{
        font-size: 30px;
    }
}



@media(max-width: 768px) {
    .brand-cover-featured, .brand-cover-paragraph {
        font-size: 17px !important;
    }

    .brand-cover-featured, .brand-cover-title {
        font-size: 1.7rem !important;
        margin-top: 0px;
    }

    .home-cover-main-title {
        font-size: 2.5rem;
    }

    .home-cover-title {
        font-size: 25px;
    }

    .home-cover-text {
        font-size: 17px;
    }

    .market-cover-main-title,
    .sales-cover-main-title {
        font-size: 2.4rem;
    }

    .market-cover-title,
    .sales-cover-title {
        font-size: 25px;
        margin-bottom: 0px;
    }

    .market-cover-text,
    .sales-cover-text,
    .capital-cover-text {
        font-size: 17px;
    }

    .capital-cover-featured .capital-cover-title {
        font-size: 1.7rem;
    }

    .capital-cover-featured .capital-cover-text {
        font-size: 17px;
        max-width: 100%;
    }

    .capital-cover-card {
        padding: 35px 20px 35px 20px;
    }
}



@media (max-width: 768px) {
    .service-hero-section {
        height: 100vh;
        background-attachment: scroll;
    }

    .service-hero-section-2 {
        height: 100vh;
        background-attachment: scroll;
    }

    .service-hero-section-2 {
        height: 100vh;
        background-attachment: scroll;
    }

    .service-hero-container {
        padding: 0 20px;
    }

    .service-hero-heading {
        font-size: 1.7rem;
    }

    .service-hero-paragraph {
        font-size: 17px;
    }
}