@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    color: var(--tertiaryColor);
}

:root{
    --primaryColor: #f8fafc;
    --secondaryColor: #003893; /* Nepali flag blue */
    --tertiaryColor: #0f172a;
    --fourthColor: #dc143c; /* Nepali flag red */
    --accentColor: #ffd700; /* Gold accent */
    --textSecondary: #475569;
    --borderColor: #cbd5e1;
    --cardBg: #ffffff;
    --nepaliRed: #dc143c;
    --nepaliBlue: #003893;
    --nepaliWhite: #ffffff;
}

html{
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: var(--primaryColor);
    font-family: 'Inter', sans-serif;
}

/* Navigation Styles - Preserving the unique rotating concept */
.navigation {
    height: 150px;
    width: 150px;
    border-radius: 50%;
    border: 3px solid var(--fourthColor);
    position: fixed;
    top: -75px;
    left:-75px;
    background: linear-gradient(135deg, var(--nepaliBlue), var(--nepaliRed));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9;
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.3);
}

.activee{
    transform: rotate(-0.25turn);
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    box-shadow: 0 15px 40px rgba(0, 56, 147, 0.4);
}

#ham{
    position: absolute;
    top: 64%;
    left : 64%;
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

#ham:hover {
    transform: scale(1.1);
}

#ham a{
    text-decoration: none;
    color: var(--tertiaryColor);
}

#cancle{
    position: absolute;
    top: 64%;
    right : 64%;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.3s ease;
}

#cancle:hover {
    transform: scale(1.1);
}

#navBar{
    position: absolute;
    top: 40%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

#navBar nav {
    padding: 25px;
}

#navBar nav li {
    padding: 25px 0px 5px 0px;
    list-style: none; 
    margin-left: 0px;
    margin-bottom: 20px;
    color: var(--tertiaryColor);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

#navBar nav li a{
    text-decoration: none;
    color: var(--tertiaryColor);
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
}

#navBar nav li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--fourthColor);
    transition: width 0.3s ease;
}

#navBar nav li a:hover::after {
    width: 100%;
}

#navBar nav li + li {
    margin-left: 10px;
}

#navBar nav li + li + li {
    margin-left: 23px;
}

#navBar nav li + li + li +li {
    margin-left: 38px;
}

#navBar nav li a:hover{
    color: var(--fourthColor);
    cursor: pointer;
    transform: translateX(5px);
}

.navOff{
    transform: translate(-400px);
}

#borderBright{
    position: fixed;
    top: 0px;
    height: 100vh;
    width: 100vw;
    border-color: var(--fourthColor);
    z-index: 8;
    pointer-events: none; 
}

.activeBorder{
    border: var(--fourthColor) 3px solid;
}

#mainContent {
    background:
        radial-gradient(circle at 8% 12%, rgba(16, 185, 129, 0.14), transparent 36%),
        radial-gradient(circle at 92% 18%, rgba(239, 68, 68, 0.12), transparent 32%),
        radial-gradient(circle at 55% 78%, rgba(59, 130, 246, 0.12), transparent 34%),
        linear-gradient(145deg, #f8fafc 0%, #eef2f7 50%, #e6edf5 100%);
    max-width: 100vw;
    min-height: 110vh;
    display: flex;
    flex-direction: column;
    transform-origin: top left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-offer-header{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: #0f172a;
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(148,163,184,0.35);
    border-radius: 14px;
    max-width: 840px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    margin: 34px auto 0 auto;
    padding: 12px 16px;
}

.mainRotate{
    transform: rotate(-20deg);
}

#devInfoContainer{
    width: 90vw;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    margin: 60px auto;
    padding: 0 20px;
    gap: 24px;
}

#devInfo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
    width: 100%;
    max-width: none;
}

#devInfo > div{
    margin: 8px 0;
}

#hello{
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--textSecondary);
    margin-bottom: 10px;
}

/* Rotating text styling for home section */
#hello.rotating-text .text-english,
#hello.rotating-text .text-nepali {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--textSecondary);
}

#devInfo > div:nth-child(2){
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
}

/* Removed old styling since we're using .name-container now */

#myName{
    color: var(--fourthColor);
    position: relative;
    display: inline-block;
}

#myName::after{
    content: "";
    width: 0%;
    height: 100%;
    background-color: var(--primaryColor);
    border-left: var(--fourthColor) 3px solid;
    position: absolute;
    animation: typing 4s steps(14) infinite;
}

@keyframes typing{
    0%{
        left: 0%;
        width: 100%;
    }
    50%{
        left: 100%;
        width: 0%;
    }
    100%{
        left: 100%;
        width: 0%;
    }
}

#title{
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 10px;
}

#subtitle{
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--textSecondary);
    margin-bottom: 30px;
}

.hero-trust{
    font-family: 'Inter', sans-serif;
    font-size: 0.98rem;
    color: var(--textSecondary);
    padding: 12px 16px;
    border-left: 4px solid var(--nepaliRed);
    background: rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-bottom: 24px;
}

.offer-structure{
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 26px;
}

.offer-structure-title{
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 12px;
}

.offer-structure-item{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--textSecondary);
    margin: 10px 0;
    padding-left: 18px;
    position: relative;
}

.offer-structure-item::before{
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accentColor);
}

.hero-buttons{
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.primaryButton, .secondaryButton{
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.primaryButton{
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.primaryButton:hover{
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.4);
}

.secondaryButton{
    background: transparent;
    color: #0f172a;
    border: 2px solid var(--nepaliRed);
}

.secondaryButton:hover{
    background: var(--nepaliRed);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 20, 60, 0.3);
}

#heroOfferVisual{
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

.offer-visual-card{
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 24px 50px rgba(0,0,0,0.2);
    width: 100%;
}

.offer-combined-card{
    padding: 0;
    border-color: rgba(15,23,42,0.18);
    background: rgba(255,255,255,0.94);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.14), 0 6px 18px rgba(15, 23, 42, 0.08);
}

