/* ============================================
   About Us Section Styles
   ============================================ */

.about-us-section {
    position: relative;
    /* Keep animated hero content visually contained within this section */
    overflow: hidden;
}

/* Hero Section with Three Phones */
.about-us-hero {
    width: 100%;
    background-color: #0A0E27; /* Fallback until bg image loads */
    background-image: url('https://pocketly-public-bucket.s3.ap-south-1.amazonaws.com/b6e86291-012d-4c62-b25b-5c55992eb489.png');
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: scroll;
    padding: 0 0 0 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Top Image Section */
.about-us-hero-top-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 40px;
}

.about-us-hero-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Large Card Section */
.about-us-hero-card {
    width: 100%;
    margin: 0;
    padding: 120px 90px 0 90px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.about-us-hero-card-content {
    background: transparent;
    border-radius: 32px;
    padding: 60px 60px 0 60px;
    box-shadow: none;
    width: 100%;
    height: 750px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
    /* Clip the phone image animation so it never shows in the area below */
    overflow: hidden;
    position: relative;
    z-index: 10;
    align-items: center;
}

.about-us-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    width: 236px;
    height: 32px;
    border: 0.6px solid #A7BFE9;
    border-radius: 42px;
    background: transparent;
    margin-bottom: 0;
    font-family: 'Geist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #A7BFE9;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    white-space: nowrap;
}

.about-us-hero-badge-icon {
    width: 18px;
    height: 18px;
    background-image: url('https://pocketly-public-bucket.s3.ap-south-1.amazonaws.com/cf9dfa0f-9514-4442-a00c-48367a05b7af.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    display: inline-block;
    flex-shrink: 0;
}

.about-us-hero-card-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 72px;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    text-align: center;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.about-us-hero-card-title-part1 {
    color: #7594CC;
}

.about-us-hero-card-title-part2 {
    color: #ffffff;
    font-weight: 800;
}

.about-us-hero-card-description {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    width: 600px;
    font-weight: 400;
    color: #B0B5C8;
    line-height: 1.8;
    margin: 0;
    text-align: center;
}

.about-us-hero-card-image {
    width: 800px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    padding-bottom: 0;
    z-index: 2;
}

.about-us-hero-card-image::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
    max-width: 800px;
    height: 220px;
    background-image: url('https://pocketly-public-bucket.s3.ap-south-1.amazonaws.com/b0dad79b-fd41-47b4-9dde-9e79870cc51c.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    z-index: 3;
    pointer-events: none;
}

.about-us-hero-card-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px 16px 0 0;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 2;
    opacity: 0;
    /* Start slightly below but stay within the hero card container */
    transform: translateY(20px);
    animation: fadeInUpPhone 0.9s ease-out 0.25s forwards;
}

/* Override scroll-reveal for phone image since it has its own animation */
.about-us-hero-card-img.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUpPhone 1s ease-out 0.3s forwards;
    background-color: transparent !important;
}

.about-us-hero-card-img.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Override scroll-reveal background color for dark sections */
.about-us-hero-card-content .scroll-reveal {
    background-color: transparent !important;
}

.vision-core-section .scroll-reveal {
    background-color: transparent !important;
}

.values-section .scroll-reveal {
    background-color: transparent !important;
}

.lets-talk-section .scroll-reveal {
    background-color: transparent !important;
}

/* Preserve original background colors for value items */
.values-grid.scroll-reveal-stagger > .value-item {
    background-color: transparent !important;
}

.values-grid.scroll-reveal-stagger > .value-item .value-icon {
    background-color: #DCE9FF !important;
}

