    /* --- CUSTOM RESET --- */
        .gold-bg {
            background-color: #D4B97A;
            color: black;
            padding: 10px;
            text-align: center;
            font-family: "inter" ,Robot ;    
            text-align: center;
            font-weight: 500;
            font-size: 17px;
        }    

    /* --- Jurisdiction presence SECTION STYLES --- */
    .main-wrapper {
        position: relative;
        padding: 60px 0;
    }

    .top-accent-line {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-color: #ae9564;
    }

    

    /* --- HEADER --- */
    .header-area {
        text-align: center;
        margin-bottom: 50px;
    }

    .title-main {
        font-size: 36px;
        color: #1b234b;
        font-weight: bold;
        margin-bottom: 15px;
    }

    .title-main-blue {
        font-size: 32px;
        color: #253979;
        font-weight: 600;
        margin-bottom: 15px;
        font-family: 'Inter', Roboto;
    }

    .title-main-white {
        font-size: 32px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 15px;
        font-family: 'Inter', Roboto;
    }

    .title-sub {
        font-size: 16px;
        color: #090909;
        font-family: 'Inter', Roboto;

    }

    /* --- CARDS & BLUR HOVER EFFECT --- */
    .cards-container {
        display: flex;
        gap: 15px;
    }

    .location-card {
        flex: 1;
        position: relative;
        height: 350px;
        border-radius: 4px;
        overflow: hidden;
        background-color: #000; /* Backdrop for blur */
    }

    /* The Image Tag */
    .location-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s ease, filter 0.6s ease;
    }

    /* Apply Blur and slight zoom on Hover */
    .location-card:hover img {
        filter: blur(5px) brightness(0.7);
        transform: scale(1.1);
    }

    /* --- CONTENT OVERLAY --- */
    .card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: flex-end;
        /* Constant dark gradient at bottom for initial visibility */
        background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
        transition: background 0.4s ease;
    }

    /* Darker overlay on hover to support white text on blurred image */
    .location-card:hover .card-overlay {
        background: rgba(27, 35, 75, 0.4); /* Dark blue tint on hover */
    }

    .card-text-box {
        padding: 25px 15px;
        width: 100%;
        color: #fff;
        z-index: 2;
    }

    .location-name {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        font-family: "Inter",Roboto;
    }

    /* --- THE SHORT CONTENT (Hidden by default) --- */
    .short-content {
        font-size: 14px;
        line-height: 1.5;
        color: #f0f0f0;
        
        /* Initial state before hover */
        max-height: 0;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.5s ease;
        font-family: "Inter",Roboto;
    }

    /* Show content on Hover */
    .location-card:hover .short-content {
        max-height: 100px; /* Adjust based on text length */
        opacity: 1;
        transform: translateY(0);
    }

    /* --- RESPONSIVE DESIGN --- */

    @media (max-width: 1024px) {
        .cards-container { flex-wrap: wrap; }
        .location-card {
            flex: 0 0 calc(50% - 8px);
            height: 350px;
        }
    }

    @media (max-width: 600px) {
        .location-card {
            flex: 0 0 100%;
            height: 300px;
        }
        .title-main { font-size: 28px; }
    }
/* --- Jurisdiction presence SECTION STYLES --- */

/* --- Who we advice SECTION STYLES --- */
    /* Custom Reset */
/* Background Wrapper */
.advise-section {
    background-color: #222D5A; /* Deep Navy Blue */
    padding: 60px 0;
    color: #ffffff;
}



/* Header Styling */
.advise-header {
    text-align: center;
    margin-bottom: 50px;
}

.advise-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.advise-subtitle {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
}

.advise-subtitle-white {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
    opacity: 0.9;
    
}