.offer-combined-card::after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #059669 0%, #14b8a6 50%, #ef4444 100%);
}

.offer-split-row{
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 295px;
}

@media (min-width: 769px){
    .offer-side{
        text-align: center;
    }

    .offer-pill{
        margin-left: auto;
        margin-right: auto;
    }
}

.offer-side{
    padding: 30px 26px 24px 26px;
}

.my-side{
    background:
        radial-gradient(circle at 10% 18%, rgba(16, 185, 129, 0.16), transparent 36%),
        linear-gradient(145deg, #ecfdf5, #f0fdf4 55%, #effaf6);
    border-right: 1px solid rgba(16, 185, 129, 0.22);
}

.usa-side{
    background:
        radial-gradient(circle at 86% 16%, rgba(239, 68, 68, 0.14), transparent 34%),
        linear-gradient(145deg, #fef2f2, #fff1f2 55%, #fff7f7);
}

.offer-side-title{
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0f172a;
    margin-bottom: 10px;
}

.offer-amount{
    font-family: 'Poppins', sans-serif;
    font-size: 2.55rem;
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-center-divider{
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 84px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 3;
}

.offer-center-divider::before{
    content: '';
    position: absolute;
    top: 18px;
    bottom: 18px;
    left: 50%;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(148,163,184,0.2), rgba(71,85,105,0.6), rgba(148,163,184,0.2));
}

.offer-center-divider span{
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111827;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 2px solid rgba(148, 163, 184, 0.75);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.16);
}

.offer-vs-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    border-radius: 999px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    font-weight: 700;
    color: #241100;
    background: linear-gradient(180deg, #facc15 0%, #f59e0b 100%);
    border: 4px solid #7c2d12;
    box-shadow: 0 10px 24px rgba(0,0,0,0.4);
    letter-spacing: 0.04em;
}

.offer-main-card{
    background: linear-gradient(145deg, #065f46, #0f766e 55%, #155e75);
    border-color: rgba(20, 184, 166, 0.45);
}

.offer-compare-card{
    background: linear-gradient(145deg, #7f1d1d, #991b1b 55%, #b91c1c);
    border-color: rgba(248, 113, 113, 0.45);
}

.offer-pill{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 15px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #065f46;
    background: rgba(236,253,245,1);
    border: 1px solid rgba(16, 185, 129, 0.45);
    box-shadow: 0 5px 14px rgba(6, 95, 70, 0.12);
    margin-bottom: 18px;
}

.flag-icon{
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 8px;
    vertical-align: -2px;
    border: 1px solid rgba(255,255,255,0.25);
}

.nepal-flag{
    width: 16px;
    height: 18px;
    object-fit: contain;
    border-radius: 0;
    border: 0;
    vertical-align: -3px;
}

.usa-flag{
    width: 22px;
    height: 15px;
    object-fit: cover;
}

.offer-pill.muted{
    background: rgba(254,242,242,1);
    color: #7f1d1d;
    border: 1px solid rgba(239, 68, 68, 0.45);
    box-shadow: 0 5px 14px rgba(127, 29, 29, 0.12);
}

.offer-price{
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    line-height: 1;
    font-weight: 700;
    color: #065f46;
}

.offer-price-caption,
.offer-monthly,
.offer-compare-caption{
    font-family: 'Inter', sans-serif;
    color: #334155;
}

.offer-price-caption{
    font-size: 1rem;
    margin-top: 8px;
}

.offer-monthly{
    margin-top: 18px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #0f172a;
}

.offer-side .offer-monthly{
    margin-top: 0;
    margin-bottom: 14px;
}

.offer-includes{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.offer-includes span{
    padding: 9px 12px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #065f46;
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.32);
}

.offer-features{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.offer-features li{
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    padding: 8px 10px 8px 26px;
    border-radius: 999px;
    border: 1px solid rgba(148,163,184,0.3);
    background: rgba(255,255,255,0.84);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
    white-space: nowrap;
}

.offer-features li::before{
    content: '✓';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.78rem;
    font-weight: 700;
}

.my-side .offer-amount{
    color: #065f46;
    font-size: 3.5rem;
    line-height: 0.95;
    text-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.18));
}

.usa-side .offer-amount{
    color: #991b1b;
    text-shadow: 0 8px 24px rgba(239, 68, 68, 0.16);
}

.my-side .offer-monthly{
    color: #065f46;
}

.usa-side .offer-monthly{
    color: #991b1b;
}

.my-side .offer-features li{
    color: #065f46;
    border-color: rgba(16,185,129,0.35);
    background: rgba(236,253,245,0.95);
}

.my-side .offer-features li::before{
    color: #059669;
}

.usa-side .offer-features li{
    color: #991b1b;
    border-color: rgba(239,68,68,0.35);
    background: rgba(254,242,242,0.95);
}

.usa-side .offer-features li::before{
    color: #dc2626;
}

.why-cheap-section{
    width: 90vw;
    max-width: 1200px;
    margin: 8px auto 28px auto;
    padding: 22px 22px 18px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}

#heroOfferVisual .why-cheap-section{
    width: 100%;
    max-width: none;
    margin: 0;
}

.why-cheap-section h2{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    line-height: 1.1;
    margin-bottom: 8px;
    color: #0f172a;
}

.table-note{
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 14px;
}

.price-table-wrap{
    border: 1px solid rgba(148,163,184,0.35);
    border-radius: 14px;
    overflow: auto;
    background: #ffffff;
}

.price-table{
    width: 100%;
    min-width: 0;
    border-collapse: collapse;
    table-layout: fixed;
    font-family: 'Inter', sans-serif;
}

.price-table thead th{
    text-align: left;
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    padding: 12px 14px;
    background: linear-gradient(90deg, #ecfdf5 0%, #fef2f2 100%);
    border-bottom: 1px solid rgba(148,163,184,0.35);
}

.price-table tbody td{
    text-align: left;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1e293b;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(226,232,240,0.95);
}

.price-table thead th + th,
.price-table tbody td + td{
    border-left: 1px solid rgba(148,163,184,0.35);
}

.table-flag{
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: -1px;
    border: 1px solid rgba(148,163,184,0.45);
}

.price-table .table-flag.nepal-flag{
    width: 12px;
    height: 14px;
    object-fit: contain;
    border: 0;
    border-radius: 0;
}

.price-table tbody tr:last-child td{
    border-bottom: 0;
}

.price-table tbody tr td:first-child{
    color: #0f172a;
    font-weight: 700;
    width: 44%;
}

.item-icon{
    margin-right: 6px;
    color: #475569;
    font-size: 0.92em;
}

.item-photo{
    width: 32px;
    height: 32px;
    object-fit: contain;
    margin-right: 10px;
    vertical-align: -9px;
}

.price-table tbody td:nth-child(2){
    color: #15803d;
    font-weight: 700;
}

.price-table tbody td:nth-child(3){
    color: #b91c1c;
    font-weight: 700;
}

.suspicion-tags{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.suspicion-tags span{
    padding: 8px 12px;
    border-radius: 999px;
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    color: #7f1d1d;
    background: #fff1f2;
    border: 1px solid rgba(239,68,68,0.35);
}

.econ-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 14px;
}

.econ-card{
    border: 1px solid rgba(148,163,184,0.3);
    border-radius: 14px;
    background: linear-gradient(160deg, #ffffff, #f8fafc);
    padding: 14px;
}

.econ-card h3{
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.econ-row{
    display: grid;
    grid-template-columns: 1.6fr 2.4fr auto;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.econ-label{
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #334155;
}

.econ-track{
    height: 10px;
    border-radius: 999px;
    background: rgba(148,163,184,0.28);
    overflow: hidden;
}

.econ-bar{
    height: 100%;
    border-radius: 999px;
}

.econ-value{
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
}

.why-line{
    margin-top: 14px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #065f46;
    padding: 10px 12px;
    border-radius: 10px;
    background: #ecfdf5;
    border: 1px solid rgba(16,185,129,0.3);
}

.builder-section{
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding: 22px 22px 20px 22px;
    border-radius: 20px;
    background:
        radial-gradient(circle at 8% 10%, rgba(16,185,129,0.12), transparent 30%),
        radial-gradient(circle at 88% 16%, rgba(59,130,246,0.10), transparent 32%),
        linear-gradient(160deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148,163,184,0.38);
    box-shadow: 0 16px 36px rgba(15,23,42,0.09);
}

.builder-section::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981 0%, #14b8a6 52%, #3b82f6 100%);
}

.builder-section h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.55rem;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 12px;
}

.builder-lead{
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #065f46;
    margin-bottom: 10px;
}

.builder-copy{
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #334155;
    margin-top: 8px;
}

.builder-profile{
    display: grid;
    grid-template-columns: 218px 1fr;
    gap: 18px;
    align-items: center;
    margin-top: 6px;
}

.builder-photo-wrap{
    position: relative;
    width: 203px;
    height: 203px;
    border-radius: 999px;
    padding: 5px;
    background: linear-gradient(135deg, #10b981 0%, #14b8a6 40%, #3b82f6 100%);
    box-shadow: 0 14px 30px rgba(15,23,42,0.18);
}

.builder-photo{
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    border: 3px solid #ffffff;
    display: block;
}

.builder-content{
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.builder-mini-list{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.builder-mini-item{
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.45;
    color: #1f2937;
    padding: 8px 10px;
    border-radius: 10px;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(148,163,184,0.3);
}

.builder-mini-item i{
    color: #0f766e;
    font-size: 0.9rem;
    width: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    text-align: center;
}

.builder-works-panel{
    border-radius: 12px;
    border: 1px solid rgba(16,185,129,0.28);
    background:
        linear-gradient(150deg, rgba(236,253,245,0.9), rgba(240,249,255,0.9));
    padding: 10px 11px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65), 0 8px 18px rgba(15,23,42,0.05);
}

.builder-works-head{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #065f46;
    background: rgba(255,255,255,0.76);
    border: 1px solid rgba(16,185,129,0.28);
    border-radius: 999px;
    padding: 4px 9px;
    margin-bottom: 8px;
}

.builder-works-head i{
    color: #0f766e;
    font-size: 0.76rem;
}

.builder-works-list{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.builder-works-list li{
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #14532d;
    line-height: 1.35;
}

.builder-works-list li i{
    color: #0f766e;
    font-size: 0.83rem;
    width: 14px;
    margin-top: 2px;
    text-align: center;
    flex-shrink: 0;
}

.builder-works-list li.works-line-long{
    font-size: 0.78rem;
    letter-spacing: -0.01em;
}

.work-highlight{
    font-weight: 700;
}

.work-highlight-ssf{
    color: #9a3412;
}

.work-highlight-moh{
    color: #f85b00;
}

.work-highlight-local{
    color: #166534;
}

.builder-works-content{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.builder-works-title{
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1px;
}

.builder-works-line{
    color: #1f2937;
    font-weight: 600;
}

.builder-emphasis{
    display: inline-block;
    color: #0f766e;
    font-weight: 700;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.28);
    border-radius: 6px;
    padding: 1px 6px;
    margin: 1px 2px;
    white-space: nowrap;
}

.builder-point{
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: start;
    background: #ffffff;
    border: 1px solid rgba(148,163,184,0.28);
    border-left: 4px solid #0ea5a4;
    border-radius: 12px;
    padding: 10px 12px 10px 10px;
    box-shadow: 0 8px 18px rgba(15,23,42,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.builder-point:hover{
    transform: translateY(-1px);
    border-color: rgba(20,184,166,0.45);
    box-shadow: 0 12px 24px rgba(15,23,42,0.09);
}

.builder-point-icon{
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(145deg, #ecfeff, #ecfdf5);
    border: 1px solid rgba(20,184,166,0.28);
    color: #0f766e;
    font-size: 0.84rem;
    margin-top: 1px;
}

.builder-point-text{
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #1f2937;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.builder-point-title{
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0f766e;
}

.builder-point-text strong{
    color: #0b4f4a;
    font-weight: 700;
}

.trust-section{
    width: 100%;
    margin: 0;
    padding: 20px 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 92% 14%, rgba(16,185,129,0.12), transparent 34%),
        linear-gradient(160deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148,163,184,0.34);
    box-shadow: 0 14px 30px rgba(15,23,42,0.08);
}

.trust-section h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    color: #0f172a;
    margin-bottom: 12px;
}

.trust-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 10px;
}

.trust-card{
    border-radius: 12px;
    border: 1px solid rgba(148,163,184,0.28);
    background: #ffffff;
    padding: 12px 12px 11px 12px;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.7);
}

.trust-card-pay{
    border-left: 4px solid #0ea5a4;
}

.trust-card-domain{
    border-left: 4px solid #2563eb;
}

.trust-icon{
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: linear-gradient(145deg, #ecfeff, #ecfdf5);
    border: 1px solid rgba(14,165,164,0.26);
    color: #0f766e;
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.trust-title{
    font-family: 'Poppins', sans-serif;
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.25;
}

.trust-text{
    font-family: 'Inter', sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    color: #334155;
    line-height: 1.45;
}

.contact-bottom-section{
    width: 90vw;
    max-width: 1200px;
    margin: 14px auto 36px auto;
    padding: 20px 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 12% 14%, rgba(16,185,129,0.12), transparent 30%),
        linear-gradient(160deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148,163,184,0.34);
    box-shadow: 0 14px 30px rgba(15,23,42,0.08);
    text-align: center;
}

.contact-bottom-section h2{
    font-family: 'Poppins', sans-serif;
    font-size: 1.45rem;
    color: #0f172a;
    margin-bottom: 8px;
}

.contact-bottom-section p{
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #475569;
    font-weight: 600;
    margin-bottom: 14px;
}

.contact-bottom-actions{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-bottom-btn{
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 14px;
    border: 1px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-bottom-btn:hover{
    transform: translateY(-1px);
}

.contact-bottom-btn.whatsapp{
    color: #065f46;
    background: #ecfdf5;
    border-color: rgba(16,185,129,0.35);
    box-shadow: 0 8px 16px rgba(16,185,129,0.16);
}

.contact-bottom-btn.form-link{
    color: #1e3a8a;
    background: #eff6ff;
    border-color: rgba(59,130,246,0.35);
    box-shadow: 0 8px 16px rgba(59,130,246,0.15);
}

.form-subtitle.quick-reply{
    color: #065f46;
    font-weight: 700;
}

.offer-compare-amount{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 10px;
}

.offer-compare-caption{
    font-size: 0.98rem;
}

.offer-list{
    margin: 16px 0 0 0;
    padding: 0;
    list-style: none;
}

.offer-list li{
    position: relative;
    padding-left: 26px;
    margin: 9px 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.92rem;
    line-height: 1.35;
}

.offer-list-good li{
    color: #065f46;
}

.offer-list-bad li{
    color: #991b1b;
}

.offer-list-good li::before,
.offer-list-bad li::before{
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
}

.offer-list-good li::before{
    content: '✓';
    color: #10b981;
}

.offer-list-bad li::before{
    content: '✕';
    color: #ef4444;
}

.offer-bottom-banner{
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #334155;
    background: linear-gradient(90deg, #f8fafc, #f1f5f9);
    padding: 12px 14px;
    border-top: 1px solid rgba(148,163,184,0.24);
}

.pricing-chart{
    margin-top: 18px;
    padding: 16px;
    border: 1px solid rgba(251, 113, 133, 0.35);
    border-radius: 14px;
    background: rgba(127, 29, 29, 0.35);
}

.offer-combined-card .pricing-chart{
    margin: 14px 20px 20px 20px;
}

.pricing-chart-title{
    font-family: 'Poppins', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: #fee2e2;
    margin-bottom: 12px;
}

.chart-row{
    display: grid;
    grid-template-columns: 42px 1fr 68px;
    align-items: center;
    gap: 10px;
    margin: 8px 0;
}

.chart-label,
.chart-value{
    font-family: 'Inter', sans-serif;
    font-size: 0.86rem;
    color: #fecaca;
}

.chart-label{
    font-weight: 700;
    color: #ffffff;
}

.chart-value{
    text-align: right;
    font-weight: 600;
}

.chart-track{
    height: 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.2);
    overflow: hidden;
}

.chart-bar{
    height: 100%;
    border-radius: 999px;
}

.me-bar{
    background: linear-gradient(90deg, #22c55e, #10b981);
}

.usa-bar{
    background: linear-gradient(90deg, #f97316, #ef4444);
}

@keyframes rotate-glow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#aboutMeContainer{
    margin: 40px auto;
    padding: 0 50px 80px 50px;
    max-width: 1200px;
    width: 100%;
}

#aboutMe, #experienceContainer, #skillContainer, #educationContainer{
    margin-bottom: 60px;
}

#aboutMe h1, #experienceContainer h1, #skillContainer h1, #educationContainer h1{
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--tertiaryColor);
    margin-bottom: 30px;
    position: relative;
}

#aboutMe h1::after, #experienceContainer h1::after, #skillContainer h1::after, #educationContainer h1::after{
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    border-radius: 2px;
}

#myInfo{
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--textSecondary);
    margin-bottom: 20px;
    text-align: justify;
}

/* Experience Section */
.experience-item {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.experience-header {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.experience-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 5px;
}

.experience-company {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--nepaliRed);
    font-weight: 500;
    margin-bottom: 5px;
}

.experience-date {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--textSecondary);
    font-weight: 400;
}

.experience-item p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--textSecondary);
}

