/* ============================================
           BANNER SECTION STYLES
        ============================================ */

.banner-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.banner-content {
    text-align: left;
    color: var(--text-white);
    position: relative;
    z-index: 2;
}

.hero-tag {
    margin-bottom: 1rem;
}

.hero-title {
    margin-bottom: 1rem;
}

.hero-title .highlight {
    color: var(--primary-color);
}

.banner-description {
    font-family: var(--mulish);
    font-size: var(--text-lg);
    line-height: 28px;
    color: var(--text-light);
    opacity: 0.85;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.banner-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-section {
        min-height: 50vh;
    }

    .banner-title {
        font-size: var(--font-size-44);
        line-height: 52px;
    }
}

@media (max-width: 768px) {
    .banner-section {
        min-height: 45vh;
        padding: 5rem 2rem 3rem;
    }

    .banner-title {
        font-size: var(--font-size-36);
        line-height: 44px;
    }

    .banner-description {
        font-size: var(--font-size-16);
    }

    .banner-buttons {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .banner-section {
        min-height: 40vh;
    }

    .banner-title {
        font-size: var(--font-size-30);
        line-height: 38px;
    }

    .banner-tag {
        font-size: var(--font-size-14);
        padding: 0.4rem 1.2rem;
    }
}


.who-we-are-section {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.who-we-are-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    align-items: stretch;
}

/* Left Column - Text Container with Absolute Background */
.who-we-are-left {
    position: relative;
    padding: 60px 60px 60px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.who-we-are-left::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: 0;
    background: var(--secondary-color);
    z-index: -1;
}

.who-we-are-left::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: -1;
}

.section-tag-alt {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(21, 105, 253, 0.2);
    border-left: 3px solid var(--primary-color);
    color: var(--text-white);
    font-size: var(--font-size-14);
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    width: fit-content;
    text-transform: uppercase;
}

.who-we-are-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-44);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-white);
    margin-bottom: 15px;
}

.who-we-are-description {
    font-family: var(--mulish);
    font-size: var(--font-size-16);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 15px;
}

.who-we-are-description:last-child {
    margin-bottom: 0;
}

/* Right Column - Text Container with Absolute Background */
.who-we-are-right {
    position: relative;
    padding: 60px 0 60px 60px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    z-index: 2;
    justify-content: center;
}

.who-we-are-right::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100vw;
    background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
    z-index: -1;
}

.who-we-are-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -100vw;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.03)" opacity="1"/></svg>');
    background-size: 50px 50px;
    z-index: -1;
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 0;
}

.service-number {
    font-family: var(--font-heading);
    font-size: var(--font-size-44);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    position: relative;
    flex-shrink: 0;
}

.service-number::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.service-content {
    flex: 1;
}

.service-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-24);
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
    line-height: 1.3;
}