/* Row Layout */
.advise-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* Card Styling */
.advise-card {
    background-color: #ffffff;
    color: #333333;
    flex: 1;
    min-width: 210px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-main-content {
    padding: 25px 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.icon-box img {
    width: 100%;
    height: auto;
    display: block;
}

.card-heading {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #000;
    font-family: 'inter',Roboto;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    font-family: 'inter',Roboto;
    font-weight: 400;

}

/* Gold Footer bar */
.card-footer {
    background-color: #D4B97A; /* Gold/Sand color */
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    border-top: 1px solid rgba(0,0,0,0.05);
    height:60px;
    font-family: 'inter',Roboto;

}

/* Responsive Design */

/* Tablet View (2 or 3 items per row) */
@media (max-width: 1024px) {
    .advise-card {
        flex: 0 0 calc(33.33% - 15px);
    }
}

/* Small Tablet / Large Phone (2 items per row) */
@media (max-width: 768px) {
    .advise-card {
        flex: 0 0 calc(50% - 15px);
    }
    .advise-title {
        font-size: 28px;
    }
}

/* Mobile View (1 item per row) */
@media (max-width: 480px) {
    .advise-card {
        flex: 0 0 100%;
    }
    .advise-section {
        padding: 50px 0;
    }
}
/* --- Who we advice SECTION STYLES --- */

/*---Counter CSS----*/
/* Custom CSS */


.stats-outer-container {
    /* padding: 80px 0; */
    /*border-top: 5px solid #1a234e;
    border-bottom: 5px solid #1a234e;*/
}



.stats-flex-wrapper {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: center;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    transition: all 0.3s ease;
}

/* The light blue border effect shown in your image */
.stat-inner {
    padding: 40px 20px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.stat-box:hover .stat-inner {
    border: 3px solid #222D5A; /* Light blue border on hover */
}

.stat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.stat-icon img {
    width: 100%;
    height: auto;
    /* This filter makes black icons appear dark navy blue */
    /* filter: invert(13%) sepia(29%) saturate(4646%) hue-rotate(222deg) brightness(91%) contrast(94%); */
}

.stat-number {
    display: inline-block;
    font-size: 40px;
    font-weight: 400;
    color: #000;
    font-family: "Inter",Robot;
}

.plus {
    font-size: 42px;
    font-weight: 500;
    color: #111;
}

.stat-label {
    margin-top: 10px;
    font-size: 18px;
    color: #000;
    line-height: 1.4;
    font-family: "Inter",Robot;
    font-weight: 400;


}

/* Responsive Design */

/* Tablet View */
@media (max-width: 992px) {
    .stat-box {
        flex: 0 0 50%; /* 2 per row */
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .stat-box {
        flex: 0 0 100%; /* 1 per row */
    }
    
    .stats-outer-container {
        padding: 40px 0;
    }

    .stat-number, .plus {
        font-size: 32px;
    }
}
/*-----Counter CSS------*/
/* Left image right content section */
/* --- CUSTOM CSS --- */

/* Reset for all browsers */


/* Outer section background - dark navy */
.split-section-wrapper {
    background-color: #222D5A; 
    padding: 100px 0;
    color: #ffffff;
}



/* Flex Row for 50/50 split */
.split-row {
    display: flex;
    align-items: stretch; /* Ensures image column and text column are same height */
    overflow: hidden;
    border-radius: 4px; /* Optional slight corner smoothing */
}

/* Column logic - exactly equal proportions */
.split-col {
    flex: 1;
    width: 50%;
    display: flex;
}

/* Image Side Styles */
.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes any image fill the 50% area without distortion */
    display: block;
}

/* Content Side Styles */
.content-side {
    background-color: transparent;
    display: flex;
    align-items: center; /* Centers text vertically */
}

.content-inner {
    padding: 60px; /* Space inside the content box */
}

.main-title {
    font-size: 32px;
    font-weight: 600;
    color: #D4B97A; /* Gold tone for title */
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: "Inter" ,Roboto;
}

.description-paragraph {
    text-align: justify;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height:30px;
}

.btn-holder {
    margin-top: 30px;
}

.action-button {
    display: inline-block;
    background-color: #ae9564;
    color: #ffffff;
    padding: 14px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.action-button:hover {
    background-color: #8e7a52;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet View (992px and below) */
@media (max-width: 992px) {
    .content-inner {
        padding: 40px;
    }
    .main-title {
        font-size: 28px;
    }
}

/* Mobile View (768px and below) */
@media (max-width: 768px) {
    .split-row {
        flex-direction: column; /* Stack image on top of text */
    }

    .split-col {
        width: 100%;
        flex: none;
    }

    .image-side {
        height: 300px; /* Set a fixed height for the image on mobile */
    }

    .content-inner {
        padding: 40px 20px;
    }
    
    .split-section-wrapper {
        padding: 50px 0;
    }
}
/* Left image right content section */
/* Right image left content */
/* --- CUSTOM CSS --- */

/* Basic Reset */



.services-row-wrapper {
    padding: 100px 0;
    background-color: #ffffff;
}

.family-row-wrapper {
    padding: 30px 0;
	background-size: cover;
    background-image: url('/images/sampledata/homenew/family-black.png'); /* Replace with your specific leaf/logo watermark image */    
}

.flex-row2 {
    display: flex;
    align-items: center; /* Vertically centers the content */
    justify-content: space-between;
    /* gap: 60px; */
}

/* Make both columns equal proportion */
.column {
    flex: 1;
    width: 50%;
}

/* --- Content Column Styling --- */
.main-title-right {
    font-size: 32px;
    font-weight: 600;
    color: #222D5A; /* Gold tone for title */
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: "Inter" ,Roboto;
}

.main-description {
    font-size: 16px;
    color: #000;
    margin-bottom: 20px;
    font-weight: 400;
    line-height:30px;
}

.mono-line {
    font-family: 'IBM Plex Mono', Inter, roboto;
    font-size: 14px;
    color: #BABDC2; /* Muted Blue */
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.mono-line-left {
    font-family: 'IBM Plex Mono', Inter, roboto;
    font-size: 14px;
    color: #496788; /* Muted Blue */
    margin-bottom: 35px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    background-color: #b19662; /* Gold/Tan color */
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #8e794f;
}

/* --- Image Column Styling --- */
.image-stack {
    position: relative;
    width: 80%;
    /*margin: 0 auto;*/
}

.actual-image img {
    width: 100%;
    display: block;
    border-radius: 12px;
    position: relative;
    z-index: 2;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.2); */
}

/* The Decorative border that sticks out to the right and bottom */
.offset-border {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 100%;
    height: 100%;
    border: 1px solid #1b2e5a; /* Navy border */
    border-radius: 12px;
    z-index: 1;
    opacity: 0.5;
}

/* --- RESPONSIVE DESIGN --- */

/* Tablet View */
@media (max-width: 992px) {
    .main-title {
        font-size: 32px;
    }
    .flex-row2 {
        gap: 5px;
    }
}

/* Mobile View (Stacking) */
@media (max-width: 768px) {
    .flex-row2 {
        /*flex-direction: column;*/
        text-align: left;
    }
    .top-logo img {
       width: 150px;
    }
    .top-logo {
        display: block !important;
        margin-left: -4%;
    }
    .content-wrapper {
        padding: 10px 25px;
    }
    .header {
        background: #213056;
        min-height: 80px;
        position: relative;
        z-index: 999;
        position: fixed;
        width: 92%;
        top: 0;
    }
    .column {
        width: 100%;
        /*flex: none;*/
    }

    .col-image {
        margin-top: 50px;
        display:none;
    }

    .image-stack {
        width: 85%;
    }

    .services-row-wrapper {
        padding: 60px 0;
    }
    .hero-content {
      position:absolute;
      top: 56% !important;
      transform: translateY(-50%);
      max-width: 700px;
      color: #fff;
      z-index: 2;
    }
}
/* Right image left content */

/* Regular Authority css */
/* Custom CSS */

/* General Reset */


/* Main Section Wrapper */
.regulatory-section {
    background-color: #1b234b; /* Deep Navy Blue */
    /* Background Image setup as watermark on the left */
    background-image: url('/images/sampledata/homenew/DFSA_and_FSRA_Regulatory_Authorizations_-_DIFC_and_ADGM.png'); /* Replace with your specific leaf/logo watermark image */
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover;
    padding: 100px 0;
    color: #ffffff;
    min-height: 500px;
}

.legal-section {
    background-color: #1b234b; /* Deep Navy Blue */
    /* Background Image setup as watermark on the left */
    background-image: url('/images/sampledata/home/cross.jpg'); /* Replace with your specific leaf/logo watermark image */
    background-repeat: no-repeat;
    background-position: left center;
    background-size: cover; 
    padding: 100px 0;
    color: #ffffff;
    min-height: 500px;
}

.container-two {
    padding: 0 60px;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* Ensuring similar sizing for columns (50/50 split) */
.content-column, .spacer-column {
    flex: 1;
    width: 50%;
}

/* Icon Styling */
.icon-wrapper {
    margin-bottom: 20px;
}

.content-icon {
    width: 60px;
    height: auto;
    filter: brightness(0) saturate(100%) invert(67%) sepia(19%) saturate(760%) hue-rotate(6deg) brightness(95%) contrast(89%); /* Colors the icon to a gold-ish tone if it's black */
}

/* Typography */
.main-heading {
    color: #ae9564; /* Gold color */
    font-size: 38px;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 25px;
    text-align: left; /* Left align as requested */
}

.description-text {
    font-size: 16px;
    color: #e0e0e0;
    margin-bottom: 20px;
    max-width: 90%;
}

.stats-mono {
    font-family: 'Courier New', Courier, monospace;
    font-size: 15px;
    letter-spacing: 0.5px;
    margin-bottom: 35px;
    color: #ffffff;
}

/* Button Styling */
.cta-gold-button {
    display: inline-block;
    background-color: #ae9564;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-gold-button:hover {
    background-color: #000;;
    color: #fff;
    transform: translateY(-2px);
}


.cta-gold-border {
    display: inline-block;
    background-color: #ae9564;
    color: #ffffff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-gold-border:hover {
    background-color: #000;;
    color: #fff;
    transform: translateY(-2px);
}

/* --- Responsive Design --- */

/* Tablet View */
@media (max-width: 992px) {
    .main-heading {
        font-size: 30px;
    }
    
    .container-two {
        padding: 0 30px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .regulatory-section {
        background-size: 80%; /* Adjust watermark for mobile */
        padding: 60px 0;
    }

    .content-row {
        flex-direction: column;
    }

    .content-column, .spacer-column {
        width: 100%;
        flex: none;
    }

    .spacer-column {
        display: block;
    }

    .main-heading {
        font-size: 26px;
    }

    .description-text {
        max-width: 100%;
    }
    .image-side-out, .right-video-area  {
        display:none;
    }
}
/*--- Outsourced --*/
:root {
    --primary-blue: #1a2b4d;
    --text-gray: #4a4a4a;
    --accent-gold: #b69b6a;
    --stat-blue: #3e8da8;
    --white: #ffffff;
}





.hero-container {
    display: flex;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}

/* Content Side Styling */
.content-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 40x;
    background-color: var(--white);
}

.content-wrapper {
    max-width: 550px;
}

.title {
    font-size: 2.5rem;
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.description {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.stat-text {
    font-family: 'Roboto Mono', monospace; /* Giving it that technical look */
    font-size: 0.85rem;
    color: var(--stat-blue);
    margin-bottom: 2.5rem;
    text-transform: lowercase;
}

.btn-primary {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #a3895a;
}

/* Image Side Styling */
.image-side-out {
    flex: 1;
    background-image: url('/images/sampledata/home/Compliance_and_AML.jpg'); /* Placeholder Business Image */
    background-size: cover;
    background-position: center;
}

.image-side-why {
    flex: 1;
    background-image: url('/images/sampledata/home/why.jpg'); /* Placeholder Business Image */
    background-size: cover;
    background-position: center;
}

/* --- Responsive Media Queries --- */

/* For Tablets and smaller desktops */
@media (max-width: 1024px) {
    .title {
        font-size: 2rem;
    }
    .content-side {
        padding: 40px;
    }
}

/* For Mobile Devices */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column; /* Stack vertically */
    }

    .content-side {
        order: 1; /* Text first */
        padding: 40px 20px;
        text-align: left;
    }

    .image-side-out {
        order: 2; /* Image below text */
        min-height: 350px; /* Give the image height on mobile */
    }

    .title {
        font-size: 1.8rem;
    }
}
/*--- Outsourced --*/
/*DIFC innovation */
/* General Reset */

/* Main Wrapper */
.main-slide-container {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* Left Column Styling */
.left-content-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.inner-text-box {
    max-width: 600px;
}

.innovation-heading {
    font-size: 42px;
    font-weight: bold;
    color: #1a2b4d; /* Dark Navy */
    line-height: 1.1;
    margin-bottom: 25px;
}

.innovation-description {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stats-monospace {
    font-size: 13px;
    color: #5c8abd; /* Teal/Blue color */
    font-family: 'Courier New', Courier, monospace;
    margin-bottom: 35px;
    font-weight: bold;
}

.gold-action-btn {
    display: inline-block;
    background-color: #b09565; /* Goldish-brown */
    color: #fff;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.gold-action-btn:hover {
    background-color: #967e52;
}

/* Right Column Video Styling */
.right-video-area {
    flex: 1;
    position: relative;
    background-color: #000; /* Fallback for video */
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This makes the video fill the container like an image */
    transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1); /* Darkens video slightly for better look */
}

/* Responsive Logic */
@media (max-width: 992px) {
    .main-slide-container {
        flex-direction: column; /* Stack vertically on tablets/phones */
    }
    
    .right-video-area {
        height: 350px; /* Give video a specific height on mobile */
        order: -1; /* Video goes to the top */
    }

    .left-content-area {
        padding: 40px 20px;
        text-align: center;
    }

    .innovation-heading {
        font-size: 32px;
    }
}
/*DIFC Innovation */

/*Four crad */
/* General Reset */


.working-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header Styling */
.working-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top:60px;
}

/* .main-title {
    font-size: 36px;
    color: #1a2b4d;  Dark Navy Blue 
    font-weight: bold;
    margin-bottom: 15px;
} */

.sub-title {
    font-size: 16px;
    color: #333;
    opacity: 0.8;
}

/* Grid Layout */
.cards-grid {
    display: flex;
    flex-wrap: wrap; /* Allows cards to wrap to the next line */
    gap: 20px; /* Space between cards */
}

/* Individual Card (Two per row on desktop) */
.card-item {
    flex: 1 1 calc(50% - 20px); /* 50% width minus the gap */
    box-sizing: border-box;
}

.card-inner {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 20px;
    display: flex; /* Image and Text side-by-side */
    gap: 20px;
    height: 100%;
    background-color: #fff;
    transition: box-shadow 0.3s ease;
}

.card-inner:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Image Side */
.card-image {
    flex: 0 0 120px; /* Fixed width for image container */
}

.card-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Side */
.card-content {
    flex: 1;
}

.phase-number {
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
    font-family: "IBM Plex Mono" ,Roboto;
    font-weight: 600;
}

.phase-heading {
    font-size: 16px;
    color: #060606;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.3;
    font-family: "Inter" ,Roboto;
    font-weight: 600;
}

.phase-text {
    font-size: 14px;
    color: #060606;
    line-height: 1.5;
    font-family: "Inter" ,Roboto;
    font-weight: 400;
}

/* Responsive: Stacks to 1 column on smaller screens */
@media (max-width: 900px) {
    .card-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 480px) {
    .card-inner {
        flex-direction: column; /* Stacks image on top of text on very small phones */
        align-items: flex-start;
    }
    .card-image, .card-image img {
        width: 100%;
        height: 150px;
    }
}
/* 4 crads*/

/*Articles*/
/* General Reset */


.knowledge-center {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

/* Header Styles */
.kc-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top:60px;
}

.kc-main-title {
    font-size: 32px;
    font-weight: bold;
    color: #1a2b4d;
    margin-bottom: 10px;
}

.kc-subtitle {
    font-size: 14px;
    color: #666;
}

/* Grid Layout */
.kc-grid-wrapper {
    display: flex;
    gap: 40px;
}

.kc-column {
    flex: 1;
}

/* Section Titles with Buttons */
.kc-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
}

.kc-section-title {
    font-size: 22px;
    font-weight: 600;
    color: #222D5A;
    font-family: "Inter" ,Roboto;
}

.kc-btn-show-all {
    border: 1px solid #000;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 12px;
    cursor: pointer;
    color: #222D5A;
    transition: 0.3s;
    font-weight: 600;
    font-family: "Inter",Roboto;
}

.kc-btn-show-all:hover {
    background: #222D5A;
    color:#fff
}

.article-row {
    display: flex;
    gap: clamp(12px, 2vw, 24px);
    margin-bottom: clamp(20px, 3vw, 30px);
    align-items: flex-start;
}

/* Thumbnail */
.article-thumb {
    flex: 0 0 clamp(90px, 18vw, 160px);
}

.article-thumb img {
    width: 100%;
    height: clamp(80px, 12vw, 120px);
    object-fit: cover;
    border-radius: 6px;
}

/* Content */
.article-content {
    flex: 1;
}

.article-date {
    font-size: clamp(11px, 1.2vw, 13px);
    color: #808080;
    margin-bottom: 6px;
    font-family: "IBM Plex Mono",Roboto;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.article-title {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    color: #060606;
    font-family: "Inter",Roboto;

}

.article-desc {
    font-size: clamp(13px, 1.4vw, 15px);
    line-height: 1.4;
    color: #060606;
}

/* =========================
   MOBILE (≤ 600px)
========================= */
@media (max-width: 600px) {
    .article-row {
        flex-direction: column;
    }

    .article-thumb {
        width: 100%;
    }

    .article-thumb img {
        height: 200px;
    }
}

/* =========================
   TABLET (601px – 992px)
========================= */
@media (max-width: 992px) {
    .article-thumb {
        flex: 0 0 140px;
    }
}

/* =========================
   LARGE SCREENS (≥ 1600px)
========================= */
@media (min-width: 1600px) {
    .article-title {
        font-size: 20px;
    }

    .article-desc {
        font-size: 16px;
    }

    .article-thumb img {
        height: 140px;
    }
}

/* =========================
   TV / ULTRA WIDE (≥ 2000px)
========================= */
@media (min-width: 2000px) {
    .article-title {
        font-size: 22px;
    }

    .article-desc {
        font-size: 17px;
    }

    .article-thumb img {
        height: 160px;
    }
}

/* Article Row Styles */
/*----oLD----*/
/*.article-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.article-thumb {
    flex: 0 0 130px;
}

.article-thumb img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 4px;
}

.article-content {
    flex: 1;
}

.article-date {
    font-size: 12px;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: "IBM Plex Mono",Roboto;
    font-weight: 600;
}

.article-title {
    font-size: 16px;
    font-weight: 600;
    color: #060606;
    margin-bottom: 6px;
    line-height: 1.3;
    font-family: "Inter",Roboto;
    
}

.article-desc {
    font-size: 14px;
    color: #060606;
    line-height: 1.4;
}
*/
/* Media Card Styles */
.media-card {
    margin-bottom: 30px;
}

.media-thumb-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    /* height: 240px; */
    overflow: hidden;
    border-radius: 6px;
    background: #000;
}

.media-thumb-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.media-thumb-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.play-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.7);
    border-radius: 50%;
    position: relative;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 19px;
    border-left: 18px solid #333;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.media-content {
    margin-top: 12px;
}

.media-title {
    font-size: 16px;
    font-weight: bold;
    color: #222;
    line-height: 1.4;
    margin-bottom: 5px;
    font-family: "Inter" ,Roboto;
    font-weight: 600;
}

.media-date {
    font-size: 12px;
    color: #808080;
    font-family: "IBM Plex Mono" ,Roboto;
    font-weight: 600;
}

/* Responsive Logic */
@media (max-width: 992px) {
    .kc-grid-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .article-row {
        flex-direction: column;
    }
    .article-thumb {
        flex: 0 0 auto;
        width: 100%;
    }
    .article-thumb img {
        height: 180px;
    }
    .media-thumb-container {
        height: 180px;
    }
}
/*Articles*/

/*Newsletter*/
:root {
    --brand-blue: #1b2b4e;
    --brand-gold: #b69b6a;
    --text-dark: #333333;
    --light-grey: #f0f0f0;
}



.feature-section {
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background-color: #fff;
}

.container {
    max-width: 1100px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px; /* Space between image and text */
}

/* Columns */
.image-column, .content-column {
    flex: 1;
}

.image-column img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px; /* Slight rounding like the image */
}

/* Typography */
.section-title {
    font-size: 2.5rem;
    color: var(--brand-blue);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #444;
}

/* The Inline Subscription Form */
.subscribe-form {
    display: flex;
    background-color: var(--light-grey);
    padding: 6px;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 450px;
}

.subscribe-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 15px;
    font-size: 1rem;
    outline: none;
}

.btn-subscribe {
    background-color: var(--brand-gold);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background-color: #a3895a;
}

/* Secondary Button Styling */
.btn-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: var(--brand-blue);
    color: white;
}

