*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: "Manrope", sans-serif;
}

body{
    background: #ebf5ff;
    padding-top: 90px;   /* matches default fixed header height (90px) */
}

.header {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* Fixed height */
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header .logo-img {
    height: 40px;
    display: block;
    position: relative;
    z-index: 1001;
}

.header h1 {
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0;
    pointer-events: none;
    color: rgb(27, 58, 99)
}

.container{
    width:100%;
    max-width:1350px;
    margin:auto;
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
}
.section-container{
    width:100%;
    max-width:1510px;
    margin:40px auto;
    padding:0 20px;
}
.container h1{
    font-size:42px;
    color:#1b3a63;
}

.wordsContainer{
    background:#dee3e9;
    border:2px solid #8db3d3;
    padding:35px;
    text-align: center;
}

.wordsContainer label{
    font-weight: bold;
    color:#1b5d9b;
    font-size:20px;
}

.input-group{
    display:flex;
    gap:15px;
    justify-content: center;
    align-items:center;
    flex-wrap:wrap;
}

.input-group input{
    width:250px;
    max-width:100%;
    height:30px;
    padding:10px;
    font-size:15px;
    border:1px solid #999;
}

.input-group button{
    background:#0d6efd;
    color:#fff;
    height: 30px;
    border:none;
    padding:0 25px;
    border-radius:5px;
    font-size:15px;
    cursor:pointer;
}

#reset{
    background:#f44336;
    color:#fff;
    height: 30px;
    border:none;
    padding:0 25px;
    border-radius:5px;
    font-size:15px;
    cursor:pointer;
}

.input-group button:hover{
    background:#0b5ed7;
}

.note{
    margin-top:20px;
    color:#a40000;
    font-size:18px;
}

.Result-format{
    width:100%;
    margin-top:20px;
    background:#b8ddea;
    border:2px solid #4aa8e8;
    padding:12px;
}

.Result-header{
    display: flex;
    gap: 20px;
    padding: 10px 25px;
    flex-wrap:wrap;
}

.Result-header label {
    margin: 0;
    flex: 1;
    font-size: 20px;
    color:#1b5d9b;
    min-width:200px;
    font-weight:bold;
}
.Result-header input{
    width: 300px;
    max-width:100%;
    height: 30px;
    padding: 0 10px;
    font-size: 16px;
}

.Result-header button {
    background:#0d6efd;
    color:#fff;
    height: 30px;
    border:none;
    padding:0 25px;
    border-radius:5px;
    font-size:15px;
    cursor:pointer;
}
.Rupees{
    display:flex;
    gap:5px;
    font-size:25px;
    align-items:center;
}

.Result-body textarea{
    width:100%;
    height:120px;
    resize:none;
    padding:15px;
    font-size:18px;
    border:1px solid #666;
    background:#fff;
    margin-bottom:15px;
}

/* Change Case Section */
.buttons{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.buttons h2{
    color:#1b5d9b;
    font-size:18px;
    margin:0;
    white-space:nowrap;
}

.buttons button{
    background:#0d6efd;
    color:#fff;
    height:35px;
    border:none;
    padding:0 18px;
    border-radius:5px;
    font-size:15px;
    cursor:pointer;
}

.buttons button:hover{
    background:#0b5ed7;
}
.converter{
    width:calc(100% - 40px);
    max-width:1100px;
    margin:30px auto;
    padding:20px;
    background:#cfefff;
    border:1px solid #4d9de0;
}

/* ==========================================
Responsive Design — Header / Hero
========================================== */

/* Large Tablets / Small Laptops */
@media (max-width: 1200px) {

    body{
        padding-top:100px;
    }

    .header {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100px;
        padding: 10px 20px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: #fff;
    }

    .header .logo-img {
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 120px;
        height: auto;
    }

    .header h1 {
        margin: 0;
        text-align: center;
    }

    .input-group button{
        font-size: 14px;
    }
}


/* Tablets */
@media (max-width: 992px) {

    body{
        padding-top:130px;
    }

    .container {
        width: 100%;
        max-width: 100%;
    }

    .header{
        position:fixed;
        min-height:130px;
        height:auto;
        padding:15px;
        display:flex;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        gap:10px;
    }

    .header .logo-img{
        position:static;
        transform:none;
        width:120px;
        height:auto;
        max-height:45px;
    }

    .header h1{
        position:static;
        text-align:center;
        font-size:26px;
    }

    .container h1 {
        font-size: 34px;
        text-align: center;
    }

    .input-group input,
    #reset {
        width: 100%;
        min-height: 42px;
    }
     .input-group button,
    #reset {
        width: 40%;
        min-height: 42px;
    }
   

    .Result-header {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .Result-header h2 {
        width: 100%;
    }

    .Result-header input {
        flex: 1;
        min-width: 0;
    }

    .Result-header button {
        white-space: nowrap;
    }
}


