﻿
:root {
    --bf-navy: #052838;
    --bf-navy-2: #08384f;
    --bf-blue: #007bff;
    --bf-blue-soft: #eef7ff;
    --bf-green: #4cbb17;
    --bf-green-dark: #2f8f12;
    --bf-yellow: #ffc727;
    --bf-red: #d64545;
    --bf-text: #263238;
    --bf-muted: #5c6b73;
    --bf-border: rgba(5, 40, 56, 0.12);
    --bf-soft-border: rgba(5, 40, 56, 0.08);
    --bf-shadow: 0 18px 42px rgba(5, 40, 56, 0.12);
    --bf-card-shadow: 0 10px 26px rgba(5, 40, 56, 0.10);
}

 
html {
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Inter', sans-serif;
    background: hsl(var(--background));
    color: hsl(var(--foreground));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-smooth: always;
    scroll-behavior: smooth;
    text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
.btnOrange {
    border-radius: 25px;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 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: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.3px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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: 'Inter', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.3px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    cursor: pointer;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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.875rem, 0.9vw + 0.3rem, 0.9375rem);
        padding: 11px 20px;
        border-radius: 7px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .btngreen {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
          font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
        border-radius: 10px;
    }
}

.ctabutton {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.2px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    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: geometricPrecision;
    cursor: pointer;
}


.cta-button,
.cta-button1,
.cta-button2,
.cta-button3,
.cta-button4 {
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.2px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    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: geometricPrecision;
    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.875rem, 0.9vw + 0.3rem, 0.9375rem);
        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.875rem, 0.9vw + 0.3rem, 0.9375rem);
        padding: 14px 20px;
        border-radius: 10px;
    }
}

.view-more-btn {
    font-family: 'Inter', 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: 'Inter', sans-serif;
    font-weight: 400;
    vertical-align: middle;
    letter-spacing: 0.2px;
    font-size: 0.9375rem;
    color: #64748b;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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: #64748b;
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        font-size: clamp(1.5rem, 2vw + 0.5rem, 3.5rem);
        letter-spacing: 0.2px; /* 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: #64748b;
        font-family: 'Inter', 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: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.9375rem, 1.1vw + 0.45rem, 1.125rem);
    line-height: 1.4;
    letter-spacing: .3px;
}
.HeroSubHeading3 {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
    /*.HeroSecHeading {
        color: #64748b;
        font-family: 'Inter', 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: geometricPrecision;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    }
    .HeroSubSecHeading {
        color: #64748b;
        font-family: 'Inter', 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: geometricPrecision;
        text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
    }*/
    .HeroSeccolortxt1 {
        color: #D83C00;
        font-family: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', sans-serif;
        font-weight: 500;
        margin: 20px 0;
    }

    .hero-text-section .title {
        font-family: 'Inter', sans-serif;
        font-size: clamp(1.125rem, 2.5vw, 1.5rem);
        font-weight: 700;
        letter-spacing: 0.2px;
        display: block;
        margin-bottom: 4px;
    }

        .hero-text-section .subtitle {
            font-family: 'Inter', sans-serif;
            font-weight: 500;
            letter-spacing: 0.2px;
              font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
            color: #64748b;
        }
.HeroSectxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    line-height: 1.2;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    vertical-align: middle;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}

.HeroSecFormHeading {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    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: 'Inter', sans-serif;
    font-weight: 500;
    /*     font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);*/
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
}
.RoleSectxt1 {
    color: #007bff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    /*     font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);*/
    font-size: clamp(1rem, 1.5vw + 0.5rem, 1.75rem);
    line-height: 1.3;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.RoleSectxt2 {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
   
}
.TextwithUnderLine {
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    color: #070738;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 3vw + 1rem, 1.5rem);
}

    .TextwithUnderLine::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, #007bff, #242f51);
        border-radius: 20px;
    }
.Notetxt {
    color: #6C757D;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.625rem, 0.5vw + 0.2rem, 0.725rem);
    letter-spacing: .2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageHeading {
    color: #1e3a8a;
    font-family: 'Inter', 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);
}


.cardheading {
    color: #1e3a8a;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.3rem, 1.125rem); /* 16-18px */
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.PageHeading1 {
    color: #1e293b;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(1.125rem, 1vw + 0.6rem, 1.5rem);
    line-height: 1.3;
    letter-spacing: 0.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);
}
.PageSubHeading1 {
    color: #007BFF;
    font-family: 'Inter', 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: 'Inter', sans-serif;
    font-weight: 600;
    vertical-align: middle;
    letter-spacing: 0.2px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    color: #64748b;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

.PageSubHeading2 {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.9375rem;
    line-height: 1.4;
    letter-spacing: .2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}


.ResumeDesctxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Pagesmalltxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.8vw + 0.35rem, 0.9375rem); /* 14-15px */
    line-height: 1.5;
}

.PageMediumtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.3rem, 1.125rem); /* 16-18px */
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.Pagebigtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.375rem); /* 18-22px */
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.Pagesmallsemiboldtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(0.875rem, 0.8vw + 0.35rem, 0.9375rem); /* 14-15px */
    line-height: 1.5;
}

.PageMediumsemiboldtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1vw + 0.3rem, 1.125rem); /* 16-18px */
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.Pagebigsemiboldtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1.125rem, 1.2vw + 0.4rem, 1.375rem); /* 18-22px */
    line-height: 1.6;
    letter-spacing: 0.2px;
}
.PageBottomHeadingTxt 
{
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    color: #64748b;
    letter-spacing: 0.3px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.PageBottomBigTxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    color: #64748b;
    letter-spacing: 0.2px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    color: #64748b;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 700;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    color: #64748b;
    letter-spacing: 0.3px;
    display: inline-block;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', 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: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}
.Pricesubheader 
{
    color: #64748b;
    font-family: 'Inter', 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: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
}

.Pricesubheader1 
{
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    letter-spacing: .3px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
     text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1); /* optional: subtle shadow for clarity */
 
}
.Pricesmalltxt {
    display: inline-block;
    line-height: 1.5;
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.875rem, 0.8vw + 0.35rem, 0.9375rem);
    font-weight: 400;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 700;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', 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: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 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: geometricPrecision; /* 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: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: .2px;
            top: -8px;
              font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
            color: #555A66;
            background: #FFF;
            -webkit-font-smoothing: antialiased; /* Safari/Chrome */
            -moz-osx-font-smoothing: grayscale; /* Firefox */
            text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: -8px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: -8px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: .2px;
    top: 11px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    background: #FFF;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', 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.875rem, 0.9vw + 0.3rem, 0.9375rem);
    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: geometricPrecision; /* 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: 460px;
    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: 'Inter', sans-serif;
    letter-spacing: .2px;
    font-weight: 400;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.125rem);
    color: #64748b;
    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: 'Inter', 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: 'Inter', sans-serif;
    letter-spacing: 0.2px;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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: 'Inter', 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: 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
    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: geometricPrecision; /* 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: 'Inter', 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.875rem, 0.9vw + 0.3rem, 0.9375rem);
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', 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: 0.2px;
    }

        .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: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.875rem, 1.2vw + 0.4rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 1.2vw + 0.4rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
    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: 'Inter', 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: linear-gradient(135deg, #007BFF, #0056D2);
    z-index: 999;
    font-family: 'Inter', sans-serif;
    font-weight: 600; /* slightly bolder for modern look */
    letter-spacing: 0.2px;
    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;
}
@media (max-width: 768px) {
    .back-to-top1 {
        left: 5px;
        right: 5px;
        bottom: 10px;
        width: auto;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 8px;
    }
}
/*-------------------------- 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing:.8px;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.25rem);
    color: #64748b;
    padding: 6px 8px;
    min-height: 2.5em;
    line-height: 1.6;
    letter-spacing: 0.6px;
}
.rotating-headings-small {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #007BFF;
    letter-spacing: 0.2px;
    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: 'Inter', sans-serif;
    font-weight: 500;
    font-size: clamp(0.95rem, 1vw + 0.5rem, 1rem);
    color: #64748b;
}

.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: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.2px;
    line-height: 1.6;
    display: inline-block;
    text-shadow: 0.2px 0.2px 0.4px rgba(0, 0, 0, 0.05);
}

.belowSectxt2 {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    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: 'Inter', 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: 'Inter', 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: 'Inter', sans-serif;
        color: #e0dbd5;
        font-size: 0.875rem;
        font-weight: 700;
        padding: 4px 8px;
    }
}
/*sdfsadfsadfsadfsad*/


.Sec2bigsemiboldtxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: clamp(1rem, 1vw + 0.5rem, 1.2rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin-top: 10px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* 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: 'Inter', sans-serif;
    font-weight: 400;
        font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    
}
/******************************************* for Expert ********************************************************/
.expert-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

/* LEFT PROFILE COLUMN */
.expert-image {
    flex: 0 0 220px;
    max-width: 220px;
    text-align: center;
    margin: 0 auto;
}

    .expert-image table {
        width: 100%;
        margin: 0 auto;
    }

    .expert-image td {
        text-align: center;
        vertical-align: top;
    }

    /* IMAGE */
    .expert-image img {
        width: 140px;
        height: 140px;
        object-fit: cover;
        display: block;
        margin: 0 auto;
        border-radius: 50%;
        mix-blend-mode: multiply;
    }