/* Skills Section - Cards instead of bars */
.skill-category {
    margin-bottom: 40px;
}

.skill-category h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--borderColor);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-card {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
}

.skill-card:hover {
    transform: translateY(-5px);
    border-color: var(--nepaliRed);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.2);
}

.skill-card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skill-icon {
    margin-right: 10px;
    font-size: 1.2em;
    color: var(--nepaliRed);
}

.skill-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--textSecondary);
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
#servicesContainer {
    width: 90vw;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

#servicesContainer h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#servicesContainer h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    margin: 15px auto 0;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
    border-color: var(--nepaliRed);
}

.service-card.featured {
    border: 2px solid var(--nepaliRed);
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.1), rgba(0, 56, 147, 0.1));
}

.service-card.featured::before {
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue), var(--accentColor));
    transform: scaleX(1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tertiaryColor);
}

.service-card p {
    color: var(--textSecondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.feature-tag {
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    color: var(--tertiaryColor);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    color: var(--tertiaryColor);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    font-size: 1rem;
    text-align: center;
    min-width: 180px;
    justify-content: center;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.service-cta:hover::before {
    left: 100%;
}

.service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(220, 20, 60, 0.3);
    color: var(--tertiaryColor);
}

/* Special styling for featured service CTA */
.service-card.featured .service-cta {
    background: linear-gradient(135deg, #ff6b35, #f7931e, #ffd700);
    animation: pulse-glow 2s infinite;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.service-card.featured .service-cta:hover {
    background: linear-gradient(135deg, #ff5722, #ff9800, #ffc107);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.6);
    transform: translateY(-3px) scale(1.05);
}

/* Web Development CTA */
.web-dev-cta {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4) !important;
    border: 2px solid #667eea !important;
}

.web-dev-cta:hover {
    background: linear-gradient(135deg, #5a6fd8, #6a4190) !important;
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.6) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Digital Marketing CTA */
.marketing-cta {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
    box-shadow: 0 5px 15px rgba(240, 147, 251, 0.4) !important;
    border: 2px solid #f093fb !important;
}

.marketing-cta:hover {
    background: linear-gradient(135deg, #e685f0, #e54b5f) !important;
    box-shadow: 0 15px 30px rgba(240, 147, 251, 0.6) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

/* Graphic Design CTA */
.design-cta {
    background: linear-gradient(135deg, #4facfe, #00f2fe) !important;
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.4) !important;
    border: 2px solid #4facfe !important;
}

.design-cta:hover {
    background: linear-gradient(135deg, #3e9bf0, #00e0e0) !important;
    box-shadow: 0 15px 30px rgba(79, 172, 254, 0.6) !important;
    transform: translateY(-3px) scale(1.05) !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
    }
    50% {
        box-shadow: 0 5px 25px rgba(255, 107, 53, 0.8);
    }
}

.cta-icon {
    font-size: 1.1rem;
}

/* Remove skill level styles since we removed them */
.skill-level {
    display: none;
}

.skill-level-text {
    display: none;
}

.skill-dots {
    display: none;
}

.skill-dot {
    display: none;
}

.skill-dot.filled {
    display: none;
}

/* Education Section */
.education-item {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.education-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--tertiaryColor);
    margin-bottom: 10px;
}

.education-institution {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--nepaliRed);
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.education-affiliation {
    color: var(--textSecondary);
    font-size: 0.9rem;
}

.education-date {
    color: var(--nepaliBlue);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 5px;
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: rgba(220, 20, 60, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(220, 20, 60, 0.2);
    min-width: 100px;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--nepaliRed);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--textSecondary);
    font-weight: 500;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-card {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.about-card:hover::before {
    transform: scaleX(1);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(220, 20, 60, 0.2);
    border-color: var(--nepaliRed);
}

.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--tertiaryColor);
}

.about-card p {
    color: var(--textSecondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Timeline */
.timeline {
    position: relative;
    margin-top: 40px;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--nepaliRed), var(--nepaliBlue));
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.design-fsdf{

}

.timeline-marker {
    position: absolute;
    left: -22px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--nepaliRed);
    border: 3px solid var(--primaryColor);
    z-index: 2;
}

.timeline-item.current .timeline-marker {
    background: var(--nepaliBlue);
    box-shadow: 0 0 0 4px rgba(0, 56, 147, 0.2);
}

.timeline-content {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateX(5px);
    border-color: var(--nepaliRed);
    box-shadow: 0 10px 30px rgba(220, 20, 60, 0.1);
}

.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--tertiaryColor);
}

.timeline-company {
    display: block;
    color: var(--nepaliRed);
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.timeline-date {
    display: block;
    color: var(--textSecondary);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--textSecondary);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Education Card */
.education-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--tertiaryColor);
}

.education-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.education-institution {
    color: var(--nepaliRed);
    font-weight: 500;
    font-size: 1rem;
}

.education-affiliation {
    color: var(--textSecondary);
    font-size: 0.9rem;
}

/* Education Grid */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.education-card {
    background: var(--cardBg);
    border: 1px solid var(--borderColor);
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
}

.education-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(220, 20, 60, 0.1);
    border-color: var(--nepaliRed);
}

.education-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    color: var(--nepaliRed);
}

