/* --- Global Reset --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #ffffff;
    overflow-x: hidden;
}

:root {
    --amdg-gold: #B98D1E;
    --amdg-navy: #061633;
}

html {
    scroll-behavior: smooth;
}

/* --- Reusable Custom Button Style  --- */

.amdg-btn-style {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: var(--amdg-gold);
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    color: #fff;
    padding: 10px 30px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

/* --- HERO WRAPPER --- */
/* .amdg-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background: linear-gradient(rgba(6, 22, 51, 0.6), rgba(6, 22, 51, 0.6)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?q=80&w=2070');
    background: linear-gradient(rgba(6, 22, 51, 0.6), rgba(6, 22, 51, 0.6)), url('../imgs/bannervideo.mp4');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* banner video */
.amdg-hero-wrapper {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

/* Background Video */
.amdg-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

/* Dark Overlay */
.amdg-hero-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 22, 51, 0.6);
    z-index: -1;
}

/* Ensure content stays above */
.amdg-header-nav,
.amdg-hero-main-content {
    position: relative;
    z-index: 2;
}

.hero-smallview {
    min-height: 80vh;
}

/* --- NAVBAR LOGIC --- */
.amdg-header-nav {
    width: 90%;
    max-width: 1540px;
    background: #fff;
    margin-top: 30px;
    padding: 10px 40px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    position: relative;
}

.amdg-main-logo {
    height: 45px;
    width: auto;
}

.amdg-nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.amdg-menu-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.amdg-menu-list a {
    text-decoration: none;
    color: #555;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s;
}

.amdg-menu-list a:hover,
.amdg-menu-list a.active {
    color: var(--amdg-gold);
}


/* Dropdown menu base */
.amdg-dropdown {
    position: relative;
}

/* Toggle row */
.amdg-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* Arrow animation */
.amdg-dropdown-arrow {
    margin-left: 6px;
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #B98D1E;
}

/* Animated dropdown */
.amdg-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;

}

/* Active state */
.amdg-dropdown.active .amdg-dropdown-menu {
    max-height: 500px;
    /* big enough for content */
    opacity: 1;
    stroke: #B98D1E;
}

/* Rotate arrow */
.amdg-dropdown.active .amdg-dropdown-arrow {
    transform: rotate(180deg);
    stroke: #B98D1E;
}

/* NAVBAR DROPDOWN MENU DESKTOP VERSION */

@media (min-width: 1101px) {

    .amdg-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background: white;
        padding: 10px 0;
        min-width: 200px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border-radius: 6px;

        max-height: 0;
        opacity: 0;
    }

    .amdg-dropdown-menu li a {
        font-size: 14px;
    }

    .amdg-dropdown:hover .amdg-dropdown-menu {
        max-height: 500px;
        opacity: 1;
    }

    .amdg-dropdown:hover .amdg-dropdown-arrow svg {
        fill: #B98D1E;
    }

    .amdg-dropdown-menu li {
        padding: 8px 15px;
    }

    .amdg-dropdown-menu li a {
        display: block;
    }
}

@media (max-width: 1101px) {

    .amdg-dropdown-menu li a {
        font-size: 14px;
        line-height: 2.5;
    }
}



/* --- HERO CONTENT --- */
.amdg-hero-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.amdg-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 25px;
    border-radius: 50px;

    /* Background: Navy Blue with transparency */
    background: rgba(12, 33, 84, 0.75);

    /* Light border jo image mein chamak raha hai */
    border: 1px solid rgba(255, 255, 255, 0.4);

    /* Glass effect */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    /* Text styling */
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;

    /* Subtle outer shadow */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

    margin-bottom: 25px;
}

/* Gold Dot styling */
.amdg-top-badge::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #B98D1E;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.amdg-hero-h1 {
    font-size: 60px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 25px;
}

.amdg-hero-p {
    font-size: 18px;
    max-width: 800px;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 300;
    opacity: 0.95;
}

/* --- MOBILE RESPONSIVE LOGIC (Hamburger) --- */
.amdg-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.amdg-hamburger span {
    width: 30px;
    height: 3px;
    background: var(--amdg-navy);
    border-radius: 5px;
    transition: 0.3s;
}

/* --- SERVICES (Slider) --- */
.amdg-services-wrapper {
    padding: 100px 5%;
    text-align: center;
    background: #fff;
}

.amdg-sub-head {
    display: block;
    margin-bottom: 10px;
    color: #0C2154;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
}

.amdg-main-head {
    font-size: 50px;
    color: #111;
    margin-bottom: 40px;
    line-height: 1.2;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.amdg-slider-outer {
    max-width: 1540px;
    margin: 0 auto;
    position: relative;
}

.swiper-slide {
    height: none !important;
}

.amdg-card-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    text-align: left;
    border: 1px solid #f0f0f0;
    height: 100%;
}

.amdg-card-box h3 {
    font-size: 30px;
    color: #0C2154;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.amdg-card-box h3::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--amdg-gold);
    border-radius: 50%;
}

.amdg-card-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/*  Arrow Styles (Center Bottom) */
.amdg-slider-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.amdg-nav-btn {
    cursor: pointer;
    width: 50px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    position: relative;
}

/* Custom Arrow Icons */
.amdg-nav-btn::after {
    font-size: 30px;
    color: var(--amdg-navy);
    font-weight: bold;
}

.amdg-prev-btn::after {
    content: '←';
}

.amdg-next-btn::after {
    content: '→';
}

.amdg-nav-btn:hover {
    opacity: 0.6;
}

/* --- SECTION 3: ABOUT (Dark Blue) --- */
.amdg-about-wrapper {
    /* background-image: url("c:/figma_dev/mXhehq/web/assets/imgs/bgpattern.png"); */
    background-image: url("../imgs/bgpattern.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
}

.nobg {
    background-image: none;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 5%;
    text-align: center;
    color: #fff;
    margin: 100px 0;
}

.how-para p {
    margin: 0 10px !important;
    color: #FFF;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
}

.how-para {
    justify-self: center;
    margin: 0 !important;
    max-width: 1093px !important;
}

.amdg-about-tag {
    color: var(--amdg-gold);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 15px;
    display: block;
}

.how-tag {
    margin-top: 30px;
    color: #B98D1E;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
    padding: 0 8%;

}

.amdg-about-content-inner {
    max-width: 850px;
    margin: 0 auto;
}

.amdg-about-content-inner p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.85;
    line-height: 1.2em;
}

.team-client-text p {
    margin-bottom: 40px;
    line-height: 1.2em;
    color: #737373;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.amdg-ind-section {
    padding: 100px 20px;
    background-color: #fdfdfd;
    text-align: center;
}

.amdg-ind-container {
    max-width: 1540px;
    margin: 0 auto;
}