/* --- Responsiveness --- */

/* Tablet & Smaller Desktops */
@media (max-width: 992px) {
    .container {
        gap: 30px;
    }
    .section-title {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack vertically */
        text-align: center;
    }

    .image-column, .content-column {
        width: 100%;
    }

    .subscribe-form {
        margin: 0 auto 20px; /* Center the form on mobile */
    }

    .section-title {
        font-size: 1.8rem;
    }
}

.ws_controls,
.ws_bullets,
.ws_next,
.ws_prev,
.ws_playpause {
    display: none !important;
}
/* Regular Authority css */



.hero-sliderss {
    position: relative;
    width: 100%;
    height: 116vh;
    overflow: hidden;
}
.text-description {
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 30px;
}
.text-title-right {
   font-size: 32px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: "Inter", Roboto;
}  
.hero-sliderss img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	transform: scaleX(-1);
}

/* DARK OVERLAY */
.hero-sliderss .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(0 0 0 / 4%) 0%, rgb(0 0 0 / 5%) 40%, rgba(0, 0, 0, 0.14) 100%);
}

/* CONTENT */
.hero-content {
    position: absolute;
    top: 50%;
    left: 6%;
    transform: translateY(-50%);
    /*max-width: 700px;*/
    width:69%;
    color: #fff;
    z-index: 2;
}