/* Responsive Design */
@media (max-width: 1130px){
    #devInfoContainer{
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    #devInfo{
        order: 2;
        max-width: 100%;
    }

    .name-container {
        font-size: 2.5rem;
    }

    #mainContent{
        margin-left: 0;
    }

    #aboutMeContainer, #servicesContainer{
        margin-left: 0;
    }

    .quick-stats {
        justify-content: center;
        gap: 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .education-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .top-offer-header{
        font-size: 1.45rem;
        line-height: 1.25;
        margin-top: 20px;
        border-radius: 12px;
        max-width: 94vw;
    }

    #devInfoContainer{
        width: 94vw;
        margin: 26px auto 0 auto;
        padding: 0 10px;
        gap: 22px;
    }

    #devInfo > div:nth-child(2){
        font-size: 2rem;
    }

    #title{
        font-size: 1.2rem;
    }

    #subtitle{
        font-size: 1rem;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .primaryButton, .secondaryButton{
        width: 100%;
        text-align: center;
    }

    .hero-buttons{
        flex-direction: column;
    }

    .hero-buttons .primaryButton,
    .hero-buttons .secondaryButton{
        width: 100%;
        text-align: center;
    }

    #heroOfferVisual{
        order: 1;
    }

    .contact-header,
    .contact-container{
        order: 3;
    }

    #aboutMe h1, #experienceContainer h1, #skillContainer h1, #educationContainer h1, #servicesContainer h1{
        font-size: 2rem;
    }

    #myInfo{
        font-size: 0.95rem;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card {
        padding: 25px;
    }

    .quick-stats {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .stat-item {
        width: 100%;
        max-width: 200px;
    }

    .offer-price{
        font-size: 3.1rem;
    }

    .offer-compare-amount{
        font-size: 1.6rem;
    }

    .offer-visual-card{
        padding: 22px;
    }

    .offer-combined-card{
        padding: 0;
    }

    .offer-split-row{
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .offer-side{
        padding: 22px 20px;
    }

    .offer-center-divider{
        position: static;
        transform: none;
        width: auto;
        height: auto;
        margin: -14px auto;
        z-index: 4;
    }

    .offer-center-divider::before{
        display: none;
    }

    .offer-center-divider span{
        width: 42px;
        height: 42px;
        font-size: 0.82rem;
        border-width: 2px;
        box-shadow: 0 4px 10px rgba(15,23,42,0.12);
    }

    .offer-bottom-banner{
        font-size: 0.9rem;
        padding: 10px 10px;
    }

    .about-card {
        padding: 25px;
    }

    .timeline {
        padding-left: 20px;
    }

    .timeline-item {
        padding-left: 30px;
    }

    .timeline-content {
        padding: 20px;
    }
}

@media (max-width: 546px) {
    .top-offer-header{
        font-size: 1.2rem;
        padding: 12px 10px;
        margin-top: 14px;
    }

    #devInfo > div:nth-child(2){
        font-size: 1.8rem;
    }

    .offer-structure{
        padding: 18px;
    }

    .offer-side{
        padding: 18px 14px;
    }

    .offer-amount{
        font-size: 2rem;
    }

    .my-side .offer-amount{
        font-size: 2.9rem;
    }

    .offer-price{
        font-size: 2.45rem;
    }

    .offer-compare-amount{
        font-size: 1.35rem;
    }

    .offer-monthly{
        font-size: 1rem;
    }

    .offer-side-title{
        font-size: 0.95rem;
    }

    .offer-includes{
        gap: 8px;
    }

    .offer-includes span{
        font-size: 0.8rem;
        padding: 7px 9px;
    }

    .offer-features li{
        font-size: 0.75rem;
        padding: 7px 9px 7px 24px;
    }

    .offer-list{
        margin-top: 12px;
    }

    .offer-list li{
        font-size: 0.82rem;
        padding-left: 22px;
        margin: 7px 0;
    }

    .offer-combined-card .pricing-chart{
        margin: 10px 10px 12px 10px;
        padding: 12px;
    }

    .pricing-chart-title{
        font-size: 0.82rem;
    }

    .chart-row{
        grid-template-columns: 36px 1fr 58px;
        gap: 8px;
    }

    .chart-label,
    .chart-value{
        font-size: 0.75rem;
    }

    #aboutMeContainer, #servicesContainer{
        padding: 0 15px;
    }

    .experience-item, .education-item {
        padding: 20px;
    }

    .skill-card {
        padding: 20px;
    }

    .service-card {
        padding: 20px;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .about-card {
        padding: 20px;
    }

    .about-icon {
        font-size: 2.5rem;
    }

    .about-card h3 {
        font-size: 1.2rem;
    }

    .timeline-content {
        padding: 15px;
    }

    .timeline-content h3 {
        font-size: 1.1rem;
    }

    .education-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .education-icon {
        font-size: 2.5rem;
    }

    .education-content h3 {
        font-size: 1.2rem;
    }

    .education-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* Magical Floating Consultation Button */
.floating-consultation-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    animation: pulse 2s ease-in-out infinite;
}

