﻿html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -o-font-smoothing: antialiased;
    font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

@import url('https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken Grotesk:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hanken Grotesk:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

.btnOrange {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    transition: filter 0.2s ease;
}

    .btnOrange:hover {
        filter: brightness(1.4);
    }

.btnsignIn {
    border-radius: 5px;
    padding: 5px 10px;
    background-color: #007BFF;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
    font-size: clamp(0.875rem, 0.8vw + 0.4rem, 0.9375rem);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: background-color 0.3s, box-shadow 0.3s;
}

    .btnsignIn:hover {
        background-color: #0056b3;
        box-shadow: 0 6px 12px rgba(0, 123, 255, 0.5);
    }

.btnblue, .btngreen {
    border-radius: 5px;
    padding: 10px 15px;
    color: #FFFFFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    transition: filter 0.2s ease;
}

.btnblue {
    background-color: #007BFF;
}

.btngreen {
    background-color: #28A745;
}

    .btnblue:hover,
    .btngreen:hover {
        filter: brightness(1.4);
    }

/* Tablet */
@media (max-width: 1024px) {
    .btngreen {
        font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
        padding: 11px 20px;
        border-radius: 7px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .btngreen {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
        border-radius: 10px;
    }
}

.ctabutton {
    color: white;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.4px;
    font-size: clamp(.8rem, 1.5vw + 0.5rem, .9rem);
    padding: 10px 20px; /* more comfortable for mobile touch */
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    background-color: #50C878;
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    cursor: pointer;
}


.cta-button,
.cta-button1,
.cta-button2,
.cta-button3,
.cta-button4 {
    color: white;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.4px;
    font-size: clamp(0.85rem, 0.9vw + 0.45rem, 1rem); /* smoother scaling */
    padding: 12px 28px; /* more comfortable for mobile touch */
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    
    transition: all 0.3s ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    cursor: pointer;
}
.cta-button {
    background-color: #E75D24;
}

.cta-button1 {
    background-color: #007BFF;
}

.cta-button2 {
    background-color: #E86100;
}

.cta-button3 {
    background-color: #EFBF04;
}

.cta-button4 {
    background-color: #50C878;
}
    .cta-button:hover,
    .cta-button1:hover,
    .cta-button2:hover,
    .cta-button3:hover,
    .cta-button4:hover {
        filter: brightness(1.4);
    }

    .cta-button:active,
    .cta-button1:active,
    .cta-button2:active,
    .cta-button3:active,
    .cta-button4:active {
        transform: translateY(1px);
        box-shadow: 0 3px 10px rgba(59, 130, 246, 0.25);
    }

    /* Focus outline for accessibility */
    .cta-button:focus-visible,
    .cta-button1:focus-visible,
    .cta-button2:focus-visible,
    .cta-button3:focus-visible,
    .cta-button4:focus-visible {
        outline: 2px solid #2563eb;
        outline-offset: 3px;
    }

/* Tablet adjustments */
@media (max-width: 1024px) {
    .cta-button,
    .cta-button1,
    .cta-button2,
    .cta-button3,
    .cta-button4 {
        font-size: clamp(0.85rem, 1vw + 0.4rem, 0.95rem);
        padding: 11px 24px;
        border-radius: 7px;
    }
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .cta-button,
    .cta-button1,
    .cta-button2,
    .cta-button3,
    .cta-button4 {
        width: 100%; /* full width button for app-like feel */
        text-align: center;
        font-size: clamp(0.9rem, 1vw + 0.5rem, 1rem);
        padding: 14px 20px;
        border-radius: 10px;
    }
}

.view-more-btn {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    display: inline-block;
    margin-top: 10px;
    background: #0a3d62;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
}
    .view-more-btn: hover {
        filter: brightness(1.4);
    }
.menuText {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    vertical-align: middle;
    letter-spacing: 0.2px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    color: #2C3E50;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    transition: color 0.2s ease;
}

    .menuText:hover {
        color: #007BFF;
    }
    .HeroSecHeading {
        color: #2C3E50;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 2vw + 0.5rem, 3.5rem);
        letter-spacing: 0.4px; /* slightly tighter for balance */
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-wrap: wrap; /* Ensures text wraps */
        justify-content: space-between; /* Ensure text is spaced accordingly */
    }

    .HeroSubSecHeading {
        color: #2C3E50;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
        letter-spacing: 0.3px;
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
        display: inline-block;
        margin-top: 0.2rem; /* Aligns with the bottom of the first line */
    }
.HeroSubHeading2 {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9375rem, 1.1vw + 0.45rem, 1.125rem);
    line-height: 1.4;
    letter-spacing: .5px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
    .HeroSubHeading3 {
        color: #5C5C66;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 400;
        font-size: clamp(0.75rem, 0.8vw + 0.4rem, 1rem);
        line-height: 1.4;
        letter-spacing: .4px;
        -webkit-font-smoothing: antialiased; /* Safari/Chrome */
        -moz-osx-font-smoothing: grayscale; /* Firefox */
        text-rendering: optimizeLegibility; /* improves font rendering */
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
    }
    /*.HeroSecHeading {
        color: #2C3E50;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 2vw + 0.5rem, 3.5rem);
        letter-spacing: 0.3px;*/ /* slightly tighter for balance */
        /*line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    }
    .HeroSubSecHeading {
        color: #2C3E50;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 2vw + 0.5rem, 2rem);
        letter-spacing: 0.3px;*/ /* slightly tighter for balance */
        /*line-height: 1.6;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    }*/
    .HeroSeccolortxt1 {
        color: #D83C00;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 500;
        line-height: 1.4;
        font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
        letter-spacing: .3px;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    }
.HeroSeccolortxt2 {
    color: #0953f7;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
.HeroSeccolortxt3 {
    color: #128807;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    line-height: 1.4;
    font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.5rem);
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}

    .hero-text-section {
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 500;
        margin: 20px 0;
    }

    .hero-text-section .title {
        font-family: 'Hanken Grotesk', sans-serif;
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
        font-weight: 700;
        letter-spacing: .5px;
        display: block;
        margin-bottom: 4px;
    }

    .hero-text-section .subtitle {
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 500;
        letter-spacing:.5px;
        font-size: clamp(0.8125rem, 2vw, 0.9375rem);
        color: #2c3e50;
    }
.HeroSectxt {
    color: #2c3e50;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    line-height: 1.2;
    font-size: clamp(0.8125rem, 1vw + 0.3rem, 0.8125rem);
    vertical-align: middle;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}

.HeroSecFormHeading {
    color: #2C3E50;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
    letter-spacing: .25px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}

.hero-section {
    display: flex;
    justify-content: start; /* Align items to the left */
    align-items: center; /* Vertically align items */
    gap: 10px; /* Control the space between the elements */
    width: 100%;
}

.separator {
    font-size: clamp(1.125rem, 1vw + 0.3rem, 2.5rem);
    font-weight: 300;
    color: #8c8c93;
}




.Sec3smalltxt {
    color: #5A5A5A;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    /* font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);*/
    font-size: clamp(0.75rem, 0.7vw + 0.3rem, 0.875rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.RoleSectxt1 {
    color: #007bff;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    /* font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);*/
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.75rem);
    line-height: 1.3;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.RoleSectxt2 {
    color: #2C3E50;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 1rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Notetxt {
    color: #6C757D;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.625rem, 0.5vw + 0.2rem, 0.625rem);
    letter-spacing: .2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageHeading {
    color: #070738;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3vw + 1rem, 2rem);
    letter-spacing: 0.3px;
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
.PageHeading1 {
    color: #070738;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 1vw + 0.6rem, 1.5rem);
    line-height: 1.3;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
.PageSubHeading1 {
    color: #007BFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.5rem);
    line-height: 1.3;
    letter-spacing: .2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
.quizeHeading {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    vertical-align: middle;
    letter-spacing: 0.5px;
    font-size: clamp(.8rem, 1.5vw + 0.5rem, .9rem);
    color: #2C3E50;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.PageSubHeading2 {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.9375rem, 1.1vw + 0.45rem, 1rem);
    line-height: 1.4;
    letter-spacing: .2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.Pagesmalltxt {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
   /* font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);*/
    font-size: clamp(0.75rem, 0.7vw + 0.3rem, 0.875rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.ResumeDesctxt {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    /* font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);*/
    font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageMediumtxt {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Pagebigtxt {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
   
}
.Pagesmallsemiboldtxt {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.75rem, 0.7vw + 0.3rem, 0.875rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.PageMediumsemiboldtxt 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.Pagebigsemiboldtxt 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageBottomHeadingTxt 
{
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    color: #2C3E50;
    letter-spacing: 0.3px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageBottomBigTxt 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.8vw + 0.4rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageBottomTxt {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.7vw + 0.3rem, 0.875rem);
    line-height: 1.4;
    color: #2C3E50;
    letter-spacing: 0.4px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */

}
    .PageBottomTxt:hover {
        color: #007BFF;
        transform: scale(1.02); /* Slight text enlargement */
        text-decoration: underline;
        text-decoration-thickness: 1px; /* control line thickness */
        text-underline-offset: 4px;
    }
.PageBottomTxt2 {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-size: clamp(0.75rem, 0.7vw + 0.3rem, 0.875rem);
    line-height: 1.4;
    color: #5C5C66;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
    
.PageBottomTxt3 
{
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 1rem);
    line-height: 1.4;
    color: #5C5C66;
    letter-spacing: 0.3px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageBottomTxt3:hover 
{
    transform: scale(1.2); /* Slight text enlargement */
}

.Priceheader 
{
    color: #007BFF;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.5rem);
    line-height: 1.2;
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Pricesubheader 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    line-height: 1.2;
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.Pricesubheader1 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
 
}
.Pricesmalltxt 
{
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Pricesmallboldtxt {
    color: #4a4a4a;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

/********************************  Textbox *************************************/

.did-floating-label-content {
    position: relative;
    margin-bottom: 20px;
}

.did-floating-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    color: #555A66;
    letter-spacing: .2px;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 11px;
    padding: 0 5px;
    background: rgba(255, 255, 255, 0.4);
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.did-floating-input, .did-floating-select {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    letter-spacing: .2px;
    display: block;
    width: 100%;
    height: 45px;
    padding: 0 25px;
    background: rgba(255, 255, 255, 0.4);
    color: #555A66;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

    .did-floating-input:focus, .did-floating-select:focus {
        outline: none;
        border: 1px solid #008000;
    }

        .did-floating-input:focus ~ .did-floating-label, .did-floating-select:focus ~ .did-floating-label {
            font-family: 'Hanken Grotesk', sans-serif;
            font-weight: 400;
            letter-spacing: .2px;
            top: -8px;
            font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
            color: #555A66;
            background: #FFF;
            -webkit-font-smoothing: antialiased; /* Safari/Chrome */
            -moz-osx-font-smoothing: grayscale; /* Firefox */
            text-rendering: optimizeLegibility; /* improves font rendering */
             text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
        }

select.did-floating-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

    select.did-floating-select::-ms-expand {
        display: none;
    }

.did-floating-input:not(:placeholder-shown) ~ .did-floating-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: -8px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.did-floating-select:not([value=""]):valid ~ .did-floating-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: -8px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.did-floating-select[value=""]:focus ~ .did-floating-label {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: 11px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%23003d71'/%3E%3C/svg%3E%0A");
    background-position: right 15px top 50%;
    background-repeat: no-repeat;
}

.did-error-input .did-floating-input, .did-error-input .did-floating-select {
    border: 2px solid #9d3b3b;
    color: #9d3b3b;
}

.did-error-input .did-floating-label {
    font-weight: 500;
    color: #9d3b3b;
}

.did-error-input .did-floating-select:not([multiple]):not([size]) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='6' viewBox='0 0 8 6'%3E%3Cpath id='Path_1' data-name='Path 1' d='M371,294l4,6,4-6Z' transform='translate(-371 -294)' fill='%239d3b3b'/%3E%3C/svg%3E%0A");
}

.input-group {
    display: flex;
}

    .input-group .did-floating-input {
        border-radius: 0 4px 4px 0;
        border-left: 0;
        padding-left: 0;
    }

.input-group-append {
    display: flex;
    align-items: center;
}
/* margin-left:-1px;
     */
.input-group-text {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    letter-spacing: .2px;
    display: flex;
    align-items: center;
    height: 34px;
    color: #008000;
    padding: 0 5px 0 20px;
    font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);
    text-align: center;
    white-space: nowrap;
    border: 1px solid #008000;
    border-radius: 4px 0 0 4px;
    border-right: none;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

/*---------------------- Testimonials-----------------------------------------------------------------------------*/

.testimonial-container {
    display: flex;
    justify-content: center; /* Centers testimonials horizontally */
    align-items: center; /* Centers testimonials vertically */
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px; /* Prevents content from spreading too wide */
    margin: 0 auto; /* Centers the entire container */
    padding: 30px 0;
}

.testimonial {
    width: 300px;
    height: 435px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.testimonialbelow {
    width: 300px;
    text-align: right;
    margin: 5px; /* Centers the entire container */
    padding: 5px;
    
}
    .testimonial .pic {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 5px solid rgba(255, 255, 255, 0.3);
        display: inline-block;
        overflow: hidden;
        background-color: transparent;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

        .testimonial .pic img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

.testimonial-rating {
    list-style: none;
    padding: 5px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

    .testimonial-rating li {
        color: #FFD700; /* Gold color for stars */
        font-size: 16px;
    }

/* Widget and text section */
.widget-text-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 700px; /* Set maximum width */
    margin: 0 auto; /* Center the section */
    gap: 20px;
    padding: 20px 0;
}
.widget-text-wrapper-testimonials {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 800px; /* Set maximum width */
    margin: 0 auto; /* Center the section */
    gap: 20px;
    padding: 20px 0;
}
.widget-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
     /* Ensure widget doesn't get too small */
}


/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        width: calc(100% - 40px); /* Full width on smaller screens */
    }

    .widget-text-wrapper {
        flex-direction: column; /* Stack on smaller screens */
        text-align: center;
    }

    .text-container {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .testimonial {
        width: calc(33.33% - 20px); /* 3 in a row on medium screens */
    }
}

/*-------------------------- Section-9 Highlight LinkedIn Optimization & Cover Letter Optimization-------------------------------------------------------------------*/
.LinkedIncontainer {
    
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    display: flex;
    align-items: center;
}

.image-container {
    display: inline-block;
    vertical-align: middle;
}

.left-image {
    
    width: 40px; /* Set a fixed width for the image */
    height: 40px; /* Set a fixed height for the image */
    object-fit: cover; /* Ensures the image covers the circular border properly */
}

.text-section {
    font-family: 'Hanken Grotesk', sans-serif;
    letter-spacing: .2px;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    color: #5C5C66;
    vertical-align: middle;
    
}

/*-------------------------- Logo Slider -------------------------------------------------------------*/
.slick-slide {
    margin: 0px 20px;
}

    .slick-slide img {
        width: 100%;
    }

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .slick-list:focus {
        outline: none;
    }

    .slick-list.dragging {
        cursor: pointer;
    }

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
}

    .slick-track:before,
    .slick-track:after {
        display: table;
        content: '';
    }

    .slick-track:after {
        clear: both;
    }

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/*-------------------------- Create your resume section -------------------------------------------------------------*/
.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

/* Card Styling */
.card {
    flex: 1;
    background: #FFFFFF;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    border-radius: 10px;
    transition: transform 0.3s;
    cursor: pointer;
    text-align: center;
}

    .card:hover {
        background-color: #EAF4FF;
    }

    /* Image Styling: Centered & Actual Size */
    .card img {
        display: block; /* Center the image */
        margin: 0 auto; /* Horizontal centering */
        max-width: 100%; /* Ensure it doesn't overflow */
        height: auto; /* Maintain aspect ratio */
    }

.hidden-section {
    display: none;
    margin-top: 20px;
    background-color: #FAFBFC;
}

/* Arrow icon hidden by default */
.arrow-icon {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) perspective(500px) rotateX(20deg);
    font-size: 50px;
    color: #cdcdcd;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3); /* depth */
    transition: opacity 0.3s ease, visibility 0s 0.3s, transform 0.3s ease;
}

/* When the card is active, show the arrow icon */
.card.active .arrow-icon {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, visibility 0s 0s;
}

/* Image & Header Wrapper (No Background) */
.card-header {
    display: flex; /* Image and header side by side */
    align-items: center; /* Align vertically */
    background: none; /* ✅ Remove background */
    box-shadow: none;
    gap: 10px; /* ✅ Remove shadow */
}

.parent-container {
    background-color: #F2F2F2;
}

    .parent-container:hover {
        background-color: #FFFFFF;
    }
/* Image Styling */
.card-header img {
    width: auto; /* Actual image size */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Prevent distortion */
}

/* Header Styling */
.card-header h4 {
    margin: 0;
}

/* Description Styling */
.card-description {
    text-align: left;
}

/* Card Option Styling (No Background) */
.card-option {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin: 10px;
    transition: 0.3s;
    cursor: pointer;
    background-color: #f2f2f2;
    /* max-width: 350px;
            max-height:150px;*/
    background: none; /* ✅ Remove background */
    box-shadow: none; /* ✅ Remove shadow */
}

    .card-option:hover {
        background-color: #F2F2F2;
        /* Slight hover effect */
    }

    .card-option img {
        width: auto;
        height: auto;
        max-width: fit-content; /* Display the image at its actual size */
        max-height: 150px; /* Prevent images from being too large */
        margin-bottom: 10px;
    }

/* Selected State */
.selected {
    background-color: #d1e7dd;
    color: green;
}



@media (max-width: 768px) {
    .card {
        flex: 1 1 100%;
    }
}
/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .card-container {
        flex-direction: column; /* Stack cards vertically */
        align-items: center;
    }

    .card {
        width: 90%;
        margin-bottom: 10px;
    }

    .container {
        flex-direction: column;
        align-items: center;
    }

    .box {
        width: 90%; /* Full width for mobile */
        min-width: unset;
    }

        .box img {
            width: 50px; /* Adjust image size */
        }

}


.container {
    display: flex;
    flex-wrap: wrap; /* Enables wrapping into multiple rows */
    justify-content: flex-start;
  
    gap: 5px;
    /* gap: 5px;*/ /* Even gap between divs */
    margin: 0 auto; /* Center the container */
    max-width: 100%;
}

/* Box Styling */
.box {
    flex: 1 1 calc(12.5% - 10px); /* 8 columns per row */
    background: #ffffff; /* Box color */
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
    padding: 5px; /* Spacing inside box */
    box-sizing: border-box;
}
.box:hover {
    background-color: #EAF4FF;
}
.boxcountry {
    flex: 1 1 calc(11.11% - 10px); /* 8 columns per row */
    background: #ffffff; /* Box color */
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
    padding: 5px; /* Spacing inside box */
    box-sizing: border-box;
}
    .boxcountry:hover {
        background-color: #EAF4FF;
    }
.containerresume {
    width: 500px; /* Exact width to fit two 250px boxes */
    display: flex;
    align-items: center;
    justify-content: center; /* Centers the two boxes */
    gap: 10px; /* Space between boxes */
    flex-wrap: wrap; /* Allows wrapping if needed */
    margin: 0 auto; /* Centers the entire container */
}

.boxresume {
    flex: 1 1 calc(50% - 10px);
    width: 400px; /* Fixed width */
    background: #ffffff; /* Box color */
    display: flex;
    flex-direction: column; /* Stack image and text vertically */
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: 0.3s;
    cursor: pointer;
    padding: 5px; /* Spacing inside box */
    box-sizing: border-box;
}
    .boxresume:hover {
        background-color: #EAF4FF;
    }
/* Image Styling */
.box img {
    max-width: 100%;
    height: auto; /* Maintain aspect ratio */
    margin-bottom: 5px; /* Space between image and text */
    transition: 0.3s;
}

/* Hover Effect */
.box:hover {
    background: #f2f2f2; /* Hover effect */
}

    .box:hover img {
        transform: scale(1.05); /* Slight zoom effect on hover */
    }

/* Responsive Design */
@media (max-width: 1024px) {
    .box {
        flex: 1 1 calc(12.5% - 10px); /* 8 columns per row on medium screens */
    }
}

@media (max-width: 768px) {
    .box {
        flex: 1 1 calc(25% - 10px); /* 3 columns per row on smaller screens */
    }
}

@media (max-width: 480px) {
    .box {
        flex: 1 1 calc(50% - 10px); /* 2 columns per row on small screens */
    }
}


.button-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.clickable-div {
    padding: 0.6em 1.2em;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
    font-weight: 600;
    letter-spacing: 0.6px;
    cursor: pointer;
    border: 1px solid #007bff;
    background-color: #007BFF;
    color: #ffffff;
    border-radius: 6px;
    text-align: center;
    transition: all 0.2s ease;
    min-width: 120px;
    user-select: none;
    flex: 0 0 auto;
    width: 180px; /* or any fixed width you want */
    max-width: 100%;
}

/* Mobile-specific tweaks */
@media (max-width: 576px) {
    .clickable-div {
        width: 100%; /* full width button on small screens */
        max-width: 300px; /* optional limit */
    }

    .button-container {
        width:100%;
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

.clickable-div:hover {
    background-color: #65afff;
    filter: brightness(1.2);
    transform: scale(1.03);
}

.button-container1 {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.clickable-div1 {
    background-color: #f0eff4;
    text-align: center;
    border-radius: 2px; /* Slightly more rounded corners */
    box-shadow: rgba(0, 0, 0, 0.2) 0px 6px 10px, rgba(0, 0, 0, 0.12) 0px 1px 3px; /* Enhanced shadow */
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transition */
    overflow: hidden; /* Prevents content from overflowing the rounded borders */
}

.clickable-div1:hover {
    background-color: #fff; /* Light grey hover */
    transform: translateY(-5px); /* Slight lift on hover */
}
.active-button {
    background-color: #66b3ff; /* Lighter shade of blue */
    border-color: #66b3ff;
}

.cv-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default to 4 columns */
    column-gap: 20px;
    row-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
}
.cv-image {
    position: relative;
    width: 100%;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

    .cv-image .box-content {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        opacity: 0;
        transition: opacity 0.3s ease;

    }

    .cv-image:hover .box-content {
        opacity: 1;
    }

.box-content .title {
    padding: 10px 25px;
    border-radius: 5px;
    background: #007BFF;
    opacity: 0.8;
    margin-bottom: 10px;
    color: #FFF;
    font-family: 'Hanken Grotesk', sans-serif;
    letter-spacing: .4px;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 1rem);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
.cv-image:hover {
    transform: scale(1.1);
}
.cv-section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
}

/* Section heading */
.cvheading {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.cv-name-display {
    text-align: center;
    font-family: 'Hanken Grotesk', sans-serif;
    font-size: clamp(1.125rem, 1.1vw + 0.45rem, 1.25rem);
    font-weight: 700;
    color: #28a745;
    background: #ffffff;
    padding: 12px 24px;
    margin: 20px auto;
    width: fit-content;
    border-radius: 10px;
    /* Smooth card-style shadow */
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}


/* Media Queries for responsiveness */
@media (max-width: 1200px) {
    .cv-section {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on medium screens */
    }
}

@media (max-width: 768px) {
    .cv-section {
        grid-template-columns: 1fr; /* 1 column on small screens */
    }
}

/*-------------------------- video and traditional resume -------------------------------------------------------------*/
.Videocontainer {
    display: flex;
    justify-content: center; /* Center the divs horizontally */
    align-items: center; /* Center vertically */
    gap: 20px; /* Space between the divs */
    padding: 0 10%; /* Space on left and right sides */
    box-sizing: border-box;
}

/* Box styling (equivalent to col-md-3 size) */
.videobox {
    flex: 1; /* Minimum width constraint */
    max-width: 300px; /* Max width to avoid stretching */
    height: 220px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    transition: transform 0.3s;
}

/* Ensure items are stacked on smaller screens (full width) */
@media (max-width: 768px) {
    .container {
        flex-direction: column; /* Stack divs vertically on smaller screens */
        padding: 0 5%; /* Reduce padding */
    }

    .box {
        max-width: 100%; /* Take full width on small screens */
        height: 250px; /* Slightly reduce height */
    }
}



/*-------------------------- OLD Vs NEW Resume -------------------------------------------------------------*/
.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 15px;
}

.tablink {
    background-color: #1e86f7;
    border: 1px solid #ccc;
    padding: 12px 25px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.4px;
    font-size: clamp(0.875rem, 1vw + 0.3rem, 1.125rem);
    color: #ffffff;
    text-align: center;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
    width: 100%; /* full width button on small screens */
    max-width: 200px; /* optional limit */
}

    .tablink:hover, .tablink.active {
        background-color: #D3E8FF; /* Slightly darker background on hover/active */
        color: #000;
    }

/* Tab Content Styling */
.tabcontent {
    display: none;
    animation: fadeEffect 0.5s;
}

    .tabcontent.active {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

@media (max-width: 576px) {
    .tablink {
        width: 100%; /* full width button on small screens */
        max-width: 300px; /* optional limit */
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 500;
        font-size: .9rem;
    }

}
/* Resume Samples */
.comparison-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.resume-sample {
    width: 100%;
    position: relative;
    transition: transform 0.3s;
}

    .resume-sample img {
        width: 100%;
        border-radius: 10px;
        box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
        transition: transform 0.3s;
    }
/*
.resume-sample:hover img {
  transform: scale(1.05);
}*/

.label {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 12px;
    border-radius: 5px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}


/* Animation */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-grid {
        flex-direction: column;
    }

    .resume-sample {
        width: 100%;
        margin-bottom: 15px;
    }

    .tabs {
        flex-direction: column;
    }

    .tablink1 {
        width: 100%;
        margin: 5px 0;
        background-color: #1e86f7;
        color: #FFFFFF;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
        padding: 12px 25px;
        cursor: pointer;
        transition: background-color 0.3s, transform 0.3s;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        letter-spacing: .5px;
    }

        .tablink1.active, .tablink1:hover {
            background-color: #D3E8FF; /* Change to the desired color */
            color: #000; /* Adjust text color if needed */
        }
}
/*-------------------------- Pricing ADD ON -------------------------------------------------------------*/
.service-container {
    margin: 0 auto;
    padding-top: 10px;
}

.service-item {
    background-color: #efefef;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 5px;
    margin-bottom: 5px;
}

.service-title {
    margin-left: 10px;
}

.icon {
    font-size: 20px;
}

.service-content {
    display: none;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #eee;
    border-top: none;
    border-radius: 5px;
}
/*-------------------------- Accrodian (FAQ) -------------------------------------------------------------*/
.FAQboldtxt {
    color: #70757d;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.2vw + 0.4rem, 1.125rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    transition: color 0.3s ease;
}

/* On hover */
.faq-list label:hover .FAQboldtxt {
    color: #2e9cf3;
}

/* When question is open (checked) */
.faq-list input[type="checkbox"]:checked + label .FAQboldtxt {
    color: #2e9cf3;
}

.FAQtxt {
    color: #70757d;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 1rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    padding-left: 5px;
    display: none;
    max-width: 60vw; /* Make answer take up half of the page width */
    position: relative;
    left: 0; /* Start from the left */
    overflow-y: auto; /* Enable vertical scrolling if needed */
    height: auto;
    transition: transform 0.3s ease, max-height 0.3s ease;
}

/* When open: show answer, max height = half screen, scrollable */
.faq-list input[type="checkbox"]:checked + label + p {
    opacity: 1;
    display: block;
    max-height: 60vh; /* Half of viewport height */
    overflow-y: auto; /* Enable scroll */
    transform: translateY(0);
    animation: flipdown 0.4s ease forwards;
}

/* Smooth scrollbar for answer */
.FAQtxt::-webkit-scrollbar {
    width: 6px;
}

.FAQtxt::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1 1 calc(100% - 10px);
    margin: 0 auto;
}

    .faq-list li {
        padding: 10px 0;
        border-bottom: 1px dotted #dce7eb;
        position: relative;
    }

    .faq-list input[type="checkbox"] {
        display: none;
    }

    .faq-list label {
        cursor: pointer;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-right: 30px;
    }

        /* Chevron styling */
        .faq-list label .chevron {
            transition: transform 0.3s ease, font-size 0.3s ease, color 0.3s ease;
            display: inline-block;
            width: 10px;
            height: 10px;
            border-left: 2px solid #2e9cf3;
            border-bottom: 2px solid #2e9cf3;
            transform: rotate(-45deg);
        }

    /* Rotate chevron when open */
    .faq-list input[type="checkbox"]:checked + label .chevron {
        transform: rotate(135deg);
        color: #2e9cf3;
        font-size: 14px;
    }

/* Flipdown animation */
@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }

    5% {
        opacity: 1;
    }

    80% {
        transform: rotateX(8deg);
    }

    83% {
        transform: rotateX(6deg);
    }

    92% {
        transform: rotateX(-3deg);
    }

    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}

/*-------------------------- for Top button -------------------------------------------------------------*/
.back-to-top {
    cursor: pointer;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    background: linear-gradient(#48c6ef, #6f86d6);
    z-index: 999;
    font-family: 'Hanken Grotesk', sans-serif;
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    margin: 4px 2px;
    border-radius: 5px;
}
.back-to-top1 {
    cursor: pointer;
    position: fixed;
    bottom: 0px;
    right: 1px;
    display: none;
    background: #007BFF;
    z-index: 999;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.4px;
    font-size: clamp(0.85rem, 0.9vw + 0.45rem, 1rem);
    border: none;
    color: white;
    padding: 10px 15px;
    text-align: center;
    margin: 4px 2px;
    border-radius: 5px;
}
/*-------------------------- Create your resume section -------------------------------------------------------------*/

#slider {
    position: relative;
    width: 90%; /* Responsive width */
    max-width: 260px; /* Reduced from 280px */
    aspect-ratio: 250 / 354; /* Keeps height proportional */
    margin: 10px auto;
    perspective: 1400px;
    transform-style: preserve-3d;
    transform: scale(0.94);
}

    #slider label {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 400ms ease-in-out;
    }

        #slider label img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            image-rendering: auto;
            mix-blend-mode: multiply;
        }

.overlay {
    font-family: 'Hanken Grotesk', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #007BFF;
    font-size: 1.2rem; /* Slightly smaller for mobile */
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
}

#slider label:hover .overlay {
    opacity: 1;
}

/* Sparkle Animation */
.sparkle {
    position: relative;
    animation: sparkle 4s infinite ease-in-out;
}

@keyframes sparkle {
    0% {
        box-shadow: 0 0 5px rgba(169, 169, 169, 0.6), 0 0 10px rgba(169, 169, 169, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(169, 169, 169, 1), 0 0 40px rgba(169, 169, 169, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(169, 169, 169, 0.6), 0 0 10px rgba(169, 169, 169, 0.4);
    }
}

/* Responsive tweaks for very small screens */
@media (max-width: 480px) {
    .overlay {
        font-size: 1rem;
    }
}
/* Slider Functionality */
/* Active Slide */
#s1:checked ~ #slide1,
#s2:checked ~ #slide2,
#s3:checked ~ #slide3,
#s4:checked ~ #slide4,
#s5:checked ~ #slide5,
#s6:checked ~ #slide6,
#s7:checked ~ #slide7,
#s8:checked ~ #slide8 {
    box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
    transform: translate3d(0%, 0, 0px);
    animation: caption 12300ms infinite 7200ms;
}

/* Next Slide */
#s1:checked ~ #slide2,
#s2:checked ~ #slide3,
#s3:checked ~ #slide4,
#s4:checked ~ #slide5,
#s5:checked ~ #slide1 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(25%, 0, -100px);
}

/* Next to Next Slide */
#s1:checked ~ #slide3,
#s2:checked ~ #slide4,
#s3:checked ~ #slide5,
#s4:checked ~ #slide1,
#s5:checked ~ #slide2 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(45%, 0, -250px);
    animation: caption 12300ms infinite 7200ms;
}

/* Previous to Previous Slide */
#s1:checked ~ #slide4,
#s2:checked ~ #slide5,
#s3:checked ~ #slide1,
#s4:checked ~ #slide2,
#s5:checked ~ #slide3 {
    box-shadow: 0 1px 4px rgba(0,0,0, 0.4);
    transform: translate3d(-45%, 0, -250px);
    animation: caption 12300ms infinite 7200ms;
}

/* Previous Slide */
#s1:checked ~ #slide5,
#s2:checked ~ #slide1,
#s3:checked ~ #slide2,
#s4:checked ~ #slide3,
#s5:checked ~ #slide4 {
    box-shadow: 0 6px 10px rgba(0,0,0, 0.3), 0 2px 2px rgba(0,0,0, 0.2);
    transform: translate3d(-25%, 0, -100px);
    animation: caption 12300ms infinite 7200ms;
}

/* Tablet (medium screens) */
@media (max-width: 768px) {
    #slider {
        max-width: 280px;
        transform: scale(0.92);
    }

    .overlay {
        font-size: 1.1rem;
    }

    #s1:checked ~ #slide2,
    #s2:checked ~ #slide3,
    #s3:checked ~ #slide4,
    #s4:checked ~ #slide5,
    #s5:checked ~ #slide1 {
        transform: translate3d(20%, 0, -80px);
    }

    #s1:checked ~ #slide3,
    #s2:checked ~ #slide4,
    #s3:checked ~ #slide5,
    #s4:checked ~ #slide1,
    #s5:checked ~ #slide2 {
        transform: translate3d(40%, 0, -200px);
    }

    #s1:checked ~ #slide4,
    #s2:checked ~ #slide5,
    #s3:checked ~ #slide1,
    #s4:checked ~ #slide2,
    #s5:checked ~ #slide3 {
        transform: translate3d(-40%, 0, -200px);
    }

    #s1:checked ~ #slide5,
    #s2:checked ~ #slide1,
    #s3:checked ~ #slide2,
    #s4:checked ~ #slide3,
    #s5:checked ~ #slide4 {
        transform: translate3d(-20%, 0, -80px);
    }
}

/* Mobile (small screens) */
@media (max-width: 480px) {
    #slider {
        max-width: 260px;
        transform: scale(0.9);
    }

    .overlay {
        font-size: 1rem;
        padding: 8px;
    }

    #s1:checked ~ #slide2,
    #s2:checked ~ #slide3,
    #s3:checked ~ #slide4,
    #s4:checked ~ #slide5,
    #s5:checked ~ #slide1 {
        transform: translate3d(15%, 0, -60px);
    }

    #s1:checked ~ #slide3,
    #s2:checked ~ #slide4,
    #s3:checked ~ #slide5,
    #s4:checked ~ #slide1,
    #s5:checked ~ #slide2 {
        transform: translate3d(30%, 0, -120px);
    }

    #s1:checked ~ #slide4,
    #s2:checked ~ #slide5,
    #s3:checked ~ #slide1,
    #s4:checked ~ #slide2,
    #s5:checked ~ #slide3 {
        transform: translate3d(-30%, 0, -120px);
    }

    #s1:checked ~ #slide5,
    #s2:checked ~ #slide1,
    #s3:checked ~ #slide2,
    #s4:checked ~ #slide3,
    #s5:checked ~ #slide4 {
        transform: translate3d(-15%, 0, -60px);
    }
}
/**********************************************************************/
#sliderM {
    position: relative;
    width: 90%;
    max-width: 320px;
    aspect-ratio: 250 / 354;
    margin: 10px auto;
    perspective: 1400px;
    transform-style: preserve-3d;
    transform: scale(0.94);
}

    /* Slide Labels */
    #sliderM label {
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        border-radius: 5px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 400ms ease-in-out;
    }

        #sliderM label img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 5px;
            image-rendering: auto;
            mix-blend-mode: multiply;
        }