/* NAME */
.expert-name {
    font-family: 'Inter', sans-serif;
    color: #3b4b9e;
    font-weight: 600;
    font-size: 16px;
    display: block;
    margin-top: 14px;
    text-align: center;
}

/* TITLE */
.expert-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    display: block;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 8px;
    text-align: center;
    color: #111;
}

/* RIGHT CONTENT */
.expert-content {
    flex: 1;
    min-width: 280px;
    text-align: justify;
}

/* READ MORE */
.read-more-toggle {
    font-family: 'Inter', sans-serif;
     font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    color: #4D4DFF;
    cursor: pointer;
    padding-top: 5px;
    font-weight: 500;
    text-align: right;
}

/* LINK */
.connect-link {
    font-family: 'Inter', sans-serif;
    color: #4D4DFF;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
}

/* TABLET */
@media (max-width: 991px) {

    .expert-container {
        gap: 30px;
    }

    .expert-image {
        flex: 0 0 200px;
        max-width: 200px;
    }
}

/* MOBILE */
@media (max-width: 767px) {

    .expert-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        text-align: center;
    }

    .expert-image {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .expert-content {
        width: 100%;
        text-align: center;
    }

    .read-more-toggle {
        text-align: center;
    }

    .connect-link {
        text-align: center;
    }

    .expert-name {
        font-size: 16px;
    }

    .expert-title {
        font-size: 14px;
    }
}
/*////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/

.plan-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}
.plan-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    color: #007bff;
}
.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 CARD
========================= */

.pricing-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .pricing-card > tbody,
    .pricing-card > tbody > tr,
    .pricing-card > tbody > tr > td {
        height: 100%;
    }

/* =========================
   HEADER
========================= */