/* TITLE */
.hero-content h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

/* DESCRIPTION */
.hero-content p {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 1.6;
    margin-bottom: 25px;
    color: #ddd;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn {
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

/* PRIMARY BUTTON */
.btn.primary {
    background: #d4af37;
    color: #000;
}

.btn.primary:hover {
    background: #b8962e;
}

/* OUTLINE BUTTON */
.btn.outline {
    border: 1px solid #fff;
    color: #fff;
}

.btn.outline:hover {
    background: #fff;
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-content {
        left: 5%;
        right: 5%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
   
}

.testimonial-section{
  width:100%;
  padding:80px 20px;
  text-align:center;
  background-image: url('/images/sampledata/images/testimonials.jpg');
}

.heading{font-size:32px;margin-bottom:10px}
.subheading{font-size:16px;color:#666;margin-bottom:40px}

.slider{
  max-width:900px;
  margin:auto;
  overflow:hidden;
  position:relative;
}

.slides{
  display:flex;
  transition:0.5s;
}

.slide{
  min-width:100%;
  padding:0 20px;
}

.testimonial-text{
  font-size:16px;
  line-height:1.6;
  color:#000;
  position:relative;
  font-family: "Roboto",sans-serif;
  font-weight: 400;
}

.testimonial-text::before{
  content:"\201C";
  font-size:60px;
  position:absolute;
  left:-17px;
  top:-20px;
  color:#ccb06b;
   /* background-image: url('/images/sampledata/images/Family_office_solution.png'); Replace with your specific leaf/logo watermark image     */

}

.testimonial-text::after{
  content:"\201D";
  font-size:60px;
  position:absolute;
  right:-17px;
  top:60%;
  color:#ccb06b;
}

.user{margin-top:30px}
.user img{
  width:70px;height:70px;border-radius:50%;margin-bottom:10px
}
.name{font-size:20px;font-weight:600;color:#253979;font-family: "Inter",Roboto;}
.role{font-size:16px;color:#656565;font-family: "Inter",Roboto;font-weight:500;}

/* Arrows */
.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  font-size:30px;
  cursor:pointer;
}
.arrow.left{left:10px}
.arrow.right{right:10px}

/* Dots */
.dots{margin-top:30px}
.dot{
  height:16px;width:16px;margin:0 10px;
  display:inline-block;background:#adadad;border-radius:50%;cursor:pointer
}
.dot.active{background:#253979}