/* Overlay Text */
.overlay {
    font-family: 'Hanken Grotesk', sans-serif;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.4);
    color: #007BFF;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 10px;
}

#sliderM label:hover .overlay {
    opacity: 1;
}

/* Sparkle Animation */
.sparkleM {
    position: relative;
    animation: sparkleM 4s infinite ease-in-out;
}

@keyframes sparkleM {
    0% {
        box-shadow: 0 0 5px rgba(169, 169, 169, 0.6), 0 0 10px rgba(169, 169, 169, 0.4);
    }

    50% {
        box-shadow: 0 0 20px rgba(169, 169, 169, 1), 0 0 40px rgba(169, 169, 169, 0.8);
    }

    100% {
        box-shadow: 0 0 5px rgba(169, 169, 169, 0.6), 0 0 10px rgba(169, 169, 169, 0.4);
    }
}

/* Active Slide */
#sM1:checked ~ #slideM1,
#sM2:checked ~ #slideM2,
#sM3:checked ~ #slideM3,
#sM4:checked ~ #slideM4,
#sM5:checked ~ #slideM5 {
    box-shadow: 0 13px 26px rgba(0,0,0, 0.3), 0 12px 6px rgba(0,0,0, 0.2);
    transform: translate3d(0%, 0, 0px);
}