/* Small Tablets */
@media (max-width: 768px) {

    body{
        padding-top:110px;
    }

    .container h1 {
        font-size: 30px;
    }
    .header{
        min-height:110px;
    }
    .header .logo-img{
        width:100px;
        max-height:38px;
    }

    .header h1{
        font-size:20px;
        line-height:1.3;
    }
    .input-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    
    .input-group input {
        width: 100%;
    }
   
    .actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .actions button {
        flex: 1;
        min-width: 120px;
        margin: 0;
    }

    .row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .field {
        width: 100%;
    }

    .field select,
    .field input {
        width: 100%;
        box-sizing: border-box;
    }

    .buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }

    .buttons div:last-child {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .buttons button {
        flex: 1 1 calc(50% - 10px);
    }

    .Result-header {
        flex-direction: column;
        align-items: stretch;
    }

    .Result-header input,
    .Result-header button {
        width: 100%;
    }

    .Rupees {
        width: 100%;
        display: flex;
    }

    .Rupees input {
        flex: 1;
    }
}


/* Mobile */
@media (max-width: 480px) {

    body {
        padding-top: 100px;
    }

    .header{
        min-height:100px;
    }

    .header .logo-img{
        width:90px;
        max-height:34px;
    }

    .container h1 {
        font-size: 24px;
    }

    .header h1 {
        font-size: 15px;
    }

    .wordsContainer {
        padding: 20px 15px;
    }

    .wordsContainer h2,
    .Result-header h2,
    .header h2 {
        font-size: 18px;
    }

    .note {
        font-size: 14px;
        line-height: 1.5;
    }

    .Result-body textarea {
        height: 150px;
        font-size: 16px;
    }

    .actions,
    .buttons div:last-child {
        flex-direction: column;
    }

    .actions button,
    .buttons button {
        width: 100%;
    }

    .field select,
    .field input {
        font-size: 15px;
    }
    .input-group button,#reset{
        width:100%;

    }

    .label {
        width: 70px;
        font-size: 18px;
    }

    .faq-title {
        font-size: 26px;
    }

    .faq-question {
        padding: 18px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 18px;
    }
}

/* ================================
How It Works — base
(cards always stay in ONE row at
every screen size: flex-wrap is
always "nowrap" and .step-card
uses flex:1 1 0 so it can shrink
in width without ever stacking
into columns. min-height is fixed
and never changed by any media
query, so all cards keep the same
height at every dimension.)
================================ */