/* Keyframe Animation for Phone Image - Matching Landing Page */
@keyframes fadeInUpPhone {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Download CTA Section */
.about-us-download-cta {
    width: 100%;
    padding: 40px 90px 40px 90px;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
    background: #F9FBFC;
    margin-top: -1px;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.about-us-download-cta.scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.about-us-download-cta.scroll-reveal.revealed {
    opacity: 1 !important;
    transform: none !important;
}

.about-us-download-cta-content {
    background: #E8F2FF;
    border-radius: 72px;
    padding: 12px 12px;
    display: flex;
    align-items: center;
    height: 72px;
    gap: 6px;
    width: 100%;
    max-width: 720px;
    box-sizing: border-box;
}

.about-us-download-cta-avatars {
    display: flex;
    align-items: center;
    margin-right: 0;
}

.about-us-download-cta-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
    margin-left: -10px;
}

.about-us-download-cta-avatar:first-child {
    margin-left: 0;
}

.about-us-download-cta-text {
    font-family: 'Geist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #183FBA;
    margin: 0;
    flex: 1;
    text-align: center;
}

.about-us-download-cta-button {
    padding: 0;
    width: 184px;
    height: 46px;
    background: #183FBA;
    border-radius: 72px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Ensure no visual hover effect (including text color) */
.about-us-download-cta-button:hover,
.about-us-download-cta-button:focus,
.about-us-download-cta-button:active {
    background: #183FBA;
    color: #ffffff;
    box-shadow: none;
    transform: none;
}
/* Responsive Design */
@media (max-width: 1200px) {
    .about-us-hero-card {
        padding: 100px 60px 0 60px;
    }
    
    .about-us-hero-card-content {
        padding: 50px 50px 0 50px;
    }
    
    .about-us-hero-card-image {
        width: 700px;
    }
    
    .about-us-hero-card-image::after {
        max-width: 700px;
    }
    
    .about-us-hero-card-description {
        width: 550px;
    }
}

@media (max-width: 1024px) {
    .about-us-hero-image {
        max-width: 100%;
    }
    
    .about-us-hero-card {
        padding: 80px 60px 0 60px;
    }
    
    .about-us-hero-card-content {
        width: 100%;
        padding: 50px 40px 50px 40px;
        height: 700px;
    }
    
    .about-us-hero-badge {
        width: auto;
        padding: 6px 14px;
        font-size: 13px;
    }
    
    .about-us-hero-badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .about-us-hero-card-title {
        font-size: 56px;
        gap: 6px;
    }
    
    .about-us-hero-card-description {
        font-size: 17px;
        width: 100%;
        max-width: 600px;
    }
    
    .about-us-hero-card-image {
        width: 600px;
    }
    
    .about-us-hero-card-image::after {
        max-width: 600px;
        height: 180px;
    }
    
    .about-us-download-cta {
        padding: 40px 60px 40px 60px;
        margin-top: 0;
        background: #F9FBFC;
    }
    
    .about-us-download-cta-content {
        max-width: 600px;
        padding: 10px 20px;
        gap: 10px;
    }
    
    .about-us-download-cta-avatar {
        width: 32px;
        height: 32px;
    }
    
    .about-us-download-cta-text {
        font-size: 13px;
    }
    
    .about-us-download-cta-button {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .about-us-hero-card {
        padding: 60px 40px 0 40px;
    }
    
    .about-us-hero-card-content {
        width: 100%;
        padding: 40px 30px 0 30px;
        gap: 20px;
        height: 550px;
    }
    
    .about-us-hero-badge {
        width: auto;
        padding: 6px 12px;
        font-size: 12px;
        height: auto;
    }
    
    .about-us-hero-badge-icon {
        width: 14px;
        height: 14px;
    }
    
    .about-us-hero-card-title {
        font-size: 42px;
        gap: 4px;
        flex-wrap: wrap;
    }
    
    .about-us-hero-card-description {
        font-size: 16px;
        width: 100%;
        max-width: 100%;
        line-height: 1.6;
    }
    
    .about-us-hero-card-image {
        width: 100%;
        max-width: 500px;
    }
    
    .about-us-hero-card-image::after {
        max-width: 100%;
        height: 150px;
    }
    
    .about-us-download-cta {
        padding: 40px 40px 40px 40px;
        margin-top: 0;
        background: #F9FBFC;
    }
    
    .about-us-download-cta-content {
        max-width: 100%;
        flex-direction: row;
        gap: 8px;
        padding: 8px 12px;
        height: auto;
        border-radius: 24px;
    }
    
    .about-us-download-cta-avatars {
        justify-content: flex-start;
        flex-shrink: 0;
    }
    
    .about-us-download-cta-avatar {
        width: 24px;
        height: 24px;
        margin-left: -6px;
    }
    
    .about-us-download-cta-avatar:first-child {
        margin-left: 0;
    }
    
    .about-us-download-cta-text {
        font-size: 11px;
        text-align: left;
        line-height: 1.3;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .about-us-download-cta-button {
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 11px;
        width: auto;
        min-width: 100px;
        height: 32px;
        border-radius: 16px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .about-us-hero-card {
        padding: 40px 20px 0 20px;
    }
    
    .about-us-hero-card-content {
        width: 100%;
        padding: 30px 20px 0 20px;
        gap: 16px;
        border-radius: 24px;
        height: 450px;
    }
    
    .about-us-hero-badge {
        width: auto;
        padding: 5px 10px;
        font-size: 11px;
        height: auto;
    }
    
    .about-us-hero-badge-icon {
        width: 12px;
        height: 12px;
    }
    
    .about-us-hero-card-title {
        font-size: 32px;
        gap: 4px;
        flex-wrap: wrap;
        line-height: 1.1;
    }
    
    .about-us-hero-card-description {
        font-size: 15px;
        width: 100%;
        max-width: 100%;
        line-height: 1.5;
    }
    
    .about-us-hero-card-image {
        width: 100%;
        max-width: 400px;
    }
    
    .about-us-hero-card-image::after {
        max-width: 100%;
        height: 120px;
    }
    
    .about-us-download-cta {
        padding: 40px 20px 40px 20px;
        margin-top: 0;
        background: #F9FBFC;
    }
    
    .about-us-download-cta-content {
        max-width: 100%;
        padding: 6px 10px;
        gap: 6px;
        height: auto;
        border-radius: 20px;
        flex-direction: row;
    }
    
    .about-us-download-cta-avatars {
        justify-content: flex-start;
        flex-shrink: 0;
    }
    
    .about-us-download-cta-avatar {
        width: 20px;
        height: 20px;
        margin-left: -4px;
    }
    
    .about-us-download-cta-avatar:first-child {
        margin-left: 0;
    }
    
    .about-us-download-cta-text {
        font-size: 10px;
        text-align: left;
        line-height: 1.2;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .about-us-download-cta-button {
        width: auto;
        min-width: 90px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 10px;
        height: 28px;
        border-radius: 14px;
        flex-shrink: 0;
    }
}

/* ============================================
   Vision & Core Objectives Section
   ============================================ */

.vision-core-section {
    padding: 80px 20px 80px;
    background: #ffffff;
    text-align: center;
}

.vision-core-container {
    max-width: 1350px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    padding: 0 20px;
}

.vision-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #0256DB;
    border-radius: 20px;
    background: transparent;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #0256DB;
}

.vision-badge-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: inline-block;
    flex-shrink: 0;
}

.vision-headline-line1 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 62px;
    line-height: 62px;
    text-align: center;
    color: #a7bfe9;
    margin: 0;
}

.vision-headline-line2 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 62px;
    line-height: 62px;
    text-align: center;
    background: linear-gradient(180deg, #0256DB 0%, #0256DB 35%, #031450 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 24px 0;
}

.vision-description {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    text-align: center;
    color: #787878;
    max-width: 1400px;
    margin: 0;
}

/* ============================================
   Our Values Section
   ============================================ */

.values-section {
    padding: 80px 20px 40px;
    background: #ffffff;
}

.values-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.values-card {
    background: #F2F6FD;
    border-radius: 32px;
    display: flex;
    overflow: hidden;
    width: 100%;
    max-width: 1256px;
    height: 620px;
    margin: 0 auto;
}

.values-image-container {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    width: 502px;
    height: 620px;
    padding: 20px;
    box-sizing: border-box;
}

.values-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 32px;
}

.values-content {
    flex: 1;
    padding: 60px 50px 60px 30px;
    display: flex;
    flex-direction: column;
}

.values-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 52px;
    font-weight: 700;
    color: #1A1F3A;
    margin: 0 0 20px 0;
}

.values-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #868686;
    margin: 0 0 40px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-item {
    display: flex;
    flex-direction: column;
}

.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #DCE9FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.value-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.value-title {
    font-family: 'Geist', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #141515;
    margin: 0 0 8px 0;
}