/* Next Slide */
#sM1:checked ~ #slideM2,
#sM2:checked ~ #slideM3,
#sM3:checked ~ #slideM4,
#sM4:checked ~ #slideM5,
#sM5:checked ~ #slideM1 {
    transform: translate3d(25%, 0, -100px);
}

/* Next-to-next Slide */
#sM1:checked ~ #slideM3,
#sM2:checked ~ #slideM4,
#sM3:checked ~ #slideM5,
#sM4:checked ~ #slideM1,
#sM5:checked ~ #slideM2 {
    transform: translate3d(45%, 0, -250px);
}

/* Previous-to-previous Slide */
#sM1:checked ~ #slideM4,
#sM2:checked ~ #slideM5,
#sM3:checked ~ #slideM1,
#sM4:checked ~ #slideM2,
#sM5:checked ~ #slideM3 {
    transform: translate3d(-45%, 0, -250px);
}

/* Previous Slide */
#sM1:checked ~ #slideM5,
#sM2:checked ~ #slideM1,
#sM3:checked ~ #slideM2,
#sM4:checked ~ #slideM3,
#sM5:checked ~ #slideM4 {
    transform: translate3d(-25%, 0, -100px);
}

/* Tablet Adjustments */
@media (max-width: 768px) {
    #sliderM {
        max-width: 280px;
        transform: scale(0.92);
    }

    .overlay {
        font-size: 1.1rem;
    }

    #sM1:checked ~ #slideM2,
    #sM2:checked ~ #slideM3,
    #sM3:checked ~ #slideM4,
    #sM4:checked ~ #slideM5,
    #sM5:checked ~ #slideM1 {
        transform: translate3d(20%, 0, -80px);
    }

    #sM1:checked ~ #slideM3,
    #sM2:checked ~ #slideM4,
    #sM3:checked ~ #slideM5,
    #sM4:checked ~ #slideM1,
    #sM5:checked ~ #slideM2 {
        transform: translate3d(40%, 0, -200px);
    }

    #sM1:checked ~ #slideM4,
    #sM2:checked ~ #slideM5,
    #sM3:checked ~ #slideM1,
    #sM4:checked ~ #slideM2,
    #sM5:checked ~ #slideM3 {
        transform: translate3d(-40%, 0, -200px);
    }

    #sM1:checked ~ #slideM5,
    #sM2:checked ~ #slideM1,
    #sM3:checked ~ #slideM2,
    #sM4:checked ~ #slideM3,
    #sM5:checked ~ #slideM4 {
        transform: translate3d(-20%, 0, -80px);
    }
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    #sliderM {
        max-width: 260px;
        transform: scale(0.9);
    }

    .overlay {
        font-size: 1rem;
        padding: 8px;
    }

    #sM1:checked ~ #slideM2,
    #sM2:checked ~ #slideM3,
    #sM3:checked ~ #slideM4,
    #sM4:checked ~ #slideM5,
    #sM5:checked ~ #slideM1 {
        transform: translate3d(15%, 0, -60px);
    }

    #sM1:checked ~ #slideM3,
    #sM2:checked ~ #slideM4,
    #sM3:checked ~ #slideM5,
    #sM4:checked ~ #slideM1,
    #sM5:checked ~ #slideM2 {
        transform: translate3d(30%, 0, -120px);
    }

    #sM1:checked ~ #slideM4,
    #sM2:checked ~ #slideM5,
    #sM3:checked ~ #slideM1,
    #sM4:checked ~ #slideM2,
    #sM5:checked ~ #slideM3 {
        transform: translate3d(-30%, 0, -120px);
    }

    #sM1:checked ~ #slideM5,
    #sM2:checked ~ #slideM1,
    #sM3:checked ~ #slideM2,
    #sM4:checked ~ #slideM3,
    #sM5:checked ~ #slideM4 {
        transform: translate3d(-15%, 0, -60px);
    }
}