.how-it-works{
    width:100%;
    margin:0;
    padding:20px;
    padding-bottom: 20px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.how-container{
    max-width:1600px;
    width:100%;
    margin:auto;
}
.how-box{
    padding:10px;
}

.how-title{
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:12px;
    color:#1a1a1a;
    letter-spacing:-0.5px;
    line-height:1.2;
}

.how-title span{
    color:#1ec98d;
}

.how-subtitle{
    text-align:center;
    color:#777;
    font-size:18px;
    font-weight:400;
    margin-bottom:45px;
}

.steps{
    display:flex;
    align-items:stretch;
    justify-content:center;
    flex-wrap:nowrap;   /* NEVER stacks into columns, at any width */
    width:100%;
}

.step-group{
    display:contents;
}

.step-card{
    flex:1 1 0;          /* grow/shrink equally with siblings */
    min-width:0;         /* required so flex items can shrink below content size */
    max-width:330px;
    min-height:260px;    /* FIXED — identical at every breakpoint */
    padding:20px 22px;
    background:#fff;
    border-radius:18px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition: all 0.3s ease;
}

.step-card:hover{
    transform: translateY(-8px);
    background: linear-gradient(135deg, #dceaff 0%, #ffffff 45%, #fbe4f0 100%);
    border: 2px solid #779ced;
    box-shadow: 0 12px 30px rgba(49, 87, 230, .18);
}

.step-number{
    width:60px;
    height:60px;
    background:linear-gradient(135deg, #6d8dfb 0%, #2f4fd8 100%);
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:0 auto 20px;
    font-size:24px;
    font-weight:bold;
    border:0.5px solid #fff;
    box-shadow: 0 0 30px 4px rgba(80,110,240,.45);
}

.step-card h3{
    font-size:18px;
    margin-bottom:15px;
    color:#222;
}

.step-card p{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

.arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;      /* arrows never shrink below their icon size */
    color:#8fa9f5;
    transition: transform 0.3s ease, color 0.3s ease;
}
.arrow svg{
    width:32px;
    height:30px;
}

/* When a card is hovered, only its immediately-following arrow
translates up. Using the adjacent-sibling combinator instead of
".step-group:hover" because .step-group is now display:contents
and no longer a real box that can register :hover. */
.step-card:hover + .arrow{
    transform: translateY(-8px);
    color:#5b7ff0;
}

/* ================================
1400px and below
================================ */
@media (max-width: 1400px) {

    .how-it-works{
        padding:20px 15px;
    }

    .steps{
        gap:14px;
        padding:20px 10px;
    }

    .step-card{
        max-width:280px;
        padding:18px 16px;
    }

    .step-number{
        width:55px;
        height:55px;
        font-size:22px;
        margin-bottom:18px;
    }

    .step-card h3{
        font-size:17px;
        line-height:1.3;
        margin-bottom:10px;
    }

    .step-card p{
        font-size:13px;
        line-height:1.6;
    }

    .arrow svg{
        width:26px;
        height:24px;
    }
}

/* ================================
985px and below — cards stack
into a single column. Arrows
rotate 90deg to point downward
between stacked cards, and on
hover the arrow now translates
sideways-up along its rotated
axis (still reads as "up" against
the arrow's own orientation).
================================ */
@media (max-width: 985px) {
    .how-it-works {
        padding: 25px 12px;
    }

    .how-title {
        font-size: 32px;
    }

    .how-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .steps{
        flex-direction: column;
        flex-wrap: wrap;
        gap: 6px;
    }

    .step-group{
        display:flex;        /* re-enabled here — stacked layout needs
                                a real box to group each card with its
                                arrow vertically */
        flex-direction: column;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .step-card {
        width: 100%;
        max-width: 100%;
        min-height: 220px;
        padding: 20px 18px;
    }

    .step-number{
        width:50px;
        height:50px;
        font-size:20px;
        margin-bottom:14px;
    }

    .step-card h3 {
        font-size: 17px;
        margin-bottom:10px;
        line-height:1.3;
    }

    .step-card p {
        font-size: 13px;
        line-height:1.6;
    }

    .arrow{
        transform: rotate(90deg);
        margin: 4px 0;
    }

    .arrow svg{
        width:26px;
        height:24px;
    }

    /* Hovering a stacked card should still translate its arrow
    "up" — since the arrow is rotated 90deg, a visual upward
    nudge is a negative translateX before rotation is applied,
    so we counter-rotate the translation. */
    .step-card:hover + .arrow{
        transform: rotate(90deg) translateY(-8px);
    }
}

/* ================================
Small phones (480px and below)
— still stacked (inherits 985px
rules), just tightened spacing.
================================ */
@media (max-width: 480px) {
    .how-it-works {
        padding: 18px 8px;
    }

    .how-title {
        font-size: 24px;
    }

    .how-subtitle {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .step-group{
        max-width: 100%;
    }

    .step-card {
        min-height: 190px;
        padding: 16px 14px;
    }

    .step-number{
        width:42px;
        height:42px;
        font-size:16px;
        margin-bottom:10px;
    }

    .step-card h3 {
        font-size: 15px;
    }

    .step-card p {
        font-size: 12px;
        line-height:1.5;
    }

    .arrow svg{
        width:22px;
        height:20px;
    }
}

/* ================================
CTA Banner
================================ */
.cta-banner {
    width: calc(100% - 130px);
    margin: 40px auto 40px;
    min-height: 280px;
    border-radius: 20px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    border: 0.5px solid transparent;
    background:
        linear-gradient(120deg, #a7e8dc 0%, #dce7f0 35%, #eae1f0 65%, #f6dfe9 100%) padding-box,
        linear-gradient(to right,grey) border-box;
}

.cta-content{
    max-width:900px;
    padding-left:20px;
    z-index:1;
}

.cta-content h2{
    font-size:34px;
    font-weight:700;
    color:#1b1b2a;
    margin-bottom:18px;
}

.cta-content p{
    font-size:18px;
    font-weight: 700;
    line-height:1.8;
    color:#4a4a5a;
    margin-bottom:30px;
}
.cta-btn{
    display:inline-block;
    background:linear-gradient(90deg,#12c2a0,#1b3a63);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    padding:14px 30px;
    border-radius:8px;
    box-shadow:0 6px 16px rgba(18,194,160,.35);
    transition:transform .25s ease, box-shadow .25s ease;
}

.cta-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 22px rgba(18,194,160,.45);
}

.cta-illustration {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cta-illustration img {
    width: 300px;
    height: auto;
    object-fit: contain;
    padding-right: 100px;
}

/* ==========================================
Responsive Design — CTA
========================================== */
@media (max-width:1200px){
    .cta-banner{
        width:95%;
        margin-top:35px;
    }

    .cta-content p{
        font-size:16px;
        line-height:1.3;
        color:#4a4a5a;
        margin-bottom:30px;
    }
}

@media (max-width:992px){

.cta-banner{
    width:80%;
    height:70%;
    flex-direction:column-reverse;
    align-items:flex-start;   /* <-- change from center */
    padding:40px 30px;
    gap:30px;
}

.cta-content{
    width:100%;
    max-width:100%;
    padding-left:0;
    text-align:left;
}
.cta-content p{
    line-height:1.8;
}

.cta-illustration{
    width:100%;
    display:flex;
    justify-content:center;
}

.cta-illustration img{
    width:250px;
    padding-right:0;
}
}

@media (max-width:480px){
    .cta-banner{
        margin-top:25px;
    }

    .cta-content h2{
        font-size:26px;
    }

    .cta-content p{
        font-size:15px;
    }

    .cta-btn{
        width:100%;
        text-align:center;
        padding:14px 0;
    }

    .cta-illustration{
        width:220px;
    }

    .cta-illustration img{
        width:100%;
        max-width:220px;
    }
}
/* ==========================================
Related Tools
========================================== */
.tools-card {
    width:100%;
    margin:0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 32px;
    min-height: 740px;
}

.tools-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    justify-content: center;
}

.tool-link {
    text-decoration: none;
    display: block;
}

.tool-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    width: 100%;
    height: 225px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;

    border: 1px solid #aeb9c4;
    transition: border 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
    border: 2px solid #75f2f85c;
    transform: translateY(-5px);
    box-shadow: 0 6px 16px #75f2f85c;
}

.tool-icon-wrap {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-icon-wrap img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.tool-name {
    margin-top: 16px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.tool-desc {
    margin-top: 10px;
    font-size: 14px;
    text-align: center;
    width: 100%;
    color: #444;
}

.show-more-wrap {
    text-align: center;
}

.show-more-btn {
    margin-top: 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    padding: 14px 24px;
    background-color: #1677ff;
    color: #fff;
    border: none;
    cursor: pointer;
}

.show-more-btn:hover {
    background-color: #0f62d6;
}

@media (max-width: 1200px) {
    .tools-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 992px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
    .tools-card { padding: 24px; min-height: auto; }
}
@media (max-width: 480px) {
    .tools-grid { grid-template-columns: 1fr; }
    .tool-card { height: 260px; }
    .tools-card { padding: 16px; }
}
/* ==========================================
Other Services
========================================== */
.services-card {
    width:100%;
    margin:0;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-height: 470px;
    padding: 40px 54px;
}

.services-title {
    margin-bottom: 25px;
    font-family: "Manrope", sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #000;
}

.services-title span {
    color: #21d496;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    text-align: left;
}

.service-card {
    width: 100%;
    height: 80px;
    padding: 14px;
    border: 1px solid #c9e8ff;
    box-shadow: 0 0 25.7px #d8efffa1 inset;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    background: #fff;
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.service-card:hover {
    background-color: #fff;
    border: 2px solid #e8f4f8;
    transform: translateY(-10px);
    box-shadow: 0 10px 25.7px #d8efffa1;
}

.service-card:hover .service-link {
    color: #ff0000 !important;
}

.service-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.service-text h2 {
    line-height: 1.2;
    font-family: "Manrope", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #526577;
    margin: 0 0 4px 0;
}

.service-link {
    font-weight: 500;
    color: #526577;
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.service-icon {
    width: 40px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

@media (max-width: 992px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); justify-content: center; }
    .services-card { width: 92%; margin-left: auto; margin-right: auto; padding: 30px 22px; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-card { width: 94%; padding: 24px 16px; }
}

/* ==========================================
FAQ Section
========================================== */
.faq-section{
    width:100%;
    margin:0;
    background:#ffffff;
    border-radius:16px;
    box-shadow:0 4px 20px rgba(0,0,0,0.06);
    padding:40px 45px;
}

.faq-title{
    padding-top: 0;
    color:#1b1b1b;
    font-size:34px;
    font-weight:700;
    margin-bottom:25px;
    text-align:center;
}

.faq-highlight{
    color:rgb(33, 212, 150);
}

.faq-list{
    display:flex;
    flex-direction:column;
    padding: 0;
}

.faq-item{
    border-bottom:1px solid #ececec;
}

.faq-item:first-child{
    border-top:none;
}

.faq-question{
    width:100%;
    background:none;
    border:none;
    padding:20px 6px;
    font-size:18px;
    font-weight:700;
    color:black;
    text-align:left;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}
.faq-icon{
    width:18px;
    height:20px;
    flex-shrink:0;
    fill:none;
    stroke:#555;
    stroke-width:2;
    stroke-linecap:round;
    stroke-linejoin:round;
    transition:transform 0.25s ease;
}

.faq-item.active .faq-icon{
    transform:rotate(180deg);
    stroke:#1b3a63;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    padding:0 6px;
    transition:max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer{
    max-height:500px;
    padding:0 6px 20px;
}

.faq-answer p{
    font-size:18px;
    font-weight:700;
    line-height:1.7;
    color:#555;
    margin-bottom:8px;
}

.faq-answer ul{
    margin:8px 0 8px 20px;
    color:#555;
}

.faq-answer li{
    font-size:18px;
    font-weight:700;
    line-height:1.7;
    margin-bottom:4px;
    color:#555;
}

@media (max-width:768px){
    .faq-section{
        padding:30px 25px;
    }
}

@media (max-width:480px){
    .faq-section{
        width:100%;
        padding:25px 20px;
        border-radius:12px;
    }
    .faq-title{
        font-size:24px;
    }
    .faq-question{
        font-size:15px;
        padding:14px 4px;
    }
    .faq-answer p{
        font-size:15px;
    }
    .faq-answer ul{
        font-size:15px;
    }
    .faq-answer li{
        font-size:15px;
    }
}
/* ==========================================
Floating Action Button
========================================== */
.fab-backdrop{
    position:fixed;
    inset:0;
    background:rgba(10,20,35,0);
    backdrop-filter:blur(0);
    pointer-events:none;
    transition:.35s;
    z-index:1000;
}

body.fab-open .fab-backdrop{
    background:rgba(10,20,35,.35);
    backdrop-filter:blur(6px);
    pointer-events:auto;
}

.fab-wrap{
    position:fixed;
    right:22px;
    bottom:110px;   /* moved up — share button now sits above the enquiry button */
    display:flex;
    flex-direction:column;
    align-items:center;
    z-index:1001;
}

.fab-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    margin-bottom:14px;
    box-shadow:0 4px 12px rgba(0,0,0,.2);

    opacity:0;
    pointer-events:none;
    transform:translateY(20px) scale(.8);

    transition:
        opacity .4s cubic-bezier(.175,.885,.32,1.275),
        transform .4s cubic-bezier(.175,.885,.32,1.275);
}

.fab-icon i{
    font-size:28px;
    color:#fff;
}

body.fab-open .fab-icon{
    opacity:1;
    transform:translateY(0) scale(1);
    pointer-events:auto;
}

body.fab-open .fab-icon:nth-of-type(3){transition-delay:0s;}
body.fab-open .fab-icon:nth-of-type(2){transition-delay:.07s;}
body.fab-open .fab-icon:nth-of-type(1){transition-delay:.14s;}

.instagram{
    background:linear-gradient(25deg,#FEDA75,#FA7E1E,#D62976,#962FBF,#4F5BD5);
}

.linkedin{
    background:#0A66C2;
}

.facebook{
    background:#1877F2;
}
.fab-icon.x{
    background:#000;
}

.fab-icon.x i{
    color: white !important;
    font-size: 28px;
}

.fab-main{
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;

    background:linear-gradient(82.77deg,#0d61b4 -71.55%,#054a91 158.62%);
    box-shadow:0 8px 24px rgba(13,97,180,.4);

    transition:all .6s ease;
}

.fab-main svg{
    width:30px;
    height:30px;
    transition:transform .6s cubic-bezier(.4,0,.2,1);
    transform-origin:center;
}

body.fab-open .fab-main{
    background:linear-gradient(135deg,#ff6b6b,#ee5a6f,#f06595);
    box-shadow:0 8px 24px rgba(255,107,107,.4);
}

body.fab-open .fab-main svg{
    transform:rotate(45deg);
}


.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    clip-path: inset(50%);
    white-space: nowrap;
    border: 0;
}
/* .seo-hidden {
left: -9999px;
top: auto;
width: 1px;
height: 1px;
overflow: hidden;
white-space: nowrap;
position: absolute;
} */

/* ==========================================
Floating Enquiry Button
========================================== */
.enquiry-fab{
    position:fixed;
    right:22px;
    bottom:30px;    /* sits below the share fab-wrap (bottom:110px) */
    width:60px;
    height:60px;
    border-radius:50%;
    background:linear-gradient(82.77deg,#0d61b4 -71.55%,#054a91 158.62%);
    box-shadow:0 8px 24px rgba(13,97,180,.4);
    display:flex;
    justify-content:center;
    align-items:center;
    cursor:pointer;
    z-index:1002;
    transition:.3s ease;
}
.enquiry-fab:hover{
    transform:scale(1.08);
}
.enquiry-fab i{
    color:#fff;
    font-size:26px;
}

/* ==========================================
Enquiry Overlay + Popup — matches antd support-card
========================================== */
/* Overlay */

.enquiry-overlay{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(3px);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:9999;
}

.enquiry-overlay.active{
    opacity:1;
    visibility:visible;
}

/* Popup */

.enquiry-popup{

    width:500px;
    max-width:95%;
    height:90vh;

    background:#fff;
    border-radius:22px;

    display:flex;
    flex-direction:column;

    overflow:hidden;

    box-shadow:0 18px 50px rgba(0,0,0,.22);

}

/* Header */

.popup-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 30px;

    border-bottom:1px solid #ededed;

    flex-shrink:0;

}

.support-title{

    margin:0;

    font-size:20px;

    font-weight:700;

    font-family:"Manrope",sans-serif;

    color:#24324a;

}

.close-popup{

    border:none;
    background:none;

    font-size:34px;

    color:#7c8aa5;

    cursor:pointer;

    line-height:1;

}

/* Form */

.enquiry-form{

    display:flex;

    flex-direction:column;

    flex:1;

    overflow:hidden;

}

.support desc p{
    font-size:10px;
}

.scroll-fields{
    flex:1;
    overflow-y:auto;
    padding:10px 20px;

}

.scroll-fields::-webkit-scrollbar{

    width:8px;

}

.scroll-fields::-webkit-scrollbar-thumb{

    background:#d8d8d8;

    border-radius:20px;

}

/* Description */

.support-desc{
    margin-bottom:10px;
    font-size:14px;

    color:#666;

    line-height:28px;

}

/* Form */

.form-group{

    margin-bottom:22px;

}

.form-group label{

    display:block;

    margin-bottom:8px;

    font-size:15px;

    font-weight:700;

    color:#2d2d2d;

}

.form-group label span{

    color:#ff4d4f;

}

.form-group input,
.form-group select,
.form-group textarea{
    width:100%;
    border:1px solid #dcdcdc;
    border-radius:8px;
    padding:14px 16px;
    font-size:13px;
    font-family:inherit;
    transition:.25s;
    box-sizing:border-box;
    height:40px;
}


.form-group select{

    height:50px;

}

.form-group textarea{

    resize:vertical;

    min-height:120px;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:#1f88ff;

}

/* Footer */

.popup-footer{

    padding:20px 30px;

    border-top:1px solid #ededed;

    background:#fff;

    box-shadow:0 -4px 18px rgba(0,0,0,.05);

    flex-shrink:0;

}

.submit-btn{

    width:100%;

    height:48px;

    border:none;

    border-radius:10px;

    cursor:pointer;

    color:#fff;

    font-size:18px;

    font-weight:600;

    background:linear-gradient(90deg,#1eb89d,#0a5f9d);

}

.submit-btn:hover{

    opacity:.95;

}
.enquiry-fab i,
.enquiry-fab svg{
    color:#fff;
}

/* Mobile */

@media(max-width:768px){

    .enquiry-popup{

        width:75%;

        height:88vh;

        border-radius:18px;

    }

    .popup-header{

        padding:22px;

    }

    .scroll-fields{

        padding:22px;

    }

    .popup-footer{

        padding:18px 22px;

    }

}

input:disabled,
textarea:disabled {
    opacity: 1;
    background-color: #fff;
    color: #000;
    cursor: default;
    border: 1px solid black;
    -webkit-text-fill-color: #000;
    pointer-events: none;
    resize: none;
}


.skip-link{
position:absolute;
left:-9999px;
}

.skip-link:focus{
left:20px;
top:20px;
background:#fff;
padding:10px;
z-index:9999;
}