.plan-header {
    text-align: center;
    background: linear-gradient(135deg, #F0F7FF 40%, #E6F2FA);
    height: 150px;
    position: relative;
    border-radius: 8px 8px 0 0;
}

/* =========================
   FEATURE TABLE
========================= */

.feature-list {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

    .feature-list tr {
        height: 42px;
    }

    .feature-list td {
        vertical-align: top;
        padding: 6px 4px;
    }

/* =========================
   ICON COLUMN
========================= */

.feature-bullet {
    width: 28px;
    min-width: 28px;
    text-align: center;
    vertical-align: top;
    padding-top: 8px !important;
}

    .feature-bullet img {
        width: 14px;
        height: 14px;
        display: block;
        margin: 0 auto;
    }

/* =========================
   TEXT
========================= */

.Pricesmalltxt {
    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.5;
    display: block;
    margin-top: 0;
    padding-top: 0;
    word-break: break-word;
}

/* =========================
   BUTTON SECTION
========================= */

.button-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    min-height: 140px;
    padding-top: 10px;
}

/* =========================
   CTA BUTTON
========================= */

.cta,
.highlighted-cta {
    width: 180px;
    height: 42px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
}

.cta {
    background: #007bff;
}

.highlighted-cta {
    background: #28a745;
}

/* =========================
   BEST FOR
========================= */

.best-for {
    margin-top: 12px;
    text-align: center;
    min-height: 50px;
}

/* =========================
   DETAILS LINKS
========================= */

.details-container {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    padding: 12px 5px 0;
}

.details-link {
     font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    color: #007bff;
    text-decoration: underline;
    cursor: pointer;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    .feature-list tr {
        height: auto;
    }

    .Pricesmalltxt {
        font-size: 13px;
    }

    .button-section {
        min-height: auto;
    }
}



.best-for {
    font-family: 'Inter', 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: 'Inter', 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;
}


/*//---------------------------------------------Modal---------------------------------------------------
*/
.starter-modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    font-family: 'Inter', 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: 0.2px;
    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: 0.2px;
    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: 'Inter', sans-serif;
    font-weight: 500;
    /*     font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);*/
    font-size: 0.875rem;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.cta-box {
    text-align: center;
    background: #1e6091;
    color: white;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
}

    .cta-box p {
        font-family: 'Inter', 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: 'Inter', 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: 'Inter', 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: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: 0.2px;
      font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    color: #64748b;
    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: geometricPrecision;
    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;
}


/*-------------------------------------------------Cover Letter / Linkedin Optimization ---------------------------*/

.cover-letter-section {
    width: 100%;
    padding: 40px 20px;
    
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

.container-custom {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* =========================
   LEFT SIDE
========================= */

.cover-left {
    flex: 1;
}

.badge-cover {
    display: inline-block;
    background: rgba(0,123,255,0.08);
    color: #007BFF;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 25px;
}

.cover-heading {
    font-size: clamp(2rem, 4vw, 3.6rem);
    line-height: 1.2;
    font-weight: 800;
    color: #0B1445;
    margin-bottom: 20px;
    letter-spacing: -.8px;
}

.cover-subheading {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: #007BFF;
    font-weight: 600;
    margin-bottom: 22px;
    line-height: 1.4;
}

.cover-description {
    font-size: 1.04rem;
    line-height: 1.9;
    color: #5C6470;
    max-width: 720px;
    margin-bottom: 42px;
}

/* =========================
   FEATURES
========================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 45px;
}

.feature-card {
    display: flex;
    align-items:center;
    gap: 10px;
    background: #ffffff;
    border-radius: 20px;
    padding: 5px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.06);
    transition: .3s ease;
    border: 1px solid #EEF3FA;
}

    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    }

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.blue {
    background: rgba(0,123,255,0.12);
}

.yellow {
    background: rgba(255,193,7,0.14);
}

.green {
    background: rgba(25,135,84,0.12);
}

.orange {
    background: rgba(255,107,0,0.12);
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.feature-card p {
    color: #64748B;
    font-size: .94rem;
    line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.cover-btn-area {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.cover-btn-primary {
    background: linear-gradient(135deg, #007BFF, #0056D2);
    color: #fff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(0,123,255,0.22);
}

    .cover-btn-primary:hover {
        transform: translateY(-2px);
    }

.cover-btn-secondary {
    border: 1.5px solid #D7E3F1;
    color: #0B1445;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 600;
    transition: .3s ease;
    background: #fff;
}

    .cover-btn-secondary:hover {
        background: #F5F9FF;
    }

/* =========================
   RIGHT IMAGE
========================= */

.cover-right {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    max-width: 520px;
    width: 100%;
}

.cover-image {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    animation: floatImage 5s ease-in-out infinite;
}

/* FLOATING TAGS */

.floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 20px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-weight: 700;
    color: #0B1445;
    font-size: .95rem;
}

.card-1 {
    top: 12%;
    left: -30px;
}

.card-2 {
    bottom: 14%;
    right: -20px;
}

/* =========================
   ANIMATION
========================= */

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .container-custom {
        flex-direction: column-reverse;
        text-align: center;
        gap: 50px;
    }

    .cover-description {
        margin-left: auto;
        margin-right: auto;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .cover-btn-area {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    .cover-letter-section {
        padding: 70px 16px;
    }

    .cover-heading {
        font-size: 2rem;
    }

    .cover-subheading {
        font-size: 1.1rem;
    }

    .cover-description {
        font-size: .95rem;
        line-height: 1.8;
    }

    .feature-card {
        padding: 12px;
        text-align: left;
    }

    .feature-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .cover-btn-primary,
    .cover-btn-secondary {
        width: 100%;
        text-align: center;
    }
}


/* =========================
   LINKEDIN SECTION
========================= */

.linkedin-section {
    width: 100%;
    padding: 40px 20px;
    background: linear-gradient(180deg, #ffffff 0%, #F8FBFF 100%);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.linkedin-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* =========================
   LEFT IMAGE
========================= */

.linkedin-left {
    flex: 1;
    display: flex;
    justify-content: center;
}

.linkedin-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
}

.linkedin-image {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    animation: linkedinFloat 5s ease-in-out infinite;
}

/* FLOATING TAGS */

.linkedin-floating {
    position: absolute;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-weight: 700;
    color: #0B1445;
    font-size: .92rem;
}

.linkedin-card-1 {
    top: 12%;
    left: -20px;
}

.linkedin-card-2 {
    bottom: 15%;
    right: -20px;
}

/* =========================
   RIGHT CONTENT
========================= */

.linkedin-right {
    flex: 1;
}

.linkedin-badge {
    display: inline-block;
    background: rgba(10,102,194,0.08);
    color: #0A66C2;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.linkedin-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.2;
    font-weight: 800;
    color: #0B1445;
    margin-bottom: 20px;
    letter-spacing: -.8px;
}

.linkedin-subheading {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #0A66C2;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 22px;
}

.linkedin-description {
    color: #5C6470;
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 40px;
    max-width: 650px;
}

/* =========================
   FEATURE GRID
========================= */

.linkedin-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 22px;
    margin-bottom: 42px;
}

.linkedin-feature-card {
    background: #ffffff;
    border: 1px solid #EEF3FA;
    border-radius: 20px;
    padding: 10px;
    display: flex;
    align-items:center;
    gap: 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    transition: .3s ease;
}

    .linkedin-feature-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

.linkedin-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.blue-bg {
    background: rgba(10,102,194,0.12);
}

.green-bg {
    background: rgba(25,135,84,0.12);
}

.yellow-bg {
    background: rgba(255,193,7,0.12);
}

.orange-bg {
    background: rgba(255,107,0,0.12);
}

.linkedin-feature-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 6px;
}

.linkedin-feature-card p {
    font-size: .93rem;
    color: #64748B;
    line-height: 1.6;
}

/* =========================
   BUTTONS
========================= */

.linkedin-btn-area {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.linkedin-btn-primary {
    background: linear-gradient(135deg, #0A66C2, #004182);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 34px;
    border-radius: 14px;
    font-weight: 700;
    transition: .3s ease;
    box-shadow: 0 10px 25px rgba(10,102,194,0.20);
}

    .linkedin-btn-primary:hover {
        transform: translateY(-2px);
    }

.linkedin-btn-secondary {
    border: 1.5px solid #D7E3F1;
    color: #0B1445;
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 14px;
    font-weight: 600;
    background: #ffffff;
    transition: .3s ease;
}

    .linkedin-btn-secondary:hover {
        background: #F5F9FF;
    }

/* =========================
   ANIMATION
========================= */

@keyframes linkedinFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .linkedin-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .linkedin-description {
        margin-left: auto;
        margin-right: auto;
    }

    .linkedin-feature-grid {
        grid-template-columns: 1fr;
    }

    .linkedin-btn-area {
        justify-content: center;
    }

    .linkedin-floating {
        display: none;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    .linkedin-section {
        padding: 40px 16px;
    }

    .linkedin-heading {
        font-size: 2rem;
    }

    .linkedin-subheading {
        font-size: 1.05rem;
    }

    .linkedin-description {
        font-size: .95rem;
        line-height: 1.8;
    }

    .linkedin-feature-card {
        text-align: left;
        padding: 18px;
    }

    .linkedin-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    .linkedin-btn-primary,
    .linkedin-btn-secondary {
        width: 100%;
        text-align: center;
    }
}
.blog-heading-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    text-align: center;
}

.bodhi-tree-img {
    width: 3.75rem;
    height: 3.75rem;
    object-fit: contain;
    image-rendering: auto;
    mix-blend-mode: multiply;
}

/* Mobile */
@media (max-width: 576px) {

    .blog-heading-wrapper {
        gap: 10px;
    }

    .bodhi-tree-img {
        width: 2.8rem;
        height: 2.8rem;
    }
}


/* =========================
   FOOTER
========================= */

.biofie-footer {
    width: 100%;
    background: #F5F7FA;
    padding: 20px 10px 20px;
    font-family: 'Inter', sans-serif;
    border-top: 1px solid #E8EDF3;
}

/* CONTAINER */

.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 45px;
}

/* COLUMN */

.footer-column {
    min-width: 0;
}

/* HEADING */

.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0B1445;
    margin-bottom: 12px;
    letter-spacing: .2px;
    text-decoration: underline;
    text-underline-offset: 5px;
}

/* LINKS */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li {
        margin-bottom: 14px;
    }

    .footer-links a {
        color: #5B6472;
        text-decoration: none;
        font-size: .95rem;
        transition: .25s ease;
        line-height: 1.6;
    }

        .footer-links a:hover {
            color: #007BFF;
            padding-left: 4px;
        }

/* DIVIDER */

.footer-divider {
    max-width: 1300px;
    height: 1px;
    background: #E3EAF2;
    margin: 25px auto 30px;
}

/* POLICY */

.footer-policy {
    max-width: 1050px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

    .footer-policy a {
        color: #667085;
        text-decoration: none;
        font-size: .92rem;
        transition: .25s ease;
    }

        .footer-policy a:hover {
            color: #007BFF;
        }

/* CONTACT */

.footer-contact {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 15px;
}

    .footer-contact a {
        color: #475467;
        text-decoration: none;
        font-size: .95rem;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: .25s ease;
    }

        .footer-contact a:hover {
            color: #007BFF;
        }

    .footer-contact .fa-envelope {
        color: #2563EB;
    }

    .footer-contact .fa-phone {
        color: #16A34A;
    }

    .footer-contact .fa-map-marker {
        color: #EF4444;
    }

/* SOCIAL */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-bottom: 15px;
}

    .footer-social a {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        background: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        font-size: 18px;
        transition: .3s ease;
        box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    }

        .footer-social a:hover {
            transform: translateY(-3px);
        }

/* SOCIAL COLORS */

.linkedin {
    color: #0A66C2;
}

.facebook {
    color: #1877F2;
}

.instagram {
    color: #E4405F;
}

.youtube {
    color: #FF0000;
}

.twitter {
    color: #1DA1F2;
}

/* COPYRIGHT */

.footer-bottom {
    text-align: center;
}

    .footer-bottom a {
        color: #667085;
        text-decoration: none;
        font-size: .9rem;
        line-height: 1.8;
    }

/* =========================
   TABLET
========================= */

@media(max-width:991px) {

    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px) {

    .biofie-footer {
        padding: 20px 18px 15px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-links a:hover {
        padding-left: 0;
    }

    .footer-contact {
        flex-direction: column;
        gap: 16px;
    }

        .footer-contact a {
            justify-content: center;
            font-size: .92rem;
        }

    .footer-policy {
        gap: 14px;
    }

        .footer-policy a {
            font-size: .85rem;
        }

    .footer-social a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-bottom a {
        font-size: .82rem;
    }
 }


/*--------------------------------------------------Biofie Comparison Block --------------------------------------------------------------*/
.preview-shell {
    max-width: 1280px;
    margin: 0 auto;
    padding: 15px;
}

.preview-title {
    margin: 0 0 10px;
    color: var(--bf-navy);
    font-size: 24px;
    line-height: 1.25;
    text-align: center;
}

.preview-note {
    max-width: 900px;
    margin: 0 auto 28px;
    color: var(--bf-muted);
    font-size: 14px;
    line-height: 1.6;
    text-align: center;
}

.preview-device-note {
    max-width: 960px;
    margin: 15px auto 0;
    padding: 10px 12px;
    border-left: 4px solid var(--bf-green);
    border-radius: 12px;
    background: #ffffff;
    color: #34495e;
    font-size: 14px;
    line-height: 1.6;
    box-shadow: 0 8px 20px rgba(5, 40, 56, 0.06);
}

.bf-compare-section {
    padding: 32px 18px;
    background: radial-gradient(circle at top left, rgba(0, 123, 255, 0.12), transparent 420px), linear-gradient(135deg, #f8fbff 0%, #eef7ff 100%);
    border-radius: 28px;
    box-shadow: 0 8px 28px rgba(5, 40, 56, 0.08);
}

.bf-compare-container {
    max-width: 1180px;
    margin: 0 auto;
}

.bf-compare-header {
    max-width: 920px;
    margin: 0 auto 24px;
    text-align: center;
}

.bf-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(76, 187, 23, 0.12);
    color: var(--bf-green-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.bf-compare-title {
    margin: 0;
    color: var(--bf-navy);
    font-size: clamp(25px, 3vw, 38px);
    line-height: 1.18;
    font-weight: 850;
}

.bf-compare-subtitle {
    margin: 12px 0 0;
    color: #34495e;
    font-size: clamp(16px, 1.4vw, 19px);
    line-height: 1.6;
    font-weight: 500;
}

.bf-compare-trust {
    margin: 6px 0 0;
    color: var(--bf-blue);
    font-size: 16px;
    font-weight: 800;
}

.bf-proof-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin: 26px 0;
}

.bf-proof-box {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border: 1px solid rgba(5, 40, 56, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 22px rgba(5, 40, 56, 0.08);
    text-align: center;
}
    .bf-proof-box strong {
        display: block;
        color: var(--bf-blue);
        font-size: 30px;
        line-height: 1;
        font-weight: 900;
    }

    .bf-proof-box span {
        display: block;
        margin-top: 8px;
        color: #4a5568;
        font-size: 14px;
        font-weight: 700;
    }

.bf-compare-grid {
    border: 1px solid var(--bf-border);
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--bf-shadow);
}

.bf-compare-head,
.bf-compare-row {
    display: grid;
    grid-template-columns: 1.05fr 1.35fr 1.05fr 1.05fr;
}

.bf-compare-head {
    background: var(--bf-navy);
    color: #ffffff;
}
    .bf-compare-head > div {
        min-height: 60px;
        display: flex;
        align-items: center;
        padding: 16px;
        border-right: 1px solid rgba(255, 255, 255, 0.14);
        font-size: 15px;
        font-weight: 850;
        line-height: 1.35;
    }
    
    .bf-compare-head > div:last-child {
            border-right: 0;
        }

    .bf-compare-head .bf-head-biofie {
        background: var(--bf-blue);
    }

.bf-compare-row {
    border-bottom: 1px solid rgba(5, 40, 56, 0.09);
}

    .bf-compare-row:last-child {
        border-bottom: 0;
    }

.bf-feature,
.bf-option {
    min-height: 78px;
    display: flex;
    align-items: center;
    padding: 16px;
    border-right: 1px solid rgba(5, 40, 56, 0.09);

    color: #64748b;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    line-height: 1.4;
    letter-spacing: 0.2px;
    -webkit-font-smoothing: antialiased; /* Safari/Chrome */
    -moz-osx-font-smoothing: grayscale; /* Firefox */
    text-rendering: geometricPrecision; /* improves font rendering */
    text-shadow: 0.15px 0.15px 0.3px rgba(0, 0, 0, 0.1);
}
    .bf-option:last-child {
        border-right: 0;
    }

    .bf-feature {
    background: #f7fbff;
    color: var(--bf-navy);
    font-weight: 850;
}

.bf-option {
    gap: 10px;
    color: var(--bf-text);
}

.bf-option-biofie {
    background: linear-gradient(90deg, rgba(76, 187, 23, 0.13), rgba(255, 255, 255, 1));
    border-left: 4px solid var(--bf-green);
    font-weight: 650;
}

.bf-mobile-label {
    display: none;
}

.bf-icon {
    flex: 0 0 24px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
}

.bf-icon-check {
    background: rgba(76, 187, 23, 0.15);
    color: var(--bf-green-dark);
}

.bf-icon-warn {
    background: rgba(255, 199, 39, 0.24);
    color: #956400;
}

.bf-icon-cross {
    background: rgba(214, 69, 69, 0.12);
    color: var(--bf-red);
}

.bf-compare-cta {
    margin-top: 24px;
    padding: 22px 18px;
    border-radius: 22px;
    background: var(--bf-navy);
    color: #ffffff;
    text-align: center;
    box-shadow: 0 14px 34px rgba(5, 40, 56, 0.18);
}
    .bf-compare-cta p {
        margin: 0 0 14px;
        font-size: 16px;
        line-height: 1.5;
    }
.bf-compare-btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    background: var(--bf-green);
    color: #ffffff;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}
    .bf-compare-btn:hover,
    .bf-compare-btn:focus {
        background: var(--bf-green-dark);
        color: #ffffff;
        text-decoration: none;
    }
.bf-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================

       Mobile: same HTML becomes stacked comparison cards

       ========================================================= */
@media (max-width: 767px) {
    .preview-shell {
        padding: 12px;
    }
    .preview-title {
        font-size: 22px;
    }
    .bf-compare-section {
        padding: 30px 10px;
        border-radius: 0;
    }
    .bf-compare-header {
        margin-bottom: 18px;
    }
    .bf-kicker {
        padding: 6px 11px;
        font-size: 11px;
    }
    .bf-compare-title {
        font-size: 22px;
        line-height: 1.24;
    }
    .bf-compare-subtitle {
        font-size: 14px;
        line-height: 1.55;
    }
    .bf-compare-trust {
        font-size: 14px;
    }
    .bf-proof-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin: 18px 0;
    }
    .bf-proof-box {
        min-height: 60px;
        padding: 8px 4px;
        border-radius: 15px;
    }
        .bf-proof-box strong {
            font-size: 18px;
        }
        .bf-proof-box span {
            margin-top: 6px;
             font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
        }
    .bf-compare-grid {
        border: 0;
        border-radius: 0;
        overflow: visible;
        background: transparent;
        box-shadow: none;
    }
    .bf-compare-head {
        display: none;
    }
    .bf-compare-row {
        display: block;
        margin-bottom: 14px;
        overflow: hidden;
        border: 1px solid var(--bf-border);
        border-radius: 18px;
        background: #ffffff;
        box-shadow: var(--bf-card-shadow);
    }

        .bf-compare-row:last-child {
            margin-bottom: 0;
        }

    .bf-feature {
        min-height: auto;
        display: block;
        padding: 13px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        background: var(--bf-navy);
        color: #ffffff;
        font-size: 15px;
        font-weight: 850;
        line-height: 1.35;
    }

    .bf-option {
        min-height: auto;
        display: grid;
        grid-template-columns: 84px 24px minmax(0, 1fr);
        align-items: start;
        gap: 8px;
        padding: 12px 14px;
        border-right: 0;
        border-bottom: 1px solid rgba(5, 40, 56, 0.08);
        font-size: 13px;
        line-height: 1.4;
    }
     .bf-option:last-child {
            border-bottom: 0;
        }
    .bf-option-biofie {
        border-left: 0;
        background: linear-gradient(90deg, rgba(76, 187, 23, 0.13), rgba(255, 255, 255, 1));
    }

    .bf-mobile-label {
        display: block;
        color: var(--bf-navy);
         font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
        font-weight: 850;
        line-height: 1.25;
    }

    .bf-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
         font-size: clamp(0.875rem, 0.9vw + 0.3rem, 0.9375rem);
    }
    .bf-compare-cta {
        margin-top: 18px;
        padding: 16px 12px;
        border-radius: 18px;
    }
        .bf-compare-cta p {
            font-size: 13px;
        }
    .bf-compare-btn {
        width: 100%;
        font-size: 14px;
    }
}



@media (max-width: 390px) {

    .bf-option {
        grid-template-columns: 76px 22px minmax(0, 1fr);
        gap: 7px;
        padding: 11px 12px;
    }



    .bf-mobile-label {
        font-size: 11px;
    }
}

/* ========================================================= BIOFIE GLOBAL NAVBAR CSS Unique Class Prefix: bf-nav-
       Responsive + Premium UI/UX
 ========================================================= */
/* RESET */
.bf-nav-wrapper *,
.bf-nav-wrapper *::before,
.bf-nav-wrapper *::after {
    box-sizing: border-box;
}
/* =========================
           NAVBAR WRAPPER
        ========================= */
.bf-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    transition: 0.3s ease;
}
/* =========================
           CONTAINER
        ========================= */