/*___________________________________________________________________________________________________________*/

#typing-heading {
    text-align: center;
    white-space: pre-wrap;
    overflow: hidden;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: .8px;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.5rem);
}

/* Mobile-friendly adjustments */
@media (max-width: 480px) {
    .rotating-headings {
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        letter-spacing: .6px;
        font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
        line-height: 1.5;
    }

    #typing-heading {
        border-right-width: 1.5px;
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        letter-spacing: .8px;
        font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
    }
}

.rotating-headings {
    position: relative;
    overflow: hidden;
    text-align: center;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing:.8px;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
    color: #2C3E50;
    padding: 6px 8px;
    min-height: 2.5em;
    line-height: 1.6;
    letter-spacing: 0.6px;
}
.rotating-headings-small {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    color: #007BFF;
    letter-spacing: .5px;
    font-size: clamp(0.875rem, 1vw + 0.5rem, 1rem);
}
.heading-list {
    position: relative;
    width: 100%;
}

.heading-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    box-sizing: border-box;
    animation: instantSwitch 36s steps(1, end) infinite;
    text-align: center;
    flex-direction: column;
    line-height: 1.5;
}

    .heading-item:nth-child(1) {
        animation-delay: 0s;
    }

    .heading-item:nth-child(2) {
        animation-delay: 6s;
    }

    .heading-item:nth-child(3) {
        animation-delay: 12s;
    }

    .heading-item:nth-child(4) {
        animation-delay: 18s;
    }

    .heading-item:nth-child(5) {
        animation-delay: 24s;
    }

    .heading-item:nth-child(6) {
        animation-delay: 30s;
    }