.amdg-ind-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.amdg-ind-desc {
    font-size: 16px;
    color: #666;
    max-width: 850px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Grid Layout */
.amdg-ind-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Box Styling  */
.amdg-ind-card {
    width: 285px;
    height: 220px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 13px 12px 0 rgba(196, 196, 196, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

/* Icon Image Styling */
.amdg-ind-icon {
    width: 55px;
    height: auto;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

/* Text Styling */
.amdg-ind-card span {
    font-size: 16px;
    font-weight: 500;
    color: #0C2154;
    transition: all 0.4s ease;
}

/* --- HOVER EFFECT --- */
.amdg-ind-card:hover {
    background: #0C2154;
    transform: translateY(-8px);
}

.amdg-ind-card:hover span {
    color: #FFF;
}

.amdg-ind-card:hover .amdg-ind-icon {
    filter: brightness(0) invert(1);
}


/* --- PROCESS SECTION --- */
.amdg-proc-section {
    padding: 100px 20px;
    background-color: #fff;
}

.amdg-proc-container {
    max-width: 1540px;
    margin: 0 auto;
    display: flex;
    gap: 160px;
    align-items: flex-start;
}

/* Left Side - Steps List */
.amdg-proc-left {
    flex: 1;
}

.amdg-proc-title {
    font-size: 40px;
    font-weight: 600;
    color: #000;
    line-height: 1.1;
    margin-bottom: 25px;
}

.amdg-proc-badge {
    display: inline-block;
    margin-bottom: 40px;
}

.amdg-proc-steps {
    list-style: none;
    padding: 0;
}

.amdg-proc-item {
    padding: 25px 0;
    border-bottom: 1px solid #ddd;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #999;
    font-size: 27px;
    font-weight: 500;
}

.amdg-proc-item:last-child {
    border-bottom: none;
}

/* Hover effect */
.amdg-proc-item:hover {
    color: #0C2154;
}

/* Active State (On Click) */
.amdg-proc-item.active {
    color: #0C2154;
    font-weight: 600;
}

.amdg-proc-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    font-size: 24px;
    font-weight: 900;
    -webkit-text-stroke-width: thin;
}

.amdg-proc-item.active .amdg-proc-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Right Side - Content Card */
.amdg-proc-right {

    flex: 1;
    position: relative;
}

.amdg-proc-top-text {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.amdg-proc-top-text-md {
    display: none;
}

.amdg-proc-card {
    /* background-image: url('c:/figma_dev/mXhehq/web/assets/imgs/Rectangle 27-w-shadow.png'); */
    background-image: url("../imgs/Rectangle\ 27-w-shadow.png");
    background-repeat: no-repeat;
    background-size: 100% 97%;
    background-position: center;
    padding-bottom: 20px;
    padding-top: 20px;
    position: relative;


}

.amdg-proc-img-wrapper {
    width: 90%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    margin-left: 2em;
    margin-top: 2em;
}

.amdg-proc-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.amdg-proc-body {
    padding: 40px;
}

.amdg-proc-desc {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    font-weight: 300;
    min-height: 150px;
}

/* Fixed Button on Bottom Right of Card */
.amdg-proc-btn-wrapper {
    position: absolute;
    bottom: 30px;
    right: 15px;
}

/* Shared Button Style  */
.amdg-btn-shared {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: #B98D1E;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    color: white;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    border: none;
    transition: 0.5s ease;
}

/* --- WHY WORK WITH US SECTION --- */
.amdg-why-work-section {
    padding: 100px 0 60px 0;
    background: linear-gradient(to bottom, #ffffff 65%, #0C2154 65%);
    text-align: center;
}

.amdg-container-1540 {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.amdg-why-main-title {
    font-size: 48px;
    font-weight: 600;
    color: #000;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
}

.amdg-why-cards-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

.amdg-why-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    background: linear-gradient(white, white) padding-box, linear-gradient(0deg, rgba(185, 141, 30, 1) 0%, #b98d1e 15%, #b98d1e4d 30%, rgba(255, 255, 255, 1) 80%) border-box;
    border: 3px solid transparent;
    box-shadow: -1px 30px 10px 10px rgba(8, 21, 70, 0.06);
}

.amdg-why-card:hover {
    transform: translateY(-10px);
}

.amdg-why-icon-box {
    margin-bottom: 25px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}



.amdg-why-card h3 {
    font-size: 35px;
    color: #0C2154;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    min-height: 64px;
}

.amdg-why-card p {
    font-size: 20px;
    color: #8F8F8F;
    line-height: 1.2em;
    font-weight: 300;
}

.amdg-why-footer {
    margin-top: 20px;
}


/* Specific Button Style Applied */
.amdg-why-footer .amdg-btn-style {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: #B98D1E;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    padding: 12px 45px;
    font-size: 16px;
}

/* --- GLOBAL CONTAINER --- */
.amdg-container-1540 {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}


/* --- PODCAST SECTION --- */

/* Container Spacing */
.amdg-podcast-v3-section {
    padding: 100px 0;
    background-color: #ffffff;
}

/* Main Dark Card */
.amdg-podcast-v3-card {
    /* background-image: url('c:/figma_dev/mXhehq/web/assets/imgs/bg-cutout.png'); */
    background-image: url("../imgs/bg-cutout.png");
    background-repeat: no-repeat;
    background-size: 100% 97%;
    background-position: center;
    border-radius: 40px 40px 0 40px;
    padding: 60px 30px;
    position: relative;
    color: #fff;
}

/* 3 Column Grid Layout */
.amdg-podcast-v3-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 1st COLUMN: Headings */
.amdg-col-headings {
    flex: 1.2;
}

.amdg-pod-tag {
    color: #B98D1E;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
}

.amdg-pod-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
}

.amdg-pod-title span {
    font-weight: 300;
    font-size: 30px;
    display: block;
    margin-top: 5px;
}

/* 2nd COLUMN: Text */
.amdg-col-description {
    flex: 1.5;
}

.amdg-pod-desc {
    font-size: 18px;
    color: #cbd5e0;
    line-height: 1.2em;
    font-weight: 300;
}

/* 3rd COLUMN: Image & Button Logic */
.amdg-col-media {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.amdg-pod-img-wrapper {
    margin-bottom: 20px;
}

.amdg-pod-img-wrapper img {
    width: 79%;
    float: left;
}

.amdg-pod-v3-img {
    width: 130px;
    height: auto;
}



/* --- CUTOUT BUTTON LOGIC  --- */

/* Inner Button Wrapper */
.amdg-pod-v3-cutout-inner {
    padding-top: 10px;
}

/* Specific Button CSS */
.amdg-pod-v3-cutout-inner .amdg-btn-style {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: #B98D1E;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    color: #fff;
    padding: 12px 46px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 19px;
    top: 160px;
}


/* --- CONTACT SECTION --- */
.amdg-contact-section {
    padding: 100px 0;
    background-color: #fff;
}

.contactpage-section {
    padding: 150px 0;
}

.amdg-contact-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.amdg-contact-info {
    flex: 0 0 35%;
}

.amdg-contact-tag {
    display: block;
    color: #0C2154;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 22px */
}

.amdg-contact-title {
    font-size: 80px;
    font-weight: 600;
    color: #000;
    line-height: 1.1em;
}

.amdg-contact-subtitle {
    color: #737373;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    margin-bottom: 25px;
}

.amdg-contact-desc {
    color: #737373;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

/* FORM STYLING */
.amdg-contact-form-wrapper {
    flex: 1;
}

.amdg-form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.amdg-form-row input,
.amdg-form-full input,
.amdg-form-full textarea {
    width: 100%;
    padding: 12px 20px;
    border-radius: 22px;
    border: 2px solid #ddd;
    font-size: 14px;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.amdg-form-full {
    margin-bottom: 20px;
}

.amdg-form-full textarea {
    border-radius: 22px;
    resize: none;
}

.amdg-form-submit {
    margin-top: 10px;
}

.custom-input::placeholder {
    color: #b1b1b1;
    font-size: large;
    font-style: italic;
}

/* --- FOOTER SECTION --- */
.amdg-footer {
    background: radial-gradient(125.83% 136.79% at 50% 17.04%, #0C2154 25.62%, #050D21 100%);
    fill: radial-gradient(125.83% 136.79% at 50% 17.04%, #0C2154 25.62%, #050D21 100%);
    padding: 80px 0 30px 0;
    color: #fff;
    border-radius: 60px 60px 0 0;
    margin-top: 100px;
}

.amdg-footer-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
}

.amdg-footer-logo img {
    width: 180px;
    margin-bottom: 30px;
}

.amdg-footer-associations {
    display: flex;
    gap: 20px;
    align-items: center;
}

.amdg-footer-associations img {
    height: 30px;
}

.amdg-footer-col-2 {
    display: flex;
    gap: 40px;
}

.amdg-footer-links h3,
.amdg-footer-contact h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
}

.amdg-footer-links ul {
    list-style: none;
    padding: 0;
    line-height: 1.2;

}

.amdg-footer-links ul li {
    margin-bottom: 12px;
}

.amdg-footer-links ul li a {
    text-decoration: none;
    transition: 0.3s;
    color: #9FB3E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
}

.amdg-footer-links ul li a:hover {
    color: #B98D1E;
}

.amdg-footer-contact p {
    font-weight: 300;
    color: #9FB3E6;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
}

.amdg-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    text-align: center;
}

.amdg-footer-bottom p {
    font-size: 12px;
    color: #777;
}

/* Global Button  */
.amdg-btn-style {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: #B98D1E;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    color: #fff;
    padding: 8px 35px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    transition: all .3 ease;
}

.amdg-header-btn-wrap:hover .amdg-btn-style {
    background: #0C2154;
    color: #B98D1E;
}

.active-state {
    background: #0C2154;
    color: #B98D1E;
}


/* about page css */

.about-our-firm {
    background: #F8F8F8;
    padding: 100px 50px;

}

.about-card-container {
    height: 500px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 8%;
}

.amdg-aboutcardhead-1 {
    padding-bottom: 1em;
    color: #B98D1E;
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.amdg-aboutcardhead-2 {
    color: #0C2154;
    text-align: center;
    padding-bottom: 16px;
    font-size: 30px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.amdg-aboutcardcontent {
    color: #8F8F8F;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
}


/* explore amdg */
.explore-amdg {
    padding: 120px;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 20px;

}

.sol-ser-row-1 {
    display: flex;
    padding-bottom: 10em;

}

.sol-ser-row-2 {
    display: flex;
    padding-bottom: 10em;

}

.expl-card-left h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
    padding-top: 70px;
    padding-bottom: 26px;

}

.expl-card-left p {
    color: #8F8F8F;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
    padding-right: 5em;
}

.expl-card-right {
    padding: 18px;
    border-radius: 10px;
}

.expl-card-right .expl-img-cont-1 {
    background-image: url("../imgs/aboutservice1.png");
    background-color: #00144679;
    background-position: center;
    background-size: cover;
    width: 663px;
    height: 520px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

.expl-card-right .expl-img-cont-2 {
    background-image: url("../imgs/aboutservice2.png");
    background-position: center;
    background-size: cover;
    width: 663px;
    height: 520px;
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    overflow: hidden;
}

.expl-img-cont-1 img {
    align-items: center;
    justify-items: center;

}

.expl-card-right-hide {
    display: none;
}

.expl-card-left-b h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
    padding-top: 100px;
    padding-bottom: 26px;

}

.expl-card-left-b p {
    color: #8F8F8F;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
}

.expl-card-left h2 {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
    padding-top: 70px;
    padding-bottom: 26px;

}

.expl-card-left-b {
    padding-left: 5em;

}

.textcontent-col {
    align-content: start;

}

.expl-headings {
    font-size: 30px;
}

.expl-content {
    font-size: 20px;
    width: 60%;
}

.expl-img-cont-1 {
    display: flex;
    align-items: end;
}

/* custom bullet design */
.amdg-bullet-pt-sm {
    background-color: #B98D1E;
    width: 9px;
    height: 9px;
    border-radius: 100px;
    /* border: 1px solid white; */
    margin-right: 1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
}

.amdg-bullet-pt-sm::before {
    content: "";
    width: 9px;
    height: 9px;
    background-color: #B98D1E;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.amdg-bullet-pt {
    background-color: #B98D1E;
    width: 19px;
    height: 19px;
    border-radius: 100px;
    border: 1px solid white;
    margin-right: 1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
}

.amdg-bullet-pt::before {
    content: "";
    width: 19px;
    height: 19px;
    background-color: #B98D1E;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.amdg-bullet-pnt {
    margin-top: 40px;
    ;
    margin-bottom: -20px !important;
}

.amdg-abtwhy-section {
    background: linear-gradient(to bottom,
            #ffffff 0%, #ffffff 53.3%,
            #F0F0F0 53.3%, #F0F0F0 82.6%,
            #ffffff 82.6%, #ffffff 100%);
    text-align: center;

}

.amdg-abtwhy-container {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 20px;
}

.amdg-abtwhy-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
}

.amdg-abtwhy-desc {
    font-size: 18px;
    color: #666;
    max-width: 850px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    font-weight: 400;
    padding: 0 5%;
}

/* Grid Layout */
.amdg-abtwhy-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 15px;
}

/* about why page Box Styling  */
.amdg-abtwhy-card {
    width: 442px;
    height: 207px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 29px 94px;
}

.amdg-abtwhy-card .amdg-bullet-pt {
    width: 19px;
    height: 19px;
    fill: var(--Color, #B98D1E);
    stroke-width: 1px;
    stroke: #FFF;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
}


/* Text Styling */
.amdg-abtwhy-card span {
    font-size: 20px;
    font-weight: 500;
    color: #0C2154;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;

}


/* about  */
.amdg-abtpodcast-v3-section {
    /* padding: 100px 120px; */
    background-color: #ffffff;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 20px;
}

/* Main Dark Card */
.amdg-abtpodcast-v3-card {
    background-image: url("../imgs/bg-cutout.png");
    background-repeat: no-repeat;
    background-size: 100% 97%;
    background-position: center;
    border-radius: 40px 40px 0 40px;
    padding: 60px 30px;
    position: relative;
    color: #fff;
}

/* 3 Column Grid Layout */
.amdg-abtpodcast-v3-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* 1st COLUMN: Headings */
.amdg-abtcol-headings {
    flex: 1.2;
}

.amdg-abtpod-tag {
    color: #B98D1E;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    display: block;
    margin-bottom: 15px;
}

.amdg-abtpod-title {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
}

.amdg-abtpod-title span {
    font-weight: 300;
    font-size: 30px;
    display: block;
    color: #FFF;
    text-align: right;
    font-size: 48px;
    font-style: normal;
    font-weight: 600;
    line-height: 90%;
    text-transform: capitalize;
}

/* 2nd COLUMN: Text */
.amdg-abtcol-description {
    flex: 1.5;
}

.amdg-abtpod-desc {
    color: #D1DEFF;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

/* 3rd COLUMN: Image & Button Logic */
.amdg-abtcol-media {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    align-items: end;
    position: relative;
}

.amdg-abtpod-img-wrapper {
    margin-bottom: 20px;
    margin-right: 4em;
}

.amdg-abtpod-img-wrapper img {
    width: 100%;
    float: left;
}

.amdg-abtpod-v3-img {
    width: 130px;
    height: auto;
}

/* --- CUTOUT BUTTON LOGIC --- */

/* Inner Button Wrapper */
.amdg-abtpod-v3-cutout-inner {
    padding-top: 10px;
}

/* Specific Button CSS */
.amdg-abtpod-v3-cutout-inner .amdg-btn-style {
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.00);
    background: #B98D1E;
    box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.40);
    color: #fff;
    padding: 11px 65px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    left: 1px;
    top: 106px;
}


/* who we serve */

.amdg-whoweserve-section {
    padding: 100px 20px;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;

}

.amdg-whoweserve-container {
    display: flex;
    margin: 0 20px;
    gap: 80px;
    align-items: center;
    justify-content: space-between;

}

.amdg-whoweserve-left {
    flex: 1;
}

.amdg-whoweserve-right {
    flex: 1.2;
}

.amdg-whoweserve-title {
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
    padding-bottom: 30px;
}

.amdg-whoweserve-left>h3 {
    color: #0C2154;
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}

.amdg-whoweserve-left>p {
    color: #737373;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.amdg-whoweserve-steps {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.amdg-whoweserve-item {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    color: #737373;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.amdg-whoweserve-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #D0A63D;
    border-radius: 50%;
}


/* who we serve left side card */
/* Card Container */
.amdg-whoweserve-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
}

/* Base Card Style */
.amdg-whoweserve-topcard {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
}

/* Split Top Card */
.amdg-whoweserve-topcard {
    justify-content: space-between;
    align-items: center;
    width: 553px;
    height: 157px;
    border-radius: 20px;
    border: 1px solid #D0A63D;
    background: #FFF;
    box-shadow: 0 25px 30px -10px rgba(91, 91, 91, 0.20);
}

.amdg-whoweserve-topleft {
    border-right: 1px solid #ddd;
    flex: 1;
    color: #0C2154;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.amdg-whoweserve-topright {
    padding-left: 30px;
    flex: 1;
}

.amdg-whoweserve-topright h3 {

    color: #CDA133;
    text-align: center;
    font-family: Poppins;
    font-size: 35px;
    font-style: normal;
    font-weight: 600;
    line-height: 125%;
}

.amdg-whoweserve-topright h4 {
    color: #8F8F8F;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    text-align: center;
}


/* Bottom Card Grid */
.amdg-whoweserve-bcard-container {
    display: grid;
    grid-template-columns: 4fr 4fr;
    gap: 20px;
    justify-items: end;
}

.amdg-whoweserve-bcard-left {
    width: 296px;
    height: 137px;
    border-radius: 20px;
    border: 1px solid #D0A63D;
    background: #FFF;
    box-shadow: 0 25px 30px -10px rgba(91, 91, 91, 0.20);
    padding: 25px 50px;
}

.amdg-whoweserve-bcard-left h3 {
    color: #0C2154;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;

}

.amdg-whoweserve-bcard-right {
    width: 336px;
    height: 137px;
    border-radius: 20px;
    border: 1px solid #D0A63D;
    background: #FFF;
    box-shadow: 0 25px 30px -10px rgba(91, 91, 91, 0.20);
    padding: 25px 50px;

}

.amdg-whoweserve-bcard-right h3 {
    color: #0C2154;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;

}


/* PROCESS PAGE CSS */

.our-process-banner-card {
    background: #F8F8F8;
    padding: 100px 50px;
}

.our-process-card-container {
    width: 70%;
    height: 495px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    max-width: 1540px;
    margin: 0 auto;
    padding: 0px 20px;
}

.amdg-cardhead-1 {
    color: #0C2154;
    text-align: center;
    padding-bottom: 40px;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.amdg-cardcontent {
    color: #8F8F8F;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
    text-align: center;
    padding: 0 196px;
}

.process-page-list-card {
    background-image: unset;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 13px 12px 0 rgba(196, 196, 196, 0.25);
    margin-top: 75px;
}

/* process page card grid */

.amdg-prodif-section {
    background: linear-gradient(to bottom,
            #ffffff 0%, #ffffff 36.3%,
            #F8F8F8 36.3%, #F8F8F8 82.6%,
            #ffffff 82.6%, #ffffff 100%);
    text-align: center;

}

.amdg-prodif-container {
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 20px;
}

.amdg-prodif-title {
    font-size: 42px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
}

.amdg-prodif-desc {
    font-size: 16px;
    color: #666;
    max-width: 850px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Grid Layout */
.amdg-prodif-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px;
    padding: 15px;
}

/* Box Styling */
.amdg-prodif-card {
    width: 550px;
    height: 274px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 31px 70px;
}

.amdg-prodif-card .amdg-bullet-pt {
    width: 19px;
    height: 19px;
    margin-left: 0;
    margin-bottom: 20px;
    fill: var(--Color, #B98D1E);
    stroke-width: 1px;
    stroke: #FFF;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
}

.amdg-prodif-card span {
    font-size: 22px;
    font-weight: 500;
    color: #0C2154;
    text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.amdg-process-dark-card {
    width: 938px;
    height: 236px;
    border-radius: 20px;
    background: #0C2154;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-top: 50px;
}

.dark-card-heading {
    color: #FFF;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: capitalize;
}

.dark-card-content {
    color: #D1DEFF;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    padding: 20px 180px;
    padding-bottom: 0;
}


/* Explore Solutions & Services */
/* Grid Layout */
.amdg-customcard-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Box Styling */
.amdg-customcard-body {
    width: 305px;
    height: 322px;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 29px 44px;
    transition: all 0.3s ease;
}

.amdg-customcard-body .amdg-bullet-pt {
    width: 19px;
    height: 19px;
    fill: var(--Color, #B98D1E);
    stroke-width: 1px;
    stroke: #FFF;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
    margin-left: 1em;
}


/* Text Styling */
.amdg-customcard-body span {
    text-align: center;
    color: #0C2154;
    text-align: center;
    font-size: 30px;
    font-style: normal;
    font-weight: 600;
    line-height: 110%;
}

.amdg-customcard-btn a {
    padding: 8px 35px;
}

.amdg-customcard-body:hover {
    background-image: url(../imgs/bgpattern.png);
    box-shadow: none;
    transform: translateY(-5px);

}

.amdg-customcard-body:hover span {
    color: #FFF;
}

.amdg-profile-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.amdg-profile-flex {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100% !important;

}

/* --- WHITE CARD LOGIC --- */
.amdg-profile-card-wrapper {
    filter: drop-shadow(0 12px 15px rgba(200, 200, 200, 0.25));
}

.amdg-profile-card {
    background-image: url('../imgs/bgcutout-team.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    padding: 60px;
    position: relative;
    border-bottom-right-radius: 0;
}

.amdg-profile-text p {
    font-size: 18px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.amdg-highlight-blue {
    color: #0C2154;
    font-weight: 600;
}

/* --- THE CUTOUT (TAB) --- */
.amdg-profile-cutout {
    position: absolute;
    bottom: 33px;
    right: -345px;
    width: 450px;
    /* Space for email button */
    height: 90px;
    border-top-left-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.amdg-contact-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-right: -40px;
    z-index: 5;
}

.amdg-mail-icon {
    width: 45px;
    height: 45px;
    background: #B98D1E;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.amdg-contact-row .amdg-btn-style {
    padding: 12px 75px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: lowercase;
}

.amdg-profile-text p {
    width: 93%;
}

/* --- RIGHT SIDE MEDIA --- */
.amdg-profile-media {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.amdg-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.amdg-person-img {
    width: 100%;
    height: auto;
    display: block;
    z-index: 1;
}

.amdg-image-container img {
    margin-bottom: -60px;
}



/* featured podcast card 1 */

.spotify-banner {
    position: relative;
    background: #0C2154;
    color: #fff;
    padding: 8px 170px 8px 50px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 400;
    justify-self: anchor-center;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #B98D1E;
    border-radius: 50%;
    margin-right: 14px;


}

.spotify-icon {
    position: absolute;
    right: 35px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotify-icon img {
    width: 80px;
    height: 80px;

}

.featured-podcast-sec {
    padding: 0px 20px 50px 20px;
}

.featured-podcast-sec-container {
    width: 60%;
    border-radius: 20px;
    background: #FFF;
    box-shadow: 0 25px 30px -7px rgba(91, 91, 91, 0.20);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    max-width: 1540px;
    margin: 0 auto;
    padding: 80px 20px;
}

.featuref-podcast-head {
    padding-bottom: 0;
}

.featured-content {
    padding: 15px;
    width: 78%;
    place-self: center;
}

/* what we cover card grid */
.wecover-bg {
    background: linear-gradient(to bottom,
            #ffffff 0%, #ffffff 45.3%,
            #F8F8F8 25.3%, #F8F8F8 82.6%,
            #ffffff 100%, #ffffff 100%);
}

.wecover-card {
    width: 320px;
    justify-content: start;
    padding: 30px 40px;
}

.wecover-card span {
    padding-top: 25px;
}

.wecover-title {
    color: #000;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;

}


/* services main page */

/* Section */
.service-hero {
    font-size: 50px !important;

}

.advisory-section {
    padding: 80px 0 0 0;
    background: #F8F8F8;
    background: linear-gradient(0deg, #ffffff 9%, #f8f8f8 5%, #f8f8f8 65%, #ffffff 50%);
}

.secondary {
    padding-top: 50px;
    background: none;
}

.sub-sections {
    padding-top: 0;
    background: #F8F8F8;
    background: linear-gradient(0deg, #ffffff 12%, #f8f8f8 5%, #f8f8f8 72%, #ffffff 50%);

}

.container {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1540px;
    margin: 0 auto;
    width: 100%;
    padding: 100px 20px 0px 20px;
}

.sub-secondary {
    padding-top: 0;
}

/* Left Content */
.content {
    flex: 1;
}

.content h2 {
    margin-bottom: 25px;
    color: #000;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.content p {

    margin-bottom: 30px;
    color: #8F8F8F;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 125%;
}

/* Button */
.btn-primary {
    display: inline-block;
    background: #c3922e;
    color: #fff;
    padding: 12px 26px;
    border-radius: 25px;
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: #b38223;
    transform: translateY(-2px);
}

/* Right Image Card */
.image-card {
    flex: 1;
    position: relative;
    max-width: 663px;
}

.image-card img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.image-card-smallscreen {

    display: none;
}

.service-approach-bg {
    padding-top: 100px;
    background: #f8f8f8;
    background: linear-gradient(0deg, #ffffff 25%, #f8f8f8 5%, #f8f8f8 55%, #ffffff 50%);
}

.approach-list-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    color: #0C2154;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    padding-bottom: 20px;

}

.approach-list-1 {
    justify-items: start;
}

.approach-list-item {
    padding-bottom: 20px;

}

.service-approach-desc {
    font-size: 20px;
    margin-bottom: 70px;

}

.service-approach-card {
    width: 1000px;
    justify-content: center;
    padding: 30px 40px;

}

.service-approach-card span {
    text-align: center;
    color: #0C2154;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: capitalize;
    padding-bottom: 20px;
}

.service-approach-card p {
    color: #737373;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

.approach-list-2 {
    justify-items: start;
}

/* Contact page CSS */
.contact-page-btn-row {
    padding-top: 50px;
    justify-content: center;
}

.contact-card-container {
    padding: 0 10%;
}

.contact-cardcontent {
    padding: 0;
}

/* Service sell page CSS */

.sell-card-container {
    height: 570px;
    padding: 0px 10%;
}

.sell-cardcontent {
    padding: 0;
}

.sell-cardcontent strong {
    font-weight: 600;
}

.service-sell-section {
    background: #ffffff !important;
}

.service-sell-title {
    text-align: center;
    font-size: 50px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    text-transform: capitalize;
}

.service-sell-desc {
    margin: 0;
    justify-self: center;
    max-width: unset;
    padding: 0 16%;
    color: #737373;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.service-sell-desc strong {
    font-weight: 600;
}

.services-card-right {
    margin-top: 8%;
    height: 650px;
    background: #0C2154;
    border-radius: 20px;
    filter: drop-shadow(0 12px 15px rgba(200, 200, 200, 0.25));
    color: white;
    font-size: 20px;
}

.service-points-bg {
    /* padding-top: 100px; */
    background: #f8f8f8;
    background: linear-gradient(0deg, #ffffff 30%, #f8f8f8 5%, #f8f8f8 67%, #ffffff 50%) !important;
}

.service-points-desc {
    color: #737373;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
}

.service-points-container {
    flex-direction: row;
    flex-wrap: wrap;
    padding-bottom: 50px;
    column-gap: 50px;

}

.service-points {
    padding-bottom: 0 !important;
}

.service-points-card {
    height: unset;
    width: 1100px;
    padding: 50px 10%;
    justify-content: center;
}

.service-points-card span {
    padding-bottom: 30px;
    color: #0C2154;
    text-align: center;
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 90%;
    text-transform: capitalize;

}

.service-points-card p {
    color: #737373;
    text-align: center;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
}

.services-customcard span {
    font-weight: 400;

}

/* custom dark bullet design */
.amdg-bullet-pt-dark {
    background-color: #0C2154;
    width: 19px;
    height: 19px;
    border-radius: 100px;
    border: 1px solid white;
    margin-right: 1em;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 8.6px rgba(11, 11, 11, 0.25));
    transition: all 0.3s ease;
}

.amdg-customcard-body:hover .amdg-bullet-pt-dark {
    background-color: #B98D1E;
}

/* exit plan service */
.exit-service-points-container {
    padding: 0 37px 50px 37px;
}

/* buy-side service */
.buyside-service-points-container {
    padding: 0 104px 50px 104px;
}

/* The Snackbar */


#snackbar {
    visibility: hidden;
    min-width: 280px;
    background-color: #003ebb;
    /* Success Green */
    color: white;
    text-align: center;
    border-radius: 8px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

#snackbar.show {
    visibility: visible;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}









/* Responsive */
@media (max-width: 1100px) {
    .amdg-profile-flex {
        flex-direction: column;
    }

    .amdg-profile-cutout {
        position: relative;
        width: 100%;
        border-radius: 0;
        background: transparent;
        padding: 20px 0;
    }

    .amdg-profile-cutout::before,
    .amdg-profile-cutout::after {
        display: none;
    }

    .amdg-name-plate {
        position: relative;
        left: 0;
        width: 100%;
        margin-top: -30px;
    }

    .amdg-contact-row {
        margin-right: 0;
        justify-content: center;
    }
}



/* service main page  */
@media (max-width: 900px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content p {
        max-width: 100%;
    }
}



/* Mobile Responsiveness */
@media (max-width: 992px) {
    .amdg-why-cards-grid {
        flex-direction: column;
        align-items: center;
    }

    .amdg-why-card {
        width: 100%;
        max-width: 450px;
    }

    .amdg-why-work-section {
        background: linear-gradient(to bottom, #ffffff 90%, #061633 90%);
    }
}




/* Responsive Fixes */
@media (max-width: 768px) {
    .amdg-hero-main-content h1 {
        font-size: 32px;
    }

    .amdg-main-head {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .amdg-proc-container {
        flex-direction: column;
    }

    .amdg-proc-left,
    .amdg-proc-right {
        width: 100%;
    }

    .amdg-proc-btn-wrapper {
        right: 20px;
    }
}

@media (max-width: 1100px) {
    .amdg-header-nav {
        padding: 15px 25px;
        width: 95%;
    }

    .amdg-hamburger {
        display: flex;
    }

    .amdg-nav-container {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        display: none;
        gap: 20px;
    }

    .amdg-nav-container.active {
        display: flex;
    }

    .amdg-menu-list {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .amdg-hero-h1 {
        font-size: 36px;
    }

    .amdg-hero-p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .amdg-hero-h1 {
        font-size: 28px;
    }

    .amdg-header-nav {
        border-radius: 30px;
    }
}



/* responsivness custom css */
@media (max-width: 1439px) {

    /* Specific Button CSS */
    .amdg-pod-v3-cutout-inner .amdg-btn-style {
        padding: 12px 26px;
        position: absolute;
        left: -40px;
        top: 180px;
    }

    .amdg-podcast-v3-card {
        background: #0c2154;
        background-repeat: no-repeat;
        background-size: 100% 80%;
        background-position: center;
        border-radius: 30px;
        padding: 60px 30px;
    }

    .amdg-proc-card {
        overflow: hidden;
        background: #fff;
        border-radius: 25px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
        overflow: hidden;
        padding-bottom: 20px;
        position: relative;

    }

    .amdg-proc-img-wrapper {
        width: 90%;
        height: 200px;
        border-radius: 20px;
        overflow: hidden;
    }

    .amdg-proc-desc {
        line-height: 1.33;
        min-height: 160px;
    }

    .amdg-proc-btn-wrapper {
        bottom: 15px;
        right: 15px;
    }

    .amdg-proc-section {
        padding: 100px 20px;
    }

    .amdg-proc-container {
        gap: 60px;
    }

    .amdg-proc-img-wrapper {
        width: 85%;
        height: 170px;
    }

    .amdg-proc-item {
        padding: 20px 0;
        border-bottom: 1px solid #ddd;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: all 0.3s ease;
        color: #999;
        font-size: 20px;
        font-weight: 500;
    }

    .explore-amdg {
        padding: 120px;
    }

    .sol-ser-row-1 {
        display: flex;
        padding-bottom: 5em;
        flex-direction: column;
    }

    .sol-ser-row-2 {
        display: flex;
        padding-bottom: 5em;
        flex-direction: column-reverse;
    }

    .expl-card-left-b {
        padding-left: 0;
    }

    .expl-card-left p {
        padding-bottom: 10px;
    }

    .expl-card-left-b h2 {
        padding-bottom: 26px;
        padding-top: 50px;
    }

    .amdg-abtpodcast-v3-section {
        padding: 1% 50px;
    }

    .amdg-abtpodcast-v3-card {
        background-image: none;
        background-color: #0C2154;
        border-radius: 40px;
    }

    .amdg-abtpod-v3-cutout-inner .amdg-btn-style {
        padding: 11px 25px;
        left: -45px;
        top: 78px;
    }

    .amdg-whoweserve-container {
        flex-direction: column;
    }

    .amdg-abtpod-desc {
        font-size: 17px;
    }

    .amdg-abtpod-title span {
        font-size: 30px;
    }

    .amdg-abtwhy-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 42.3%, #F0F0F0 42.3%, #F0F0F0 82.6%, #ffffff 82.6%, #ffffff 100%);
    }

    .our-process-card-container {
        width: 100%;
    }

    .amdg-prodif-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 36.3%, #F0F0F0 25.3%, #F0F0F0 82.6%, #ffffff 82.6%, #ffffff 100%);
    }

    .amdg-prodif-card {
        width: 450px;
    }

    .amdg-customcard-body {
        width: 210px;
        height: 230px;
        padding: 20px 20px;
    }

    .amdg-customcard-body span {
        font-size: 26px;
    }

    .amdg-process-dark-card {
        width: 700px;
    }

    .dark-card-content {
        padding: 20px;

    }

    /* OUR Team Page Custom Responsive */

    .amdg-profile-card {
        background-image: none;
        background-size: 100% 100%;
        background-position: center;
        padding: 30px 60px;
        position: relative;
    }

    .amdg-profile-flex {
        flex-direction: column-reverse;
        align-items: center;
    }

    .amdg-profile-card-wrapper {
        margin-top: 100px;
        border-radius: 20px;
        background-color: #FFF;
    }

    .amdg-profile-cutout {
        position: relative;
        bottom: unset;
        right: unset;
        justify-content: unset;
    }

    .service-approach-bg {
        background: linear-gradient(0deg, #ffffff 25%, #f8f8f8 5%, #f8f8f8 55%, #ffffff 50%);
    }

    .featured-podcast-sec-container {
        width: 100%;
    }

    .wecover-bg {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35.3%, #F8F8F8 25.3%, #F8F8F7 82.6%, #ffffff 100%, #ffffff 100%);
    }

    .how-tag {
        padding: 0 15%;
    }

    .content h2 {
        margin-bottom: 10px;
        color: #000;
        font-size: 40px;
        font-style: normal;
    }

    .content p {
        margin-bottom: 16px;
        color: #8F8F8F;
        font-size: 16px;
    }

}


@media (max-width: 1023px) {

    .amdg-podcast-v3-card {
        display: flex;
        flex-direction: column;
        padding: 30px 0 30px 0 !important;
    }

    .amdg-podcast-v3-grid {
        flex-direction: column;
        align-items: start;
        padding: 0 2em;
    }

    .amdg-col-media {
        display: flex;
        justify-items: start;
        align-content: start;

    }

    .amdg-col-media .amdg-pod-img-wrapper {
        display: flex;

    }

    .amdg-pod-v3-cutout-inner .amdg-btn-style {
        padding: 12px 46px;
        position: absolute;
        left: 380px;
        top: 60px;
    }

    .amdg-podcast-v3-card {
        background: #0c2154;
        background-repeat: no-repeat;
        background-size: 100% 80%;
        background-position: center;
        border-radius: 30px;
        padding: 60px 30px;
    }

    .amdg-proc-card {
        overflow: hidden;
    }

    .amdg-proc-img-wrapper {
        width: 90%;
        height: 170px;
    }

    .amdg-proc-top-text {
        display: none;
    }

    .amdg-proc-top-text-md {
        display: block;
        font-size: 14px;
        color: #666;
        text-align: start;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .amdg-proc-container {
        gap: 0px;
    }

    .amdg-proc-desc {
        line-height: 1.33;
        min-height: 100px;
    }

    .amdg-contact-title {
        font-size: 54px;
    }

    .amdg-contact-form-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .amdg-form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .amdg-form-submit .amdg-btn-style {
        padding: 12px 13px;
        width: 100%;
    }


    /* about tab custom responsive */

    .about-card-container {
        height: auto;
        padding: 50px;
    }

    .explore-amdg {
        padding: 50px;
    }

    .expl-card-left h2 {
        padding-top: 40px;
    }

    .expl-card-left p {
        padding-right: 0px;
    }

    .expl-card-left-b {
        padding-left: 0em;

    }

    .expl-card-left-b h2 {
        padding-top: 30px;
        padding-bottom: 26px;
    }

    .amdg-abtpodcast-v3-grid {
        flex-direction: column;
        align-items: start;
    }

    .amdg-abtpodcast-v3-card {
        padding: 30px 30px;
    }

    .amdg-abtpod-title span {
        text-align: start;
    }

    .amdg-abtpod-img-wrapper {
        margin-bottom: -10px;
    }

    .expl-card-right {
        display: none;
    }

    .expl-card-right-hide {
        display: block;
        width: 100%;
        height: 5%;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .expl-card-right-hide .expl-img-cont-1 {
        background-image: url("c:/figma_dev/mXhehq/web/assets/imgs/image9.png");
        background-color: #00144679;
        background-blend-mode: multiply;
        width: 100%;
        height: 200px;
        background-position: center;
        background-size: cover;

    }

    .expl-card-right-hide .expl-img-cont-2 {
        background-image: url("c:/figma_dev/mXhehq/web/assets/imgs/image 10.png");
        width: 100%;
        height: 200px;
        background-position: center;
        background-size: cover;

    }

    .amdg-abtpod-v3-cutout-inner .amdg-btn-style {
        padding: 11px 50px;
        left: 320px;
        top: 10px;
    }

    .amdg-whoweserve-container {
        margin: 0 50px;
        gap: 80px;
        align-items: center;
        justify-content: space-between;
    }

    .amdg-abtwhy-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 33.3%, #0C2154 23.3%, #0C2154 87.6%, #ffffff 82.6%, #ffffff 100%);
        text-align: center;
    }


    /* process page custom responsive */
    .amdg-cardhead-1 {
        font-size: 40px;
    }

    .amdg-cardcontent {
        padding: 0;
    }

    .amdg-prodif-card {
        width: 330px;
        padding: 24px 24px;
    }

    .amdg-prodif-card span {
        font-size: 20px;
    }

    .amdg-customcard-body {
        width: 300px;
        height: 260px;
        padding: 20px 20px;
    }


    /* service main page custom response */

    .image-card {
        display: none;
    }

    .image-card-smallscreen {
        display: block;
        flex: 1;
        position: relative;
        max-width: 663px;
        justify-self: center;
        padding-bottom: 30px;

    }

    .advisory-section {
        background: linear-gradient(0deg, #ffffff -7%, #f8f8f8 20%, #f8f8f8 65%, #ffffff 50%)
    }

    .secondary {
        padding-top: 90px;
    }

    .servicesection {
        padding-top: 0;
    }

    .content h2 {
        font-size: 40px;
    }

    .service-approach-bg {
        background: linear-gradient(0deg, #ffffff 25%, #f8f8f8 5%, #f8f8f8 58%, #ffffff 50%);
    }

    .approach-list-container {
        font-size: 18px;
    }

    .wecover-bg {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35.3%, #F8F8F8 25.3%, #F8F8F7 82.6%, #ffffff 100%, #ffffff 100%);
    }

    .amdg-card-box {
        padding: 28px;
    }

    .amdg-card-box h3 {
        font-size: 20px;
    }

    .how-tag {
        padding: 0 5%;
    }


}


@media (max-width: 767px) {
    .amdg-hero-wrapper {
        min-height: 65vh;
    }

    .amdg-why-work-section {
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .amdg-services-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .amdg-ind-section {
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .amdg-proc-section {
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .amdg-podcast-v3-section {
        padding-top: 40px;
        padding-bottom: 40px;

    }

    .amdg-contact-section {
        padding-top: 40px;
        padding-bottom: 80px;

    }

    .amdg-slider-navigation {
        margin-top: 1px;
    }

    .amdg-pod-v3-cutout-inner .amdg-btn-style {

        padding: 12px 46px;
        position: absolute;
        left: 14px;
        top: 125px;
    }

    .amdg-proc-card {
        overflow: hidden;
    }

    .amdg-proc-img-wrapper {
        width: 80%;
        height: 170px;
    }

    .amdg-col-media .amdg-pod-img-wrapper {
        display: flex;
        padding-left: 125px;
        margin-bottom: 75px;
    }

    .amdg-contact-flex {
        display: flex;
        gap: 1px;
        align-items: flex-start;
        flex-direction: column;
    }

    .amdg-contact-tag,
    .amdg-contact-title {
        margin-bottom: -5px;
    }

    .amdg-contact-subtitle {
        margin-bottom: 2px;

    }

    .amdg-contact-desc {
        padding-bottom: 10px;

    }

    .amdg-footer {
        padding: 60px 0 10px 0;
        margin-top: 40px;
        border-radius: 40px 40px 0 0;

    }

    .amdg-footer-grid {
        flex-direction: column;
        margin: 0px 0px 40px 10px;
    }

    .amdg-footer-col-2 {
        flex-direction: column;

        margin-top: 25px;
        gap: 0;
    }

    .amdg-footer-bottom {
        padding-top: 10px;
    }

    .amdg-footer-brand {
        padding-bottom: 1em;
    }

    .amdg-footer-links {
        padding-bottom: 1em;
    }

    .amdg-footer-contact {
        padding-bottom: 1em;
    }

    .amdg-abtpod-img-wrapper {
        margin-bottom: 50px;
    }

    .about-our-firm {
        padding: 100px 20px;
    }

    .amdg-abtpod-v3-cutout-inner .amdg-btn-style {
        padding: 11px 80px;
        left: -14px;
        top: 75px;
    }

    .amdg-abtpodcast-v3-section {
        padding: 1% 20px;
    }

    .amdg-whoweserve-title {
        padding-bottom: 15px;
    }

    .about-card-container {
        height: auto;
        padding: 50px 20px;
    }

    .amdg-aboutcardhead-1 {
        padding-bottom: 16px;
        color: #B98D1E;
        text-align: center;
        font-size: 45px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        text-transform: capitalize;
    }

    .amdg-aboutcardcontent {
        color: #8F8F8F;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 125%;
    }

    .amdg-whoweserve-container {
        margin: 0 5px;
        gap: 20px;
    }

    .amdg-whoweserve-topcard {
        justify-content: space-between;
        align-items: center;
        width: auto;
        height: 127px;
        padding: 25px;
    }

    .amdg-whoweserve-bcard-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        justify-items: flex-start;
        align-self: flex-start;
    }

    .amdg-whoweserve-topright h3 {
        font-size: 24px;
    }

    .amdg-whoweserve-topright h4 {
        font-size: 17px;
    }

    .amdg-whoweserve-topright {
        padding-left: 30px;
        flex: none;
    }

    .amdg-whoweserve-bcard-left {
        width: auto;
        height: 137px;
        border-radius: 20px;
        border: 1px solid #D0A63D;
        background: #FFF;
        box-shadow: 0 25px 30px -10px rgba(91, 91, 91, 0.20);
        padding: 25px 50px;
    }

    .amdg-whoweserve-bcard-right {
        width: auto;
        height: 137px;
        border-radius: 20px;
        border: 1px solid #D0A63D;
        background: #FFF;
        box-shadow: 0 25px 30px -10px rgba(91, 91, 91, 0.20);
        padding: 25px 50px;
    }

    .amdg-abtwhy-card {
        padding: 44px 23px;
    }

    .explore-amdg {
        padding: 20px;
    }

    .expl-card-right {
        display: none;
    }

    .expl-card-right-hide {
        display: block;
        width: 100%;
        height: 5%;
        overflow: hidden;
        border-radius: 20px;
        margin-bottom: 25px;
    }

    .expl-card-right-hide .expl-img-cont-1 {
        background-image: url("c:/figma_dev/mXhehq/web/assets/imgs/image9.png");
        background-color: #00144679;
        background-blend-mode: multiply;
        width: 100%;
        height: 200px;
        background-position: center;
        background-size: cover;

    }

    .expl-card-right-hide .expl-img-cont-2 {
        background-image: url("c:/figma_dev/mXhehq/web/assets/imgs/image 10.png");
        width: 100%;
        height: 200px;
        background-position: center;
        background-size: cover;

    }

    .expl-card-left h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        text-transform: capitalize;
        padding-top: 70px;
        padding-bottom: 26px;
    }

    .expl-card-left p {
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 125%;
        padding-right: 0em;
    }

    .expl-card-left-b h2 {
        font-size: 32px;
        font-style: normal;
        font-weight: 500;
        line-height: 110%;
        text-transform: capitalize;
        padding-top: 0px;
        padding-bottom: 26px;
    }

    .expl-card-left-b p {
        font-size: 16px;
        font-style: normal;
        font-weight: 300;
        line-height: 125%;
    }

    .sol-ser-row-1 {
        display: flex;
        padding-bottom: 3em;
        flex-direction: column;
    }

    .sol-ser-row-2 {
        display: flex;
        padding-bottom: 3em;
        flex-direction: column;
    }

    .amdg-about-content-inner p {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 40px;
        font-weight: 300;
        opacity: 0.85;
        line-height: 1.2em;
    }

    .amdg-about-wrapper {
        padding: 50px 5%;
    }

    .amdg-about-content-inner h4 {
        font-size: 15px;
    }

    .amdg-about-list-container p {
        font-size: 100px !important;

    }

    .amdg-abtwhy-title {
        font-size: 33px;
    }

    .amdg-abtpod-title span {
        font-size: 45px;

    }

    .amdg-abtpod-img-wrapper {
        margin-bottom: 50px;
        margin-left: 100px;
    }

    .amdg-abtpod-desc {
        font-size: 20px;
    }

    .amdg-whoweserve-left>h3 {
        font-size: 18px;
    }

    .amdg-whoweserve-item {
        font-size: 15px;
    }

    .amdg-whoweserve-left>p {
        font-size: 16px;
    }

    .amdg-whoweserve-topcard {
        justify-content: space-between;
        align-items: center;
        width: auto;
        height: 127px;
        padding: 25px;
        display: flex;
        flex-direction: column;
    }

    .amdg-whoweserve-right {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: stretch;
    }

    .amdg-whoweserve-topcard {
        justify-content: center;
        align-items: center;
        width: auto;
        height: 180px;
        padding: 25px;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .amdg-whoweserve-topleft {
        font-size: 20px;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .amdg-whoweserve-topleft br {
        display: none;
    }

    .amdg-whoweserve-topright {
        padding-left: 0px;
        flex: none;
        padding-top: 8px;
        text-align: center;
    }

    .amdg-whoweserve-topright h3 {
        font-size: 30px;
    }

    .amdg-whoweserve-topright h4 {
        font-size: 20px;
    }

    .amdg-abtwhy-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 38.3%, #0C2154 33.3%, #0C2154 85.6%, #ffffff 82.6%, #ffffff 100%);
    }


    /* process page custom responsive */
    .amdg-btn-style {
        padding: 12px 30px;
    }

    .our-process-banner-card {
        background: #F8F8F8;
        padding: 50px 20px;
    }

    .amdg-prodif-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 25.3%, #F0F0F0 25.3%, #F0F0F0 86.6%, #ffffff 82.6%, #ffffff 100%);
    }

    .amdg-cardhead-1 {
        font-size: 20px;
        padding-bottom: 20px;

    }

    .amdg-cardcontent {
        font-size: 15px;
    }

    .our-process-card-container {
        height: 350px;
    }

    .amdg-process-dark-card {
        width: 330px;
        height: 300px;

    }

    .dark-card-heading {
        font-size: 30px;
    }

    .dark-card-content {
        font-size: 22px;
    }

    .amdg-profile-card {
        background-image: none;
        background-size: 100% 100%;
        background-position: center;
        padding: 30px 18px;
        position: relative;
    }

    .amdg-contact-row .amdg-btn-style {
        padding: 12px;
    }

    .amdg-profile-text p {
        font-size: 16px;
    }

    .featured-podcast-sec-container {
        padding: 34px 20px;
    }

    .spotify-banner {
        padding: 6px 18px 6px 20px;
        font-size: 16px;

        line-height: 1.25;
        margin-top: 100px;
    }

    .spotify-icon {
        position: absolute;
        right: 115px;
        bottom: 50px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    /* services main page custom responsive */
    .image-card-smallscreen img {
        width: 100%;
        border-radius: 16px;
        display: block;
    }

    .service-approach-bg {
        background: linear-gradient(0deg, #ffffff 25%, #f8f8f8 5%, #f8f8f8 55%, #ffffff 50%);
    }

    .approach-list-container {
        flex-direction: column;
        gap: 0;
    }

    .service-approach-card span {
        font-size: 30px;
    }

    .service-approach-card p {
        font-size: 16px;
    }

    .spotify-banner {
        padding: 6px 18px 6px 20px;
        font-size: 16px;
    }

    .wecover-bg {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 35.3%, #F8F8F8 25.3%, #F8F8F7 82.6%, #ffffff 100%, #ffffff 100%);
    }

    .amdg-podcast-v3-card {
        padding: 30px 0 30px 0 !important;
    }


}

@media (max-width: 424px) {
    .amdg-btn-style {
        padding: 12px 13px;
    }

    .amdg-btn-shared {
        padding: 10px 27px;
    }

    .amdg-col-media {
        display: flex;
        justify-items: center;
        align-content: center;

    }

    .amdg-pod-title span {
        font-size: 29px;
    }

    .amdg-col-media .amdg-pod-img-wrapper {
        display: flex;
        padding-left: 100px;
        margin-bottom: 75px;
    }

    .amdg-pod-v3-cutout-inner .amdg-btn-style {
        padding: 12px 46px;
        left: -9px;
        top: 125px;
    }

    .amdg-contact-title {
        font-size: 60px;
    }

    .amdg-contact-form-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .amdg-form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .amdg-form-submit .amdg-btn-style {
        padding: 12px 13px;
        width: 100%;
    }


    .amdg-abtpod-img-wrapper {
        margin-bottom: 50px;
        margin-left: 75px;
        margin-right: 0;
    }

    .amdg-abtpod-v3-cutout-inner .amdg-btn-style {
        padding: 11px 57px;
        left: -14px;
        top: 75px;
    }

    .amdg-process-dark-card {
        width: 330px;
        height: 250px;
    }

    .dark-card-heading {
        font-size: 25px;
    }

    .dark-card-content {
        font-size: 20px;
    }
}

@media (max-width: 374px) {
    .amdg-btn-style {
        padding: 12px 13px;
    }

    .amdg-btn-shared {
        padding: 10px 27px;
    }

    .amdg-col-media {
        display: flex;
        justify-items: center;
        align-content: center;

    }

    .amdg-pod-title span {
        font-size: 23px;
    }

    .amdg-col-media .amdg-pod-img-wrapper {
        display: flex;
        padding-left: 75px;
        margin-bottom: 75px;
    }

    .amdg-pod-v3-cutout-inner .amdg-btn-style {
        padding: 12px 25px;
        left: -15px;
        top: 125px;
    }

    .amdg-contact-title {
        font-size: 60px;
    }

    .amdg-contact-form-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;

    }

    .amdg-form-row {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        flex-direction: column;
    }

    .amdg-form-submit .amdg-btn-style {
        padding: 12px 13px;
        width: 100%;
    }

    .amdg-abtpod-img-wrapper {
        margin-bottom: 50px;
        margin-left: 45px;
        margin-right: 0;
    }

    .amdg-abtpod-v3-cutout-inner .amdg-btn-style {
        padding: 11px 30px;
        left: -14px;
        top: 85px;
    }

    .amdg-whoweserve-bcard-left {
        padding: 12px 50px;
    }

    .amdg-whoweserve-bcard-right {
        padding: 12px 50px;
    }

    /* process page custom responsive */
    .amdg-btn-style {
        padding: 3px 13px;
    }

    .our-process-card-container {
        height: 451px;
    }

    .amdg-cardhead-1 {
        font-size: 20px;
        padding-bottom: 25px;
    }

    .amdg-cardcontent {
        font-size: 16px;
    }

    .our-process-banner-card {
        padding: 50px 10px;
    }

    .amdg-prodif-section {
        background: linear-gradient(to bottom, #ffffff 0%, #ffffff 30.3%, #F0F0F0 25.3%, #F0F0F0 86.6%, #ffffff 82.6%, #ffffff 100%);
    }

    .amdg-prodif-card {
        height: 250px;
    }

    .amdg-prodif-card span {
        font-size: 16px;
    }

    .amdg-process-dark-card {
        width: 250px;
        height: 250px;
    }

    .dark-card-heading {
        font-size: 20px;
    }

    .dark-card-content {
        font-size: 16px;
    }

    .service-approach-bg {
        background: linear-gradient(0deg, #ffffff 25%, #f8f8f8 5%, #f8f8f8 55%, #ffffff 50%);
    }

    .service-approach-card span {
        font-size: 22px;
    }

    .service-approach-card {
        height: 230px;
    }



}