.service-description {
    font-family: var(--mulish);
    font-size: var(--font-size-16);
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
           RESPONSIVE BREAKPOINTS - WHO WE ARE
        ============================================ */

/* Large Tablets and below (991px) */
@media (max-width: 991px) {


    .who-we-are-row {
        grid-template-columns: 1fr;
    }



    .who-we-are-left::before {
        left: -100vw;
        right: -100vw;
    }

    .who-we-are-right::before,
    .who-we-are-right::after {
        left: -100vw;
        right: -100vw;
    }

    .who-we-are-title {
        font-size: var(--font-size-36);
    }

    .service-number {
        font-size: var(--font-size-36);
    }

    .service-title {
        font-size: var(--font-size-22);
    }

    .who-we-are-right {
        gap: 25px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {




    .who-we-are-title {
        font-size: var(--font-size-30);
    }

    .who-we-are-description {
        font-size: var(--font-size-15);
        line-height: 1.7;
    }


    .service-number {
        font-size: var(--font-size-32);
    }

    .service-title {
        font-size: var(--font-size-20);
    }

    .service-description {
        font-size: var(--font-size-15);
    }

    .who-we-are-right {
        gap: 20px;
    }
}

/* Mobile Landscape (576px) */
@media (max-width: 576px) {

    .who-we-are-left {
        padding: 20px 0px;
    }

    .who-we-are-right {
        padding: 20px 0px !important;
    }

    .who-we-are-title {
        font-size: var(--font-size-28);
    }

    .who-we-are-description {
        font-size: var(--font-size-14);
    }

    .service-number {
        font-size: var(--font-size-30);
    }

    .service-title {
        font-size: var(--font-size-19);
    }

    .service-description {
        font-size: var(--font-size-14);
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {

    .who-we-are-left {
        padding: 20px 0px;
    }

    .who-we-are-right {
        padding: 20px 0px;
    }


    .who-we-are-title {
        font-size: var(--font-size-26);
    }

    .who-we-are-description {
        font-size: var(--font-size-14);
        line-height: 1.6;
    }

    .service-item {
        flex-direction: column;
        gap: 12px;
    }

    .service-number {
        font-size: var(--font-size-28);
    }

    .service-number::after {
        width: 35px;
        height: 2px;
    }

    .service-title {
        font-size: var(--font-size-18);
    }

    .service-description {
        font-size: var(--font-size-14);
        line-height: 1.6;
    }

    .who-we-are-right {
        gap: 18px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .who-we-are-left {
        padding: 20px 0px;

    }

    .who-we-are-right {
        padding: 20px 0px;
    }

    .who-we-are-title {
        font-size: var(--font-size-24);
    }

    .service-number {
        font-size: var(--font-size-26);
    }

    .service-title {
        font-size: var(--font-size-17);
    }
}

/* ============================================
           SPLIT HERO SECTION STYLES - FULLY RESPONSIVE
        ============================================ */

.split-hero-section {
    background: var(--text-white);
    position: relative;
    overflow: hidden;
}

.split-hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    position: relative;
    align-items: stretch;
    min-height: 600px;
}

/* Text Section - Text Container with Absolute Background */
.hero-text-content {
    position: relative;
    padding: 60px 60px 60px 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -100vw;
    right: 0;
    background: #ffffff;
    z-index: -1;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-44);
    font-weight: 700;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.leader-designation {
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.quote-icon {
    font-size: var(--font-size-60);
    color: var(--primary-color);
    opacity: 0.2;
    margin-bottom: 20px;
    line-height: 1;
}

.leader-quote-text {
    font-size: var(--font-size-24);
    font-weight: 600;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}



.text-lg:last-of-type {
    margin-bottom: 0;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    text-align: center;
}

.achievement-value {
    font-size: var(--font-size-44);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.achievement-description {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Image Section - Container with Absolute Background */
.hero-image-content {
    position: relative;
    min-height: 600px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.hero-image-content::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100vw;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
}

.hero-image-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -100vw;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 50px 50px;
    z-index: -1;
}

.leader-portrait-img {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 500px;
    object-fit: cover;
    object-position: center top;
    z-index: 1;
}

/* ============================================
           RESPONSIVE BREAKPOINTS - SPLIT HERO
        ============================================ */

/* Large Tablets and below (991px) */
@media (max-width: 991px) {


    .split-hero-row {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-text-content {
        padding: 50px 0px;
    }

    .hero-text-content::before {
        left: -100vw;
        right: -100vw;
    }

    .hero-image-content {
        min-height: 500px;
        padding: 50px 40px;
    }

    .hero-image-content::before,
    .hero-image-content::after {
        left: -100vw;
        right: -100vw;
    }

    .section-title {
        font-size: var(--font-size-36);
    }

    .leader-quote-text {
        font-size: var(--font-size-22);
    }

    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .leader-portrait-img {
        max-width: 350px;
        min-height: 450px;
    }
}

/* Tablets (768px) */
@media (max-width: 768px) {


    .hero-text-content {
        padding: 40px 0px;
    }

    .hero-image-content {
        min-height: 450px;
        padding: 40px 30px;
    }

    .section-title {
        font-size: var(--font-size-32);
    }

    .leader-designation {
        font-size: var(--font-size-18);
        margin-bottom: 25px;
    }

    .quote-icon {
        font-size: var(--font-size-50);
        margin-bottom: 15px;
    }

    .leader-quote-text {
        font-size: var(--font-size-20);
    }



    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .achievement-value {
        font-size: var(--font-size-36);
    }

    .achievement-description {
        font-size: var(--font-size-13);
    }

    .leader-portrait-img {
        max-width: 300px;
        min-height: 400px;
    }
}

/* Mobile Landscape (576px) */
@media (max-width: 576px) {


    .hero-text-content {
        padding: 35px 0px;
    }

    .hero-image-content {
        min-height: 400px;
        padding: 35px 20px;
    }

    .section-tag {
        font-size: var(--font-size-13);
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.2rem;
    }

    .section-title {
        font-size: var(--font-size-28);
    }

    .leader-designation {
        font-size: var(--font-size-17);
        margin-bottom: 20px;
    }

    .quote-icon {
        font-size: var(--font-size-45);
    }

    .leader-quote-text {
        font-size: var(--font-size-19);
    }



    .achievements-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 25px;
    }

    .achievement-value {
        font-size: var(--font-size-32);
    }

    .achievement-description {
        font-size: var(--font-size-12);
    }

    .leader-portrait-img {
        max-width: 280px;
        min-height: 350px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {


    .hero-text-content {
        padding: 30px 0px;
    }

    .hero-image-content {
        min-height: 350px;
        padding: 30px 15px;
    }

    .section-tag {
        font-size: var(--font-size-12);
        padding: 0.35rem 1rem;
        margin-bottom: 1rem;
    }

    .section-title {
        font-size: var(--font-size-26);
        margin-bottom: 0.3rem;
    }

    .leader-designation {
        font-size: var(--font-size-16);
        margin-bottom: 18px;
    }

    .quote-icon {
        font-size: var(--font-size-40);
        margin-bottom: 12px;
    }

    .leader-quote-text {
        font-size: var(--font-size-18);
        line-height: 1.5;
    }



    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .achievement-card {
        padding: 15px;
        background: #f8f9fa;
        border-radius: 8px;
    }

    .achievement-value {
        font-size: var(--font-size-36);
        margin-bottom: 8px;
    }

    .achievement-description {
        font-size: var(--font-size-13);
    }

    .leader-portrait-img {
        max-width: 100%;
        min-height: 300px;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    .hero-text-content {
        padding: 25px 0px;
    }

    .hero-image-content {
        padding: 25px 12px;
        min-height: 320px;
    }

    .section-title {
        font-size: var(--font-size-24);
    }

    .leader-quote-text {
        font-size: var(--font-size-17);
    }

    .achievement-value {
        font-size: var(--font-size-32);
    }

    .leader-portrait-img {
        min-height: 280px;
    }
}

/* Ultra Small Mobile (320px) */
@media (max-width: 320px) {
    .section-title {
        font-size: var(--font-size-22);
    }

    .leader-quote-text {
        font-size: var(--font-size-16);
    }



    .achievement-value {
        font-size: var(--font-size-28);
    }

    .achievement-description {
        font-size: var(--font-size-12);
    }

    .leader-portrait-img {
        min-height: 250px;
    }
}

.we_isometric_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.we_iso_card {
    background: #ffffff;
    border: 2px solid #e8eaed;
    padding: 35px 28px;
    border-radius: 16px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}


.we_iso_card:hover {
    transform: translateY(-12px) rotateX(5deg);
    border-color: rgba(21, 105, 253, 0.3);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.08),
        0 0 30px rgba(21, 105, 253, 0.1);
}


.we_iso_number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: var(--font-size-44);
    font-weight: 800;
    color: rgb(21 105 253 / 15%);
    line-height: 1;
}

.we_iso_icon_box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(21, 105, 253, 0.9), rgba(11, 60, 93, 0.85));
    border: 2px solid rgba(21, 105, 253, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.we_iso_card:hover .we_iso_icon_box {
    transform: scale(1.1) rotate(8deg);
    background: linear-gradient(135deg, rgba(21, 105, 253, 1), rgba(11, 60, 93, 0.9));
}

.we_iso_icon_box i {
    font-size: var(--font-size-28);
    color: var(--text-white);
}

.we_iso_title {
    font-size: var(--font-size-22);
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.we_iso_description {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
    line-height: 1.6;
}

.we_section {
    background: linear-gradient(135deg, #e0e4e7ad 0%, #ffffff 100%);
}

/* ============================================
           RESPONSIVE STYLES
        ============================================ */

@media (max-width: 991px) {
    .who-we-are-right {
        padding: 60px 0px;
    }

    .we_isometric_grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .we_iso_card {
        padding: 30px 24px;
    }
}

@media (max-width: 768px) {

    .we_isometric_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .we_iso_card {
        padding: 28px 22px;
    }
}

@media (max-width: 480px) {

    .we_iso_card {
        padding: 25px 20px;
    }

    .we_iso_icon_box {
        width: 60px;
        height: 60px;
    }

    .we_iso_icon_box i {
        font-size: var(--font-size-24);
    }

    .we_iso_number {
        font-size: var(--font-size-36);
    }
}

.cards-v5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 25px;
}

.card-v5 {
    background: white;
    padding: 30px 20px 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.card-v5:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(21, 105, 253, 0.2);
}

.card-v5 .icon {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -45px auto 15px;
    color: var(--primary-color);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(21, 105, 253, 0.3);
}

.card-v5 h3 {
    font-size: var(--font-size-16);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-v5 p {
    font-size: var(--font-size-14);
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .cards-v5 {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 480px) {
    .cards-v5 {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   COMMON SECTION TAG & TITLE
============================================ */


.section-heading-center {
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   APPROACH SECTION WITH GRADIENT & DOT PATTERN
============================================ */

.approach-section {
    position: relative;
    overflow: hidden;
}

.approach-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: -100vw;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    z-index: -1;
}

.approach-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: -100vw;
    bottom: 0;
    background: url("data:image/svg+xml,<svg width='100' height='100' xmlns='http://www.w3.org/2000/svg'><circle cx='50' cy='50' r='2' fill='white' opacity='0.1'/></svg>");
    background-size: 50px 50px;
    z-index: -1;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.approach-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--text-lg-line);
    margin-top: 20px;
}

/* ============================================
   FOCUS CARDS - SMALL PILLS STYLE
============================================ */

.focus-cards-wrapper {
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.focus-subtitle {
    font-family: var(--font-heading);
    font-size: var(--font-size-20);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 25px;
    text-align: center;
}

.focus-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.focus-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.focus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.focus-card:hover::before {
    opacity: 1;
}

.focus-card-icon {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.focus-card-icon i {
    font-size: 12px;
    color: var(--text-white);
}

.focus-card-text {
    font-family: var(--font-primary);
    font-size: var(--font-size-14);
    font-weight: 500;
    color: var(--text-white);
    margin: 0;
    white-space: nowrap;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE STYLES
============================================ */

@media (max-width: 991px) {
    :root {
        --heading-lg: var(--font-size-36);
        --heading-sm: var(--font-size-22);
        --section-padding: var(--section-padding-sm);
    }
}

@media (max-width: 768px) {
    :root {
        --heading-lg: var(--font-size-30);
        --heading-sm: var(--font-size-20);
        --text-lg: var(--font-size-16);
        --section-padding: var(--section-padding-sm);
    }

    .focus-cards-wrapper {
        margin-top: 35px;
    }

    .focus-subtitle {
        font-size: var(--font-size-18);
        margin-bottom: 20px;
    }

    .focus-cards-container {
        gap: 12px;
    }

    .focus-card {
        padding: 10px 20px;
    }

    .focus-card-text {
        font-size: var(--font-size-13);
    }
}

@media (max-width: 480px) {
    :root {
        --heading-lg: var(--font-size-26);
        --heading-sm: var(--font-size-18);
    }

    .focus-card {
        padding: 8px 16px;
    }

    .focus-card-icon {
        width: 20px;
        height: 20px;
    }

    .focus-card-icon i {
        font-size: 10px;
    }

    .focus-card-text {
        font-size: var(--font-size-12);
    }
}