.heading-text {
    display: inline-block;
    max-width: 95%;
    word-break: break-word;
    text-wrap: balance;
}

@keyframes instantSwitch {
    0% {
        opacity: 1;
    }

    16.66% {
        opacity: 1;
    }

    16.67% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}
/*.rotating-headings {
    position: relative;
    height: 60px;
    overflow: hidden;
    text-align: center;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1rem);
    color: #2C3E50;
}

.heading-list {
    position: relative;
    height: 60px;
}

.heading-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    animation: fadeCycle 36s ease-in-out infinite;
}*/

    /* Set animation delay per item: 6s gap */
    /*.heading-item:nth-child(1) {
        animation-delay: 0s;
    }

    .heading-item:nth-child(2) {
        animation-delay: 6s;
    }

    .heading-item:nth-child(3) {
        animation-delay: 12s;
    }

    .heading-item:nth-child(4) {
        animation-delay: 18s;
    }

    .heading-item:nth-child(5) {
        animation-delay: 24s;
    }

    .heading-item:nth-child(6) {
        animation-delay: 30s;
    }

@keyframes fadeCycle {
    0% {
        opacity: 0;
    }

    8% {
        opacity: 1;
    }

    25% {
        opacity: 1;
    }

    33% {
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}*/


.below-section-note {
    padding-top: 10px;
    padding-bottom: 30px;
}