.value-description {
    font-family: 'Geist', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    color: #868686;
    margin: 0;
}

/* ============================================
   Vision & Mission Section
   ============================================ */

.vision-mission-section {
    padding: 20px 20px 80px;
    background: #ffffff;
}

.vision-mission-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.vision-mission-card {
    background: #F2F6FD;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: 612px;
    height: 264px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.vision-mission-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1A1F3A;
    margin: 0 0 20px 0;
}

.vision-mission-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4A5568;
    margin: 0;
}

.vision-mission-text strong {
    color: #1A1F3A;
    font-weight: 700;
}

/* Responsive Design for New Sections */
@media (max-width: 1400px) {
    .values-card {
        width: calc(100% - 80px);
        max-width: 1256px;
        height: auto;
        min-height: 500px;
    }
    
    .values-image-container {
        width: 40%;
        height: 100%;
        min-height: 500px;
    }
}

@media (max-width: 1024px) {
    .vision-core-section {
        padding: 60px 20px 60px;
    }
    
    .vision-core-container {
        padding: 0 20px;
    }
    
    .vision-badge {
        font-size: 13px;
        padding: 6px 14px;
    }
    
    .vision-badge-icon {
        width: 16px;
        height: 16px;
    }
    
    .vision-headline-line1,
    .vision-headline-line2 {
        font-size: 48px;
        line-height: 60px;
    }
    
    .vision-description {
        font-size: 18px;
        line-height: 28px;
    }
    
    .values-card {
        width: calc(100% - 40px);
        max-width: 1256px;
        height: auto;
        min-height: auto;
        flex-direction: column;
        border-radius: 24px;
    }
    
    .values-image-container {
        flex: 0 0 auto;
        width: 100%;
        height: 400px;
        min-height: 400px;
    }
    
    .values-content {
        padding: 40px 30px;
    }
    
    .values-heading {
        font-size: 42px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .vision-mission-container {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding: 0 20px;
    }
    
    .vision-mission-card {
        width: 100%;
        max-width: 612px;
        height: auto;
        min-height: 264px;
    }
}

@media (max-width: 768px) {
    .vision-core-section {
        padding: 60px 20px 50px;
    }
    
    .vision-core-container {
        padding: 0 20px;
        gap: 10px;
    }
    
    .vision-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .vision-badge-icon {
        width: 14px;
        height: 14px;
    }
    
    .vision-headline-line1,
    .vision-headline-line2 {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    
    .vision-description {
        font-size: 16px;
        line-height: 26px;
    }
    
    .values-card {
        width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 20px;
    }
    
    .values-section {
        padding: 60px 20px 30px;
    }
    
    .values-container {
        padding: 0;
    }
    
    .values-image-container {
        height: 300px;
        min-height: 300px;
        padding: 16px;
    }
    
    .values-content {
        padding: 30px 24px;
    }
    
    .values-heading {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .values-intro {
        font-size: 15px;
        margin-bottom: 32px;
    }
    
    .value-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }
    
    .value-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .value-title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .value-description {
        font-size: 14px;
    }
    
    .vision-mission-section {
        padding: 20px 20px 60px;
    }
    
    .vision-mission-container {
        padding: 0 20px;
        gap: 20px;
    }
    
    .vision-mission-card {
        width: 100%;
        max-width: 612px;
        padding: 30px 24px;
        height: auto;
        min-height: 264px;
    }
    
    .vision-mission-title {
        font-size: 32px;
        margin-bottom: 16px;
    }
    
    .vision-mission-text {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .vision-core-section {
        padding: 50px 16px 40px;
    }
    
    .vision-core-container {
        padding: 0 16px;
        gap: 8px;
    }
    
    .vision-badge {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .vision-badge-icon {
        width: 12px;
        height: 12px;
    }
    
    .vision-headline-line1,
    .vision-headline-line2 {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 16px;
    }
    
    .vision-description {
        font-size: 15px;
        line-height: 24px;
    }
    
    .values-card {
        width: 100%;
        height: auto;
        min-height: auto;
        border-radius: 20px;
        overflow: visible;
    }
    
    .values-section {
        padding: 50px 20px 24px;
    }
    
    .values-container {
        padding: 0;
    }
    
    .values-image-container {
        height: 250px;
        min-height: 250px;
        padding: 12px;
    }
    
    .values-content {
        padding: 24px 20px;
    }
    
    .values-heading {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .values-intro {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .values-grid {
        gap: 20px;
    }
    
    .value-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
    }
    
    .value-icon-img {
        width: 18px;
        height: 18px;
    }
    
    .value-title {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .value-description {
        font-size: 13px;
    }
    
    .vision-mission-section {
        padding: 20px 16px 50px;
    }
    
    .vision-mission-container {
        padding: 0 16px;
        gap: 16px;
    }
    
    .vision-mission-card {
        width: 100%;
        padding: 24px 20px;
        height: auto;
        min-height: 240px;
        border-radius: 20px;
    }
    
    .vision-mission-title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    
    .vision-mission-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

/* ============================================
   Let's Talk Section
   ============================================ */

.lets-talk-section {
    padding: 100px 20px;
    background: #ffffff;
}

.lets-talk-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.duns-section {
    margin-bottom: 60px;
    text-align: center;
}

.duns-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.duns-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.duns-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #1A1F3A;
    margin: 0;
}

.duns-link {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #4A90E2;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.duns-link:hover {
    color: #357ABD;
}

.lets-talk-content {
    text-align: center;
}

.lets-talk-heading {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 240px;
    font-weight: 800;
    color: #F2F6FD;
    line-height: 1;
    margin: 0 0 60px 0;
    letter-spacing: -2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.contact-item {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #1A1F3A;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-label {
    color: #1A1F3A;
}

.contact-value {
    color: #183FBA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #357ABD;
    text-decoration: underline;
}

/* Responsive Design for Let's Talk Section */
@media (max-width: 1024px) {
    .lets-talk-section {
        padding: 80px 20px;
    }
    
    .lets-talk-container {
        padding: 0 20px;
    }
    
    .lets-talk-heading {
        font-size: 160px;
        margin-bottom: 50px;
    }
    
    .duns-section {
        margin-bottom: 50px;
    }
    
    .duns-image {
        max-width: 500px;
    }
    
    .duns-text {
        font-size: 15px;
    }
    
    .contact-item {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .lets-talk-section {
        padding: 80px 20px;
    }
    
    .lets-talk-container {
        padding: 0 20px;
    }
    
    .lets-talk-heading {
        font-size: 128px;
        margin-bottom: 40px;
    }
    
    .duns-section {
        margin-bottom: 40px;
    }
    
    .duns-image {
        max-width: 100%;
    }
    
    .duns-text {
        font-size: 14px;
    }
    
    .duns-link {
        font-size: 16px;
    }
    
    .contact-item {
        font-size: 16px;
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .lets-talk-section {
        padding: 60px 16px;
    }
    
    .lets-talk-container {
        padding: 0 16px;
    }
    
    .lets-talk-heading {
        font-size: 80px;
        margin-bottom: 32px;
        letter-spacing: -1px;
    }
    
    .duns-section {
        margin-bottom: 32px;
    }
    
    .duns-image {
        max-width: 100%;
    }
    
    .duns-text {
        font-size: 13px;
    }
    
    .duns-link {
        font-size: 14px;
    }
    
    .contact-info {
        gap: 20px;
    }
    
    .contact-item {
        font-size: 14px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .contact-label {
        font-size: 14px;
    }
    
    .contact-value {
        font-size: 14px;
    }
}