/* Hand Pointer Animation */
.hand-pointer {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    animation: hand-press 2s ease-in-out infinite;
}

.hand-finger {
    font-size: 1.8rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) hue-rotate(200deg) saturate(1.5) brightness(1.2);
    animation: finger-tap 1.5s ease-in-out infinite;
    transform: rotate(45deg);
}

@keyframes hand-press {
    0%, 100% {
        transform: translateX(-50%) translateY(0px) scale(1);
    }
    50% {
        transform: translateX(-50%) translateY(-3px) scale(1.05);
    }
}

@keyframes finger-tap {
    0%, 100% {
        transform: rotate(45deg) scale(1);
    }
    25% {
        transform: rotate(50deg) scale(1.1);
    }
    50% {
        transform: rotate(55deg) scale(0.95);
    }
    75% {
        transform: rotate(50deg) scale(1.05);
    }
}

.magical-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
    color: #000;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 250px;
    min-height: 50px;
    box-shadow: 
        0 0 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.4),
        0 0 90px rgba(255, 215, 0, 0.2);
    animation: glow-pulse 2s ease-in-out infinite;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    line-height: 1.2;
}

.magical-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

.magical-btn:hover {
    transform: scale(1.05);
    box-shadow: 
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 215, 0, 0.6),
        0 0 120px rgba(255, 215, 0, 0.4);
}