.belowSectxt1 {
    color: #1A1A1F;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.4px;
    line-height: 1.6;
    display: inline-block;
    text-shadow: 0.2px 0.2px 0.4px rgba(0, 0, 0, 0.05);
}

.belowSectxt2 {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw + 0.4rem, 0.95rem);
    line-height: 1.2;
    letter-spacing: 0.3px;
    display: inline-block;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.07);
}

.belowSectxt3 {
    color: #616E7C;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    line-height: 1.5;
    letter-spacing: 0.3px;
    display: inline-block;
    text-transform: uppercase;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.07);
}


.card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/*.custom-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .custom-card img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }*/

/* Responsive */
/*@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .card-container {
        grid-template-columns: 1fr;
    }
}*/

.custom-card {
    position: relative; /* needed for badge absolute positioning */
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease;
}

    .custom-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }

    .custom-card img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
    }

/* Badge Style */
.step-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'Hanken Grotesk', sans-serif;
    color: #e0dbd5;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 5px 10px;
    z-index: 10;
}

/* Responsive Cards */
@media (max-width: 992px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .card-container {
        grid-template-columns: 1fr;
    }

    /* Make badge slightly smaller on very small screens */
    .step-badge {
        font-family: 'Hanken Grotesk', sans-serif;
        color: #e0dbd5;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 4px 8px;
    }
}
/*sdfsadfsadfsadfsad*/