.bf-nav-container {
    max-width: 1320px;
    margin: auto;
    padding: 0 24px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
/* =========================
           LOGO
        ========================= */
.bf-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

    .bf-nav-logo img {
        width: auto;
        display: block;
    }

/* =========================
           MENU
        ========================= */

.bf-nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* =========================
           LINKS
        ========================= */

.bf-nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .bf-nav-links li {
        position: relative;
    }

    /* NAV LINKS */

    .bf-nav-links a,
    .bf-dropdown-toggle {
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 18px;
        border: none;
        background: transparent;
        text-decoration: none;
        border-radius: 12px;
        transition: all 0.3s ease;
        cursor: pointer;
        white-space: nowrap;
    }

        /* HOVER */

        .bf-nav-links a:hover,
        .bf-dropdown-toggle:hover {
            background: rgba(79,70,229,0.08);
            color: #4f46e5;
        }

        /* =========================
       DROPDOWN ICON
    ========================= */

        .bf-dropdown-toggle i {
            margin-left: 8px;
            transition: 0.3s ease;
        }

/* =========================
       DROPDOWN MENU
    ========================= */

.bf-dropdown-menu {
    position: absolute;
    top: 58px;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

    .bf-dropdown-menu li {
        width: 100%;
    }

    .bf-dropdown-menu a {
        width: 100%;
        justify-content: flex-start;
        padding: 13px 14px;
        border-radius: 10px;
        font-size: 14px;
        height: auto;
    }

/* DESKTOP DROPDOWN */

.bf-dropdown:hover .bf-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
       RIGHT SIDE
    ========================= */

.bf-nav-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* SIGN IN BUTTON */

.bf-signin-btn {
    height: 46px;
    padding: 0 24px;
    border-radius: 12px;
    background: linear-gradient(135deg,#4f46e5,#7c3aed);
    color: #ffffff !important;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(79,70,229,0.25);
}

    .bf-signin-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(79,70,229,0.30);
    }

/* =========================
       MOBILE TOGGLE
    ========================= */

.bf-menu-toggle {
    width: 46px;
    height: 46px;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(79,70,229,0.08);
    color: #4f46e5;
    font-size: 22px;
    cursor: pointer;
}

/* =========================
       TABLET VIEW & MOBILE VIEW
    ========================= */
@media (max-width:1100px) {
    .bf-nav-wrapper {
        overflow: visible;
    }

    .bf-nav-container {
        height: 95px;
        position: relative;
    }

    .bf-menu-toggle {
        display: flex;
        flex-shrink: 0;
    }
    /* MOBILE MENU */
    .bf-nav-menu {
        display: none;
        position: fixed;
        top: 74px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100vh - 74px);
        overflow-y: auto;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px;
        gap: 18px;
        z-index: 9999;
        border-top: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 12px 30px rgba(0,0,0,0.10);
    }
        /* ACTIVE */
        .bf-nav-menu.bf-active {
            display: flex;
        }
    /* LINKS */
    .bf-nav-links {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

        .bf-nav-links li {
            width: 100%;
        }

        .bf-nav-links a,
        .bf-dropdown-toggle {
            width: 100%;
            height: auto;
            padding: 15px 16px;
            justify-content: space-between;
            font-size: 15px;
        }

    /* MOBILE DROPDOWN */
    .bf-dropdown-menu {
        position: static;
        width: 100%;
        min-width: 100%;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 8px 0 0 10px;
        margin-top: 4px;
        border-radius: 0;
    }

    .bf-dropdown.bf-open .bf-dropdown-menu {
        display: block;
    }

    .bf-dropdown-menu a {
        background: rgba(79,70,229,0.05);
        margin-bottom: 8px;
        border-radius: 10px;
        padding: 13px 14px;
    }

    /* RIGHT SIDE */

    .bf-nav-right {
        width: 100%;
    }

    .bf-signin-btn {
        width: 100%;
        height: 46px;
    }
    /* LOGO */

    .bf-nav-logo img {
        height: 38px;
    }
}
/**/
.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: 'Inter', 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: 'Inter', 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: 'Inter', 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;
                }
}
/*--------------------------END-----------------------------------------------------------------------------------*/