.btn-text-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-text-nepali, .btn-text-english {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s ease;
    white-space: nowrap;
    background: linear-gradient(45deg, #dc143c, #003893, #dc143c);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-move 3s ease infinite;
    font-size: 1rem;
    max-width: 220px;
}

.btn-text-nepali {
    opacity: 1;
    animation: text-flicker 4s infinite, gradient-move 3s ease infinite;
}

.btn-text-english {
    opacity: 0;
    animation: text-flicker 4s infinite reverse, gradient-move 3s ease infinite;
}

/* Style the chat icon (💬) in green */
.btn-text-nepali::after, .btn-text-english::after {
    content: '💬';
    color: #25d366;
    -webkit-text-fill-color: #25d366;
    text-fill-color: #25d366;
    margin-left: 5px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 2px rgba(37, 211, 102, 0.5));
}

/* Style the gift icon (🎁) with colorful effect */
.btn-text-nepali::before, .btn-text-english::before {
    content: '🎁';
    color: #ff6b35;
    -webkit-text-fill-color: #ff6b35;
    text-fill-color: #ff6b35;
    margin-right: 5px;
    font-size: 1.1rem;
    filter: drop-shadow(0 0 2px rgba(255, 107, 53, 0.5));
    animation: gift-bounce 2s ease-in-out infinite;
}