.Sec2bigsemiboldtxt {
    color: #2C3E50;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
    line-height: 1.4;
    letter-spacing: .4px;
    margin-top: 10px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.Sec2smalltxt {
    color: #555555;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw + 0.4rem, 0.95rem);
    line-height: 1.4;
    letter-spacing: .4px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: optimizeLegibility; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
/******************************************* for Expert ********************************************************/
.expert-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 20px;
}

.expert-image {
    flex: 0 0 200px;

    text-align: center;
}

    .expert-image img {

        object-fit: contain;
        mix-blend-mode: multiply;
        border-radius: 6px;
    }

.expert-name {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #3b4b9e;
    font-weight: 600;
    display: block;
    margin-top: 8px;
}

.expert-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    display: block;
    font-size: 0.95rem;
}

.expert-content {
    flex: 1;
    min-width: 280px;
    text-align: justify;
}

.read-more-toggle {
    font-family: 'Hanken Grotesk', sans-serif;
    font-size:12px;
    color: #4D4DFF;
    cursor: pointer;
    padding-top: 5px;
    font-weight: 400;
    text-align: right;
}

.connect-link {
    font-family: 'Hanken Grotesk', sans-serif;
    color: #4D4DFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .expert-container {
        flex-direction: column;
        gap: 20px;
    }

    .expert-content {
        order: 2;
    }

    .expert-image {
        order: 1;
        max-width: 100%;
    }

    .read-more-toggle {
        text-align: center;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/


.plan-header {
    text-align: center;
    background: linear-gradient(135deg, #F0F7FF 40%, #E6F2FA);
    padding: 1rem;
    border-radius: 8px 8px 0 0;
    position: relative;
}

.badge {
    position: absolute;
    top: -8px;
    left: -10px;
    background: #ff5722;
    color: white;
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 0 0 8px 0;
}

.plan-title {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.plan-price {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #007bff;
}

.feature-list {
    width: 100%;
    margin-top: 1rem;
}

.feature-bullet {
    width: 1rem;
    text-align: center;
    vertical-align: top;
    color: #4a4a4a;
    font-size: 0.9375rem;
    font-weight: 700;
}

.best-for {
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
}
.cta {
    width: 180px; /* fixed width for all buttons */
    height: 40px; /* fixed height for all buttons */
    text-align: center;
    padding: 0; /* no vertical padding, fixed height takes care of it */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    color: white;
    background: #007bff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.highlighted-cta {
    width: 180px; /* fixed width for all buttons */
    height: 40px; /* fixed height for all buttons */
    text-align: center;
    padding: 0; /* no vertical padding, fixed height takes care of it */
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    color: white;
    background: #28a745;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cta:hover {
    background: #0056b3;
}

    .highlighted-cta:hover {
        background: #218838 !important;
    }
.details-container {
    display: flex;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding: 0 0.3rem;
}

.details-link {
    font-size: 0.75rem;
    font-weight: 500;
    color: #007bff;
    letter-spacing:.4px;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 768px) {
    .details-container {
        flex-direction: row;
        justify-content: space-between;
    }
}

.button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin-top: auto; /* push button section to bottom of card */
    min-height: 80px; /* reserve same vertical space for all */
}

.best-for {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #333;
    text-align: center;
}



.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 10px; /* for mobile breathing space */
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: scaleUp 0.3s ease;
    font-family: 'Hanken Grotesk', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 10px;
    }

    .modal-content {
        padding: 15px;
        max-width: 100%;
        max-height: 85vh;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .modal-dialog {
        margin: 5px;
    }

    .modal-content {
        padding: 12px;
        max-width: 100%;
        max-height: 80vh;
        border-radius: 8px;
        font-size: 14px; /* slightly smaller text for mobile */
    }
}

.close-btn {
    float: right;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 10px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

    .comparison-table th,
    .comparison-table td {
        border: 1px solid #e6e8eb;
        padding: 10px;
        text-align: left;
        vertical-align: top;
        font-size: 0.85rem;
    }

    .comparison-table thead {
        background-color: #B7E0FF;
        color: #4a4a4a;
        font-weight: 600;
    }

    .comparison-table td:first-child {
        background-color: #f9fafc;
        font-weight: 600;
        color: #1e2b39;
    }

    .comparison-table tbody tr:hover {
        background-color: #f4faff;
    }

/* Responsive: make table scrollable horizontally on small screens */
@media (max-width: 600px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

        .comparison-table th,
        .comparison-table td {
            font-size: 0.75rem;
            padding: 6px;
        }
}

.comparison-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

    .comparison-section h2 {
        text-align: center;
        font-size: 2.2rem;
        color: #2c3e50;
        margin-bottom: 40px;
    }

.tblheading {
    color: #4a4a4a;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 600;
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1.25rem);
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.tbltd {
    color: #1e2b39;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1vw + 0.25rem, 1rem);
    letter-spacing: 0.4px;
    line-height: 1.6;
}

.tbltr {
    color: #5C5C66;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1vw + 0.25rem, 0.9375rem);
    letter-spacing: 0.4px;
    line-height: 1.6;
}

/* ---------------- Mobile Cards ---------------- */
.mobile-cards {
    display: none;
}



@media (max-width: 768px) {
    .comparison-table {
        display: none;
    }

    .mobile-cards {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%; /* Full width of the container */
        max-width: 350px; /* Optional: cap it on larger screens */
        margin: 0 auto; /* Center it horizontally */
    }

    .card {
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
        width: 100%; /* Make the card fill the parent */
    }

        .card h3 {
            font-size: 1.2rem;
            margin: 0 0 20px;
            color: #0077cc;
        }

        .card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .card ul li {
                margin-bottom: 12px;
                border-bottom: 1px dashed #eee;
                padding-bottom: 10px;
            }

                .card ul li strong {
                    display: block;
                    font-weight: 600;
                    color: #333;
                    margin-bottom: 4px;
                }
}
/*//---------------------------------------------Modal---------------------------------------------------
*/
.starter-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Hanken Grotesk', sans-serif;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

.starter-modal .modal-header {
    background: linear-gradient(135deg, #F0F7FF, #E6F2FA);
    padding: 15px 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.starter-modal .modal-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.starter-modal .close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s ease;
}

    .starter-modal .close:hover {
        color: #e63946;
    }

.starter-modal .modal-body {
    padding: 20px;
    max-height: 70vh;
    overflow-y: auto;
    background: #fafcff;
}

.plan-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .plan-details ul li {
        background: #fff;
        border: 1px solid #e6ecf5;
        border-radius: 8px;
        padding: 10px 12px;
        margin-bottom: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
        color: #444;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

        .plan-details ul li:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        }

.plan-details .status {
    font-weight: 600;
    color: #333;
}

    .plan-details .status.highlight {
        color: #007bff;
    }

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .starter-modal .modal-title {
        font-size: 16px;
    }

    .plan-details ul li {
        font-size: 13px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/*-------------------------- radiobutton -------------------------------------------------------------*/

.radio-list table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.radio-list tr {
    line-height: 1;
    padding: 0;
    margin: 0;
    height: 28px;
}

.radio-list td {
    white-space: nowrap;
    vertical-align: middle;
    padding: 2px 6px;
}

.radio-list input[type="radio"] {
    margin-right: 6px;
    vertical-align: top;
}

.radio-list label,
.radio-list td,
.radio-list span {
    font-family: inherit;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #5a5a5a;
}
/* Mobile = vertical stack */
@media (max-width: 600px) {
    .radio-list table,
    .radio-list tbody,
    .radio-list tr,
    .radio-list td {
        display: block;
        width: 100% !important;
    }

    .radio-list tr {
        height: auto;
        margin-bottom: 4px;
    }

    .radio-list td {
        padding: 3px 0;
    }

    .radio-list input[type="radio"] {
        margin-right: 8px;
        vertical-align: middle;
    }
}


.radio-list1 table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.radio-list1 tr {
    line-height: 1;
    padding: 0;
    margin: 0;
    height: 28px;
}

.radio-list1 td {
    white-space: nowrap;
    vertical-align: middle;
    padding: 2px 6px;
}

.radio-list1 input[type="radio"] {
    margin-right: 6px;
    vertical-align: top;
}

.radio-list1 label,
.radio-list1 td,
.radio-list1 span {
    font-family: inherit;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 1.2;
    letter-spacing: .5px;
    color: #5a5a5a;
}





.strikediag {
    display: inline-block;
    position: relative;
    color: red; /* The strike color */
}

    .strikediag::before {
        content: '';
        position: absolute;
        left: -0.1em;
        right: -0.1em;
        top: 0.40em;
        bottom: 0.40em;
        background: linear-gradient( to left top, transparent 44.5%, currentColor 45.5%, currentColor 50.5%, transparent 52.5% );
        pointer-events: none;
    }

.priceBest {
    color: #820000;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    /* font-size: clamp(0.6875rem, 0.7vw + 0.25rem, 0.75rem);*/
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: .4px;
}

.cta-box {
    text-align: center;
    background: #1e6091;
    color: white;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
}

    .cta-box p {
        font-family: 'Hanken Grotesk', sans-serif;
        font-weight: 700;
        font-size: clamp(1rem, 2vw + 0.5rem, 1.5rem);
/*        font-size: 1.6em;
        font-weight: 600;*/
    }

    .cta-box ul {
        list-style: none;
        padding: 0;
        font-size: 1.3em;
        font-weight: 500;
    }

        .cta-box ul li {
            margin: 12px 0;
        }



.responsive-two-column {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

    .responsive-two-column > .column {
        flex: 1 1 100%;
    }

@media (min-width: 768px) {
    .responsive-two-column > .column {
        flex: 1 1 50%;
    }
}
.suggestion-box {
    background: #ffffff;
    padding: 10px;
    border-left: 4px solid #1a73e8;
   
    border-radius: 6px;
    margin-top: 20px;
    padding-left: 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}








@media (max-width: 767px) {
    .mobile-flex-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
    }

        .mobile-flex-container .col-xs-6 {
            flex: 1 1 50%;
            max-width: 50%;
        }

        .mobile-flex-container .card {
            text-align: center;
            padding: 10px;
        }

        .mobile-flex-container img {
            max-width: 100%;
            height: auto;
        }

    /*.custom-card1 {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        padding: 5px;
        text-align: center;
        transition: transform 0.2s ease;
    }

        .custom-card1:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .custom-card1 img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }
    step-badge1 {
        font-family: 'Hanken Grotesk', sans-serif;
        color: #e8e5e2;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 4px 8px;
    }*/


    .custom-card1 {
        position: relative; /* needed if badge is absolutely positioned */
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        padding: 5px;
        text-align: center;
        transition: transform 0.2s ease;
    }

        .custom-card1:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        .custom-card1 img {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
        }

    /* Base badge style (desktop + tablet) */
    .step-badge1 {
        position: absolute;
        top: 10px;
        left: 10px;
        font-family: 'Hanken Grotesk', sans-serif;
        color: #cec8c1; /* blue background */

        font-size: 14px;
        font-weight: 700;
        padding: 5px 10px;
    }

    /* Mobile adjustments */
    @media (max-width: 576px) {
        .step-badge1 {
            font-size: 0.875rem; /* slightly smaller text */
            padding: 4px 8px; /* smaller padding */
        }
    }
}



/* Mobile Styles */
@media (max-width: 768px) {
    .testimonial-container {
        width: 100%; /* Full width for smaller screens */
        height: auto;
    }

    .testimonials-slide {
        flex-direction: column;
        align-items: center;
    }

    .testimonial {
        width: 100%; /* Reduced width for mobile */
        height: auto;
    }

        .testimonial .pic img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
        }
        .testimonial h3 {
            font-size: 1.1rem;
        }

        .testimonial p {
            font-size: 0.8rem;
        }
}

@media (max-width: 480px) {
    .testimonial-container {
        width: 100%;
        max-width: 360px; /* Limit maximum width */
        margin: 0 auto; /* Center horizontally */
    }

    .testimonial .pic img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        object-fit: cover;
    }

    .testimonial h3 {
        font-size: 1rem;
    }

    .testimonial p {
        font-size: 0.75rem;
    }
}

@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        gap: 20px; /* Equal gap between columns */
    }

    .footer-col {
        flex: 1 1 200px; /* Equal width for each column */
        margin: 10px;
    }

    /* Mobile responsiveness */
    @media (max-width: 768px) {
        .footer-container {
            display: block; /* Stack columns on smaller screens */
        }

        .footer-col {
            flex: 1 1 100%; /* Full width for each column on mobile */
            margin-bottom: 15px; /* Add spacing between stacked columns */
        }
    }
}