@keyframes gift-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(255, 215, 0, 0.6),
            0 0 60px rgba(255, 215, 0, 0.4),
            0 0 90px rgba(255, 215, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 50px rgba(255, 215, 0, 0.8),
            0 0 100px rgba(255, 215, 0, 0.6),
            0 0 150px rgba(255, 215, 0, 0.4);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes text-flicker {
    0%, 45% {
        opacity: 1;
    }
    50%, 95% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes gradient-move {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive styles for floating button */
@media (max-width: 768px) {
    .floating-consultation-btn {
        top: 10px;
        right: 10px;
    }
    
    .hand-pointer {
        bottom: -20px;
    }
    
    .hand-finger {
        font-size: 1.5rem;
    }
    
    .touch-effect {
        width: 16px;
        height: 16px;
    }
    
    .magical-btn {
        padding: 12px 20px;
        font-size: 1rem;
        min-width: 220px;
        min-height: 45px;
    }
    
    .btn-text-container {
        min-width: 180px;
    }
    
    .btn-text-nepali, .btn-text-english {
        font-size: 0.9rem;
        max-width: 200px;
    }
    
    .btn-text-nepali::before, .btn-text-english::before,
    .btn-text-nepali::after, .btn-text-english::after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .floating-consultation-btn {
        top: 5px;
        right: 5px;
    }
    
    .hand-pointer {
        bottom: -18px;
    }
    
    .hand-finger {
        font-size: 1.2rem;
    }
    
    .touch-effect {
        width: 14px;
        height: 14px;
    }
    
    .magical-btn {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: 200px;
        min-height: 40px;
    }
    
    .btn-text-container {
        min-width: 160px;
    }
    
    .btn-text-nepali, .btn-text-english {
        font-size: 0.8rem;
        max-width: 180px;
    }
    
    .btn-text-nepali::before, .btn-text-english::before,
    .btn-text-nepali::after, .btn-text-english::after {
        font-size: 0.9rem;
    }
}

/* Touch Effect Animation */
.touch-effect {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
    z-index: 1000;
    animation: touch-wave 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes touch-wave {
    0% {
        transform: translateX(-50%) scale(0);
        opacity: 1;
    }
    50% {
        transform: translateX(-50%) scale(2);
        opacity: 0.7;
    }
    100% {
        transform: translateX(-50%) scale(4);
        opacity: 0;
    }
}

/* Synchronize touch effect with finger animation */
.touch-effect {
    animation-delay: 0.5s;
}

/* Text Rotation Animation for Services and About Me sections */
.rotating-text {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.rotating-text .text-english,
.rotating-text .text-nepali {
    display: block;
    animation: textRotate 6s infinite;
    transform-origin: center;
}

.rotating-text .text-nepali {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    animation-delay: 3s;
}

@keyframes textRotate {
    0%, 45% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    50%, 95% {
        opacity: 0;
        transform: translateY(-20px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Specific styling for different text types */
h1.rotating-text .text-english,
h1.rotating-text .text-nepali {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--nepaliBlue), var(--nepaliRed));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3.rotating-text .text-english,
h3.rotating-text .text-nepali {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--tertiaryColor);
}

.service-cta .rotating-text .text-english,
.service-cta .rotating-text .text-nepali {
    font-size: 1rem;
    font-weight: 500;
    color: var(--tertiaryColor);
}

/* Responsive adjustments for rotating text */
@media (max-width: 768px) {
    h1.rotating-text .text-english,
    h1.rotating-text .text-nepali {
        font-size: 2rem;
    }
    
    h3.rotating-text .text-english,
    h3.rotating-text .text-nepali {
        font-size: 1.25rem;
    }
    
    .service-cta .rotating-text .text-english,
    .service-cta .rotating-text .text-nepali {
        font-size: 0.9rem;
    }
    
    /* Home section rotating text responsive */
    #hello.rotating-text .text-english,
    #hello.rotating-text .text-nepali {
        font-size: 1.3rem;
    }
    
    #devInfo > div:nth-child(2){
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    h1.rotating-text .text-english,
    h1.rotating-text .text-nepali {
        font-size: 1.75rem;
    }
    
    h3.rotating-text .text-english,
    h3.rotating-text .text-nepali {
        font-size: 1.1rem;
    }
    
    .service-cta .rotating-text .text-english,
    .service-cta .rotating-text .text-nepali {
        font-size: 0.85rem;
    }
    
    /* Home section rotating text responsive */
    #hello.rotating-text .text-english,
    #hello.rotating-text .text-nepali {
        font-size: 1.1rem;
    }
    
    #devInfo > div:nth-child(2){
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .why-cheap-section{
        width: 94vw;
        padding: 18px 14px 14px 14px;
        margin-top: 0;
    }

    #heroOfferVisual .why-cheap-section{
        width: 100%;
    }

    .why-cheap-section h2{
        font-size: 1.55rem;
    }

    .builder-section{
        padding: 16px 14px;
    }

    .builder-section h2{
        font-size: 1.3rem;
    }

    .builder-profile{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .builder-photo-wrap{
        width: 159px;
        height: 159px;
        margin: 0 auto;
    }

    .builder-content{
        gap: 8px;
    }

    .builder-lead{
        font-size: 1rem;
        text-align: center;
    }

    .builder-copy{
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .builder-point{
        font-size: 0.86rem;
        grid-template-columns: 32px 1fr;
        padding: 9px 10px;
    }

    .trust-section{
        padding: 16px 14px;
    }

    .trust-section h2{
        font-size: 1.25rem;
        margin-bottom: 10px;
    }

    .trust-grid{
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trust-card{
        padding: 10px 10px 9px 10px;
    }

    .trust-title{
        font-size: 0.88rem;
    }

    .trust-text{
        font-size: 0.8rem;
    }

    .contact-bottom-section{
        width: 94vw;
        padding: 16px 14px;
        margin-bottom: 26px;
    }

    .contact-bottom-section h2{
        font-size: 1.25rem;
    }

    .contact-bottom-section p{
        font-size: 0.82rem;
        margin-bottom: 12px;
    }

    .contact-bottom-btn{
        font-size: 0.82rem;
        padding: 9px 12px;
    }

    .builder-mini-item{
        font-size: 0.84rem;
        padding: 7px 9px;
    }

    .builder-works-panel{
        padding: 9px 9px;
    }

    .builder-works-list li{
        font-size: 0.82rem;
    }

    .builder-point-icon{
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .price-table{
        min-width: 0;
    }

    .econ-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 546px) {
    .table-note{
        font-size: 0.78rem;
    }

    .price-table{
        min-width: 0;
    }

    .price-table thead th,
    .price-table tbody td{
        font-size: 0.8rem;
        padding: 10px 10px;
    }

    .suspicion-tags span{
        font-size: 0.76rem;
        padding: 7px 9px;
    }

    .econ-row{
        grid-template-columns: 1fr;
        gap: 6px;
        margin: 10px 0 12px 0;
    }

    .econ-label{
        font-size: 0.78rem;
    }

    .econ-value{
        font-size: 0.78rem;
    }

    .why-line{
        font-size: 0.86rem;
    }

    .builder-section{
        padding: 14px 12px;
        border-radius: 14px;
    }

    .trust-section{
        padding: 13px 12px;
        border-radius: 14px;
    }

    .trust-section h2{
        font-size: 1.05rem;
    }

    .trust-icon{
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
        margin-bottom: 6px;
    }

    .trust-title{
        font-size: 0.8rem;
        margin-bottom: 3px;
    }

    .trust-text{
        font-size: 0.74rem;
        line-height: 1.4;
    }

    .contact-bottom-section{
        padding: 13px 12px;
        border-radius: 14px;
        margin-bottom: 22px;
    }

    .contact-bottom-section h2{
        font-size: 1.05rem;
    }

    .contact-bottom-section p{
        font-size: 0.74rem;
    }

    .contact-bottom-actions{
        gap: 7px;
    }

    .contact-bottom-btn{
        width: 100%;
        justify-content: center;
        font-size: 0.76rem;
        padding: 8px 10px;
    }

    .builder-section h2{
        font-size: 1.1rem;
    }

    .builder-photo-wrap{
        width: 140px;
        height: 140px;
    }

    .builder-point{
        font-size: 0.8rem;
        line-height: 1.4;
        grid-template-columns: 28px 1fr;
    }

    .builder-mini-item{
        font-size: 0.78rem;
        line-height: 1.35;
        padding: 7px 8px;
    }

    .builder-works-head{
        font-size: 0.72rem;
        padding: 4px 8px;
    }

    .builder-works-list{
        gap: 5px;
    }

    .builder-works-list li{
        font-size: 0.77rem;
        line-height: 1.35;
        gap: 6px;
    }

    .builder-point-icon{
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}