/* ================================
   Universal Input, Textarea, Select
   Works consistently on iOS + Android + Desktop
   ================================ */
input.TBoxRC,
input.TBoxRC1,
textarea.TBoxRC,
textarea.TBoxRC1,
select.down,
select.down1 {
    -webkit-appearance: none; /* iOS Safari reset */
    -moz-appearance: none;
    appearance: none;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
    font-size: clamp(0.75rem, 0.8vw + 0.4rem, 0.9375rem);
    color: #5C5C66;
    text-decoration: none;
    line-height: 1.4;
    padding: 0.5rem 0.75rem; /* Responsive padding */
    height: 2.5rem; /* ~40px, consistent across iOS/Android */

    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* ================================
   Specific Adjustments
   ================================ */
.TBoxRC {
    text-align: left !important;
}

.TBoxRC1 {
    text-align: justify;
    border-radius: 0 4px 4px 0;
}

textarea.TBoxRC,
textarea.TBoxRC1 {
    resize: vertical; /* User can expand textareas */
    min-height: 4rem; /* Prevent too small on iPhone */
    line-height: 1.5;
}

    /* ================================
   Focus Styles (Accessibility + UX)
   ================================ */
    input.TBoxRC:focus,
    input.TBoxRC1:focus,
    textarea.TBoxRC:focus,
    textarea.TBoxRC1:focus,
    select.down:focus,
    select.down1:focus {
        outline: none;
        border-color: #7bc1f7;
        box-shadow: 0 0 0 2px rgba(123, 193, 247, 0.5);
    }

/* ================================
   Dropdown Customization
   ================================ */
select.down,
select.down1 {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%235C5C66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    padding-right: 2rem; /* space for dropdown arrow */
    cursor: pointer;
}

/* ================================
   Optional Div-based Styles
   ================================ */
/*.down1 {
    border-radius: 0 4px 4px 0;
}*/

/* ================================
   Dark Mode Support (optional)
   ================================ */
/*@media (prefers-color-scheme: dark) {
    input.TBoxRC,
    input.TBoxRC1,
    textarea.TBoxRC,
    textarea.TBoxRC1,
    select.down,
    select.down1 {
        background-color: #1e1e1e;
        border-color: #444;
        color: #ddd;
    }

    select.down,
    select.down1 {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23ddd' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='4 6 8 10 12 6'/%3E%3C/svg%3E");
    }
}*/
/*--------------------------END-----------------------------------------------------------------------------------*/
