/* New Added */
/* ===================== HEADER ===================== */
.itr-header {
    background: #087668;
    color: #fff;
    padding: 40px 40px;
    width: 100%;
    margin-top: 95px;
}

.itr-header .flex {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0 auto;
}

/* 👇 THE MAIN FIX */
.itr-header .flex>div:first-child {
    flex: 0 0 50%;
    /* Image column – same proportion as screenshot */
}

.itr-header .flex>div:last-child {
    flex: 1;
    /* Text column */
    display: flex;
    flex-direction: column;
    align-content: center;
    flex-wrap: wrap;
}

/* Image stays responsive */
.itr-header .flex img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    display: block;
}

.itr-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
    padding-bottom: 80px;
}

.updated {
    font-size: 16px;
    opacity: 0.9;
}

/* TABLETS */
@media (max-width: 992px) {
    .itr-header .flex {
        gap: 30px;
    }

    .itr-header .flex>div:first-child {
        flex: 0 0 40%;
    }

    .itr-header h1 {
        font-size: 32px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .itr-header {
        padding: 25px 20px;
        margin-top: 10px;
    }

    /* .itr-header .flex {
        flex-direction: column;
        text-align: center;
    } */
    .itr-header .flex {
        flex-direction: column-reverse;
        text-align: center;
    }

    .itr-header .flex>div:first-child,
    .itr-header .flex>div:last-child {
        flex: unset;
        width: 100%;
    }

    .itr-header h1 {
        font-size: 26px;
    }

    .updated {
        font-size: 13px;
    }

    .itr-header h1 {
        font-size: 24px !important;
        padding-bottom: 15px;
    }
}


/* ===================== SEO SECTION ===================== */
.seo-top-section {
    padding: 30px 20px;
    background: #fff;
}

.seo-container {
    text-align: center;
}

/* TITLES */
.seo-subtitle {
    font-size: 26px;
    font-weight: 400;
    color: #222;
    padding-bottom: 30px;
    line-height: 1.6;
}

.seo-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
}

.seo-subsubtitle {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.seo-note {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* ===================== GRID ===================== */
/* .seo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
} */
.seo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center; /* centers rows */
}


/* ===================== CARD ===================== */
/* .seo-card {
    border: 1.5px solid #000;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
} */
.seo-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    flex: 0 0 calc(35.333% - 20px);
    gap: 0;
}
/* .seo-card {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.3s ease;
    flex: 0 0 calc(33.333% - 20px);
    gap: 0;
} */

/* ===================== TOP GREEN BAR ===================== */
.seo-card h4 {
    background: #5fa88a;
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding: 18px 24px;
    margin: 0;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}
.seo-card-blue h4{
    background: #5081a8
}
.card-body-bordered {
    border: 1.5px solid #ccc;
    padding: 0px;
    text-align: center;
    flex: 1;
}

/* ===================== CONTENT ===================== */
.card-content {
    padding: 0px;
    text-align: center;
}

.desc,
.description-second {
    font-size: 16px;
    color: #222;
    line-height: 1.5 !important;
    margin-top: 15px;
    padding: 24px;
    margin-bottom: 0;
}
.desc-check{
    color: #5081a8;
    font-weight: 600;
}

.card-body-bordered img {
    width: 38px;
    height: 34px;
    margin-top: 20px;
}
.seo-card-blue p{margin-top: 0px;}

/* ===================== BUTTON AREA ===================== */
.btn-group {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.seo-btn {
    background: transparent;
    border: 1.5px solid #ccc;
    color: #000;
    padding: 10px 18px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.seo-btn:hover {
    background: #2b9e42;
    color: #fff;
    border: 1.5px solid #2b9e42;
}

/* ===================== HOVER EFFECT ===================== */
.seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    /* .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    } */
    .seo-card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    /* .seo-grid {
        grid-template-columns: 1fr;
    } */
    .seo-card {
        flex: 0 0 100%;
    }
}

/* ===================== BOTTOM NOTE ===================== */
.seo-bottom-note {
    margin-top: 50px;
    background: #fff;
    border: 2px solid #000;
    padding: 40px;
    font-size: 19px;
    font-weight: 400;
    color: #222;
    text-align: center;
    line-height: 1.5;
}

.seo-bottom-note strong {
    color: #0d63b2;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .seo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
    .seo-bottom-note {
        margin-top: 50px;
        background: #fff;
        border: 2px solid #000;
        padding: 24px;
        font-size: 17px
    }

    .seo-title {
        font-size: 25px;
    }

    .seo-subtitle,
    .seo-subsubtitle {
        font-size: 18px;
    }
}

.description-second {
    font-size: 22px;
    padding: 30px 50px;
    line-height: 1.5 !important;
}

/* =====================================================
   VIDEO TESTIMONIAL SECTION
===================================================== */

.video-testimonials {
    text-align: center;
    padding: 50px 0px;
    background: #ffffff;
    text-align: center;
}

.vt-title {
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
}

.vt-subtitle {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
    letter-spacing: 0.58px;
}


/* GRID */
.vt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 100px;
    width: 100%;
}

/* CARD */
.vt-card {
    background: #fff;
    padding: 0px;
    border-radius: 0px;
    display: flex;
    flex-direction: column;
    /* Aligns video + text nicely */
    gap: 8px;
    height: 100%;
    /* Equal height */
    text-align: left;
}

/* VIDEO BOX */
.vt-video-box {
    width: 100%;
}

/* Video Wrapper (same height for all cards) */
.vt-video-wrapper {
    position: relative;
    width: 100%;
    height: 270px;
    /* FIXED HEIGHT = Perfect alignment */
    border-radius: 0px;
    overflow: hidden;
    background: #000;
}

.vt-video-wrapper img,.vt-video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vt-video-wrapper iframe {
    display: none;
}


/* TEXT ELEMENTS */
.vt-link {
    color: #007bff;
    font-size: 14px;
    word-break: break-all;
    text-decoration: unset !important;
}

.vt-name {
    font-size: 19px;
    margin: 0;
}

.vt-name strong {
    color: #0d63b2;
}

.vt-desc {
    font-size: 15px;
    margin: 0;
    line-height: 1.5 !important;
    color: #000;
}


/* =====================================================
   GOOGLE VISIBILITY – LEFT TEXT + RIGHT IMAGE
===================================================== */

.google-visibility {
    padding: 60px 0px;
    background: #ffffff;
}

.gv-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gv-left {
    flex: 1;
}

.gv-left h2 {
    font-size: 34px;
    font-weight: 700;
    padding-top: 23px;
    line-height: 1.5;
    margin-top: 40px;
    margin-bottom: 40px;
}

.gv-left p {
    font-size: 16px;
    line-height: 1.5 !important;
    color: #333;
    padding-right: 30px;
    letter-spacing: 0.58px;
}

.gv-right {
    flex: 1;
}

.gv-right img {
    width: 100%;
    border-radius: 0px;
}

@media (max-width: 768px) {

    .gv-container {
        flex-direction: column !important;
        gap: 25px !important;
        text-align: center !important;
    }

    .gv-left h2 {
        padding-bottom: 20px !important;
        line-height: 34px;
    }

    .gv-right img {
        width: 100% !important;
        max-width: 450px;
        margin: auto;
    }
}


/* =====================================================
   BROWN SECTION
===================================================== */

.highlight-section {
    text-align: center;
    padding: 50px 20px;
    background: #a1846a;
    color: #ffffff;
}

.highlight-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.highlight-section p {
    font-size: 21px;
    line-height: 1.7;
    font-weight: 400;
}

.highlight-section2 {
    text-align: center;
    padding: 50px 20px;
    background: #dab583;
    color: #ffffff;
}

.highlight-section2 h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.5;
    color: #000;
}

.highlight-section2 p {
    font-size: 20px;
    line-height: 1.5;
    font-weight: 400;
    color: #000;
}

.highlight-section-key {
    text-align: center;
    padding: 50px 20px;
    background: #629080;
    color: #ffffff;
}

.highlight-section-key h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.highlight-section-faq {
    text-align: center;
    padding: 50px 20px;
    background: #5081a8;
    color: #ffffff;
}

.highlight-section-faq h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.5;
}

.highlight-do-section {
    text-align: center;
    padding: 50px 20px;
    background: #e6e6e6;
    color: #ffffff;
}

.highlight-do-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 40px;
    color: #000;
}

@media (max-width: 768px) {

    .highlight-section h2 {
        font-size: 24px !important;
    }

    .highlight-section h2 {
        font-size: 24px !important;
    }

    .highlight-section-key h2 {
        font-size: 24px !important;
    }

    .highlight-section-faq h2 {
        font-size: 24px !important;
    }

    .highlight-do-section h2 {
        font-size: 24px !important;
    }
}

/* SECTION BACKGROUND */
.signals-section {
    background: #ffffff;
    padding: 60px 0 0 0;
}

/* MAIN FLEX CONTAINER */
.signals-container {
    margin: 0 auto;
    padding: 0px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

/* LEFT IMAGE */
.signals-left {
    flex: 0 0 45%;
}

.signals-left img {
    width: 100%;
    height: auto;
    border-radius: 0px;
    display: block;
}

/* RIGHT CONTENT */
.signals-right {
    flex: 1;
    padding-left: 50px;
}

.signals-right h2 {
    font-size: 34px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 20px;
    color: #000;
}

.signals-right p {
    font-size: 16px;
    line-height: 1.5 !important;
    color: #333;
    padding-bottom: 40px;
    letter-spacing: 0.58px;
}

/* -----------------------------------
          RESPONSIVE DESIGN
------------------------------------- */
@media (max-width: 768px) {

    .signals-container {
        flex-direction: column !important;
        gap: 30px !important;
        text-align: center !important;
    }

    .signals-left img {
        width: 100% !important;
        max-width: 420px;
        margin: auto;
    }

    .signals-right {
        padding-left: 0px;
    }

    .signals-right {
        width: 100% !important;
        text-align: center !important;
    }

    .signals-right h2 {
        font-size: 24px !important;
        line-height: 1.5;
    }

    .signals-right p {
        font-size: 16px !important;
        padding-bottom: 0px;
    }
}

/* SECTION WRAPPER */
.why-itr-section {
    background: #dab583;
    /* soft beige background */
    padding: 70px 0;
}

/* CENTERED CONTAINER */
.why-itr-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

/* MAIN TITLE */
.why-itr-title {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #000;
    margin-bottom: 50px;
}

/* GRID LAYOUT */
.why-itr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* INDIVIDUAL CARD */
.why-card {
    background: #ffffff;
    border-radius: 0px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8e4dd;
    transition: all 0.3s ease;
}

/* CARD HOVER */
.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

/* ICON */
.why-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

/* CARD TITLE */
.why-card h3 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #000;
    line-height: 1.5;
}

/* CARD PARAGRAPH */
.why-card p {
    font-size: 16px;
    line-height: 1.5 !important;
    color: #444;
    text-align: left;
    letter-spacing: 0.58px;
}

/* RESPONSIVE TABLET */
@media (max-width: 992px) {
    .why-itr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-itr-title {
        font-size: 30px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .why-itr-grid {
        grid-template-columns: 1fr;
    }

    .why-itr-title {
        font-size: 26px;
    }
}

/* .blog-content {
    max-width: 1400px;
    margin: auto;
} */
.blog-content {
    max-width: 1300px;
    margin: 0 auto; 
    padding: 0 30px;
}
.blog-content .h3-text{
    text-align: center;
    margin: 30px 0px;
}
.ul-lists {
    padding-top: 0px;
    border-bottom: 0px solid #ccc;
}

.ul-lists ul {
    margin-left: 18px;
}

.ul-lists ul li {
    list-style: disc;
    padding: 0px 0px 0px 0px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-size: 16px !important;
}

/* .ul-lists p {
    line-height: 27px;
    margin-bottom: 8px;
    text-indent: 0px;
    font-size: 16px;
    line-height: 28px !important;
} */
.ul-lists p {
    line-height: 27px;
    margin-bottom: 23px;
    text-indent: 0px;
    font-size: 16px;
    line-height: 1.5 !important;
    letter-spacing: 0.58px;
}

.ul-lists h2 {
    font-size: 32px;
    line-height: 1.5;
    margin-bottom: 40px;
    margin-top: 40px;
    padding-top: 22px;
}

.ul-lists h3 {
    font-size: 24px;
    line-height: 1.5;
    padding: 10px 0;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 8px;
}

.vt-title .tooltip-container img {
    width: 35px;
    margin-left: 8px;
}

.vt-flex {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    gap: 10px;
}

.vt-flex img {
    width: 30px;
}

.why-card .tooltip-container img {
    width: 30px;
    margin: 0 8px;
}

@media (max-width: 768px) {
    .ul-lists {
        padding: 0px 20px 0;
    }

    .ul-lists p {
        text-indent: 0px;
    }
}

/* base (initial hidden) */
.fade-load {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* when the section becomes visible */
.fade-load.visible {
    opacity: 1;
    transform: translateY(0);
}

/* children stagger: prepare */
.fade-items .fade-item {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* when parent gets .visible, reveal children with stagger using transition-delay */
.fade-load.visible .fade-items .fade-item {
    opacity: 1;
    transform: translateY(0);
}

/* set delays for nth-child to create stagger (adjust number of children if needed) */
.fade-load.visible .fade-items .fade-item:nth-child(1) {
    transition-delay: 0.08s;
}

.fade-load.visible .fade-items .fade-item:nth-child(2) {
    transition-delay: 0.16s;
}

.fade-load.visible .fade-items .fade-item:nth-child(3) {
    transition-delay: 0.24s;
}

.fade-load.visible .fade-items .fade-item:nth-child(4) {
    transition-delay: 0.32s;
}

.fade-load.visible .fade-items .fade-item:nth-child(5) {
    transition-delay: 0.40s;
}

/* fallback: animate-on-load for non-JS users (optional) */
html.no-js .fade-load {
    opacity: 1;
    transform: none;
}

html.no-js .fade-items .fade-item {
    opacity: 1;
    transform: none;
}


/* Domain Page */

/* WRAPPER */
.da-wrapper {
    color: #222;
    padding-bottom: 0px;
}

/* TOP BLUE BAR */
.da-top {
    background: #23629e;
    padding: 50px 20px;
    text-align: center;
    color: #fff;
    margin-top: 95px;
}

.da-top h2 {
    font-size: 32px;
    font-weight: 700;
}

/* INTRO TEXT */
.da-intro {
    text-align: center;
    padding: 30px;
    font-size: 21px;
    line-height: 1.6;
}
.intros{
    padding: 30px 0 0 0;
}

/* CHECK DA SECTION */
.da-check-box {
    background: #e6e6e6;
    padding: 50px 20px;
    text-align: center;
}

.da-check-box h3 {
    font-size: 34px;
    font-weight: 700;
    margin: 10px 0;
}

.da-check-box .sub {
    font-size: 16px;
    margin-bottom: 25px;
    color: #333;
}

/* CENTER ROW */
.check-row {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

/* INPUT + BUTTON BOX EXACT LIKE IMAGE */
.da-input-box {
    width: 520px;
    background: #fff;
    border: 2px solid #b9b9b9;
    border-radius: 12px;
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* INPUT */
.da-input-box input {
    flex: 1;
    padding: 14px 16px;
    border: none;
    font-size: 16px;
    outline: none;
    background: none;
    color: #333;
}

/* BUTTON */
.da-input-box button {
    background: #0b63bc;
    color: #fff;
    padding: 10px 26px;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s ease;
}

/* Button Hover */
.da-input-box button:hover {
    background: #084d93;
}

/* Note */
.note {
    font-size: 13px;
    color: red;
    margin-top: 8px;
}

/* MID TEXT */
.da-mid-text {
    text-align: center;
    font-size: 21px;
    margin: 30px 0 10px;
}
.da-midtext {
    text-align: center;
    font-size: 21px;
    margin: 20px 0 0px;
    color: #ff0;
}

/* ORDER TITLE */
.da-order-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.4;
}

.da-sub-title {
    text-align: center;
    margin: 40px 0;
}

.da-sub-title h4{ 
    font-size: 21px;
    font-weight: 400;
    line-height: 1.4;
}

/* CARDS */
.da-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 0 20px;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 50px;
}

/* .da-card {
    padding: 25px;
    color: #fff;
    text-align: center;
    border-radius: 4px;
} */

.da-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    height: 100%;
    position: relative;
    border-radius: 0px;
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.da-card:hover {
    transform: translateY(-6px);
    z-index: 1;
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

.brown {
    background: #dab583;
}

.gold {
    background: #a1846a;
    color: #fff;
}

.green {
    background: #629080;
    color: #fff;
}

.blue {
    background: #5081a8;
    color: #fff;
}

.da-card h4 {
    font-size: 19px;
    line-height: 1.7;
    font-weight: 400;
    margin: 5px 0;
}

.da-card img,
.da-card .tooltip-container img {
    width: 40px;
    position: absolute;
    bottom: 0;
    margin-bottom: 19px;
    left: 50%;
    transform: translateX(-50%);
}

.price-label {
    margin-top: 0px;
    font-size: 19px;
    font-weight: 700;
}

.price {
    font-size: 26px;
    font-weight: bold;
    margin-top: 10px;
}

/* FORM */
.domain-form {
    padding: 40px 20px 0 20px;
    max-width: 600px;
    margin: auto;
}
.domain-form .da-row{ margin-bottom: 0px;}
.da-form {
    padding: 0px;
    max-width: 400px;
    margin: auto;
}

/* FLEX SPLIT LEFT & RIGHT */
.da-top-form {
    display: flex;
    gap: 25px;
    margin-bottom: 25px;
}

/* COLUMNS */
.left,
.right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* LABEL STYLE */
.da-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.da-label img {
    width: 28px;
    height: 26px;
}

/* INPUT + TEXTAREAS */
.da-form input,
.da-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0px;
    font-size: 15px;
    box-sizing: border-box;
}

.right textarea {
    height: 120px;
    resize: none;
}

/* BOTTOM ROW */
.da-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.da-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.da-row input {
    flex: 1;
}

/* TOTAL */
.da-total {
    text-align: center;
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 0;
}

/* PAYMENT BUTTON */
.da-pay-btn {
    width: auto;
    margin: 15px auto;
    margin-bottom: 0;
    background: #2b9e42;
    padding: 15px 20px;
    color: #fff;
    font-size: 20px;
    border-radius: 5px;
    text-align: center;
    cursor: pointer;
    font-weight: 600;
    border: none;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .da-top {
        margin-top: 0px;
    }

    .da-row {
        flex-direction: column;
    }

    .da-pay-btn {
        width: 80%;
    }
    .da-order-title {
        text-align: center;
        font-size: 24px;
        padding: 0 15px;
    }
    .da-sub-title h4 {
        font-size: 18px;
        padding: 0 15px;
    }
    .impact-title {
        font-size: 22px;
        font-weight: 700;
        margin: 40px 15px;
        text-align: center;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .da-cards {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {

    .da-input-box {
        width: 100%;
        flex-direction: column;
        padding: 15px;
        gap: 12px;
    }

    .da-input-box button {
        width: 100%;
    }

    .da-cards {
        grid-template-columns: 1fr;
    }

    .da-form .row {
        flex-direction: column;
    }
}

/* FULL WIDTH FIELD */
.full-row {
    margin-top: 15px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.full-row .da-label {
    margin-bottom: 0px;
}

/* radio alignment */
.custom-radio input {
    display: none;
}

/* Outer circle */
.custom-radio .radio-mark {
    width: 28px;
    height: 28px;
    border: 1px solid #b5b5b5;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.custom-radio input:checked + .radio-mark {
    border-color: #0b8a3e;
}

/* Inner filled circle when selected */
.custom-radio input:checked+.radio-mark::after {
    content: "";
    width: 16px;
    height: 16px;
    background: #0b8a3e;
    /* grey color like image */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* ==========================
   TOP BUTTON SECTION
========================== */

.impact-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 0 0px;
    flex-wrap: wrap;

    position: sticky;
    top: 94px;
    z-index: 999;
    background: #fff;
    padding: 12px 0;
   /* NO border / shadow initially */
   border-bottom: none;
   box-shadow: none;

   transition: box-shadow 0.3s ease;
}
.impact-buttons.is-sticky {
    /* border-bottom: 1px solid #e5e5e5; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    background: #e6e6e6;
}

.impact-btn {
    padding: 10px 15px;
    border-radius: 6px;
    border: 1px solid #000;
    background: #fff;
    color: #0d63b2;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.impact-btn:hover {
    background: #f0f0f0;
}

.impact-btn-active {
    background: #fff;
    color: #0d63b2;
    border-color: #000;
}

/* ==========================
   IMPACT CARD SECTION
========================== */

.impact-section {
    text-align: center;
    padding: 40px 20px;
}

.impact-title {
    font-size: 26px;
    font-weight: 700;
    margin: 40px;
    text-align: center;
    line-height: 40px;
}

.impact-card-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 24px auto;
}

.impact-card {
    background: #fff;
    border-radius: 0px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    padding: 25px;
    transition: all 0.35s ease;
}

/* HOVER EFFECT */
.impact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.12);
}

/* TOP COLORED BARS */
.impact-top {
    padding: 25px 50px;
    color: #fff;
    text-align: left;
}

.impact-red {
    background: #ec3f41;
}

.impact-orange {
    background: #e0940b;
    color: #000;
}

.impact-green {
    background: #63c436;
    color: #000;
}

.impact-darkgreen {
    background: #059746;
}

.impact-top h3 {
    margin: 0;
    font-size: 17px;
    line-height: 1.4;
}

/* BLACK MIDDLE STRIP */
.impact-mid {
    background: #000;
    color: #fff;
    padding: 0px;
    font-size: 14px;
    text-align: center;
}

/* Text Highlights */
.impact-poor {
    color: #ff8d8d;
}

.impact-improving {
    color: #ffe08d;
}

.impact-good {
    color: #9cff9c;
}

.impact-excellent {
    color: #8dffca;
}

/* NOTE */
.impact-note {
    text-align: center;
    font-weight: 700;
    margin: 12px 0;
    font-size: 16px;
}

.impact-red-text {
    color: #d84141;
}

.impact-orange-text {
    color: #d9931b;
}

.impact-green-text {
    color: #3aa63a;
}

.impact-purple-text {
    color: #7e139e;
}

/* BUTTON */
.impact-link-btn {
    display: block;
    background: #0d63b2;
    color: #fff !important;
    text-decoration: none !important;
    width: 80%;
    padding: 12px;
    margin: 10px auto 0;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    font-size: 16px;
}

/* Responsive */
@media(max-width: 992px) {
    .impact-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
}

.impact-mid p {
    font-size: 14px;
    padding: 25px 40px;
    text-align: left;
    line-height: 26px !important;
}

.impact-top h3 strong {
    font-weight: 700;
    font-size: 30px;
}

/* Main Container */
.steps-impact-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 40px auto;
    padding: 20px;
}

/* Each Step Box */
.steps-impact-box {
    padding: 10px 10px 0 10px;
}

/* Number Design */
.steps-impact-number {
    background: #009746;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    padding: 6px 14px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 12px;
}

/* Title */
.steps-impact-title {
    font-size: 20px;
    font-weight: 700;
    margin: 3px 0 13px 0;
    color: #000;
}

/* Description */
.steps-impact-text {
    font-size: 16px;
    color: #333;
    line-height: 1.5 !important;
    letter-spacing: 0.58px;
    margin: 0;
}

/* Responsive */
@media(max-width: 992px) {
    .steps-impact-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 600px) {
    .steps-impact-container {
        grid-template-columns: 1fr;
    }

    .da-top-form {
        display: flex;
        flex-direction: column;
    }

    .impact-card-wrapper {
        margin: 15px;
    }

    .da-total {
        font-size: 21px;
        line-height: 30px !important;
    }
}

.do-green {
    color: #2b9e42;
}

.do-red {
    color: #cc3300;
}

/* Main result box */
.result-box-section {
    background: #fff;
    padding: 40px 100px;
    border-radius: 25px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
    max-width: 1300px;
    margin: 30px auto;
}

.result-box-section h2 {
    color: #000;
}

.result-box-section h2 span {
    color: #0b63bc;
}

.result-box {
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: center;
    gap: 0px;
}
/* .result-box {
    padding: 40px;
    border-radius: 25px;
    display: flex;
    justify-content: space-between;
    gap: 30px;
} */

.metric {
    text-align: center;
    border: 1px solid #ccc;
    padding: 20px;
    width: 33.333%;
}

.metric h4 {
    font-size: 21px;
    color: #666666;
}
.metric .h4-text {
    font-size: 22px;
    color: #000;
    line-height: 1.5;
}

.metric-value {
    font-size: 46px;
    font-weight: 600;
    color: #555;
    margin-bottom: 0;
    line-height: 1.3 !important;
}
.metric-text {
    font-size: 20px;
    color: #2b9e42;
    font-weight: 500;
}

.metric-value.green {
    color: #1faa34;
    background: #fff;
}

/* Tooltip orange boxes */
.tooltip-container {
    position: relative;
    display: inline-block;
}

.info-icon {
    width: 22px;
    cursor: pointer;
}

/* Main Tooltip Box */
.custom-tooltip {
    position: absolute;
    bottom: 45px;
    /* Tooltip ABOVE icon */
    left: 50%;
    /* transform: translateX(-50%); */
    transform: translateX(-15%);

    background: #f2c885;
    /* exact yellow */
    padding: 15px 18px;
    width: 330px;
    border-radius: 6px;

    font-size: 14px;
    line-height: 1.5;
    color: #000;

    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);

    opacity: 0;
    visibility: hidden;
    transition: 0.25s ease;
    z-index: 100;
    font-weight: 400;
}

/* Perfect arrow matching screenshot */
.tooltip-bottom-arrow {
    position: absolute;
    bottom: -16px;
    /* arrow sits below tooltip */
    left: 40px;
    /* adjust to match your screenshot alignment */

    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 16px solid #f2c885;
    /* match tooltip bg color */
}

/* Hover to show */
.tooltip-container:hover .custom-tooltip,
.card2:hover .custom-tooltip {
    opacity: 1;
    visibility: visible;
}

.card2 .custom-tooltip {
    bottom: 70px;
}

.card2 {
    display: inline-block;
    cursor: pointer;
    position: unset !important;
}




/* ===== Desktop layout remains same ===== */


/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .result-box-section {
        padding: 30px 40px;
    }

    .result-box {
        padding: 30px;
        gap: 0px;
    }

    .metric h4 {
        font-size: 18px;
    }
    .metric .h4-text {
        font-size: 18px;
    }

    .metric-value {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .result-box-section {
        padding: 25px 25px;
    }

    .result-box {
        flex-direction: column;
        padding: 25px;
    }

    .metric {
        width: 100%;
        padding: 20px;
    }

    .metric-value {
        font-size: 34px;
    }
    .metric-text {
        font-size: 16px;
    }

    .da-intro {
        font-size: 18px;
        padding: 30px;
    }

    .da-mid-text {
        text-align: center;
        font-size: 20px;
        margin: 30px;
    }
    .da-midtext {
        text-align: center;
        font-size: 20px;
        margin: 24px;
        line-height: 1.5 !important;
    }

    .tooltip-bottom-arrow {
        left: 46%;
    }

    .custom-tooltip {
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .result-box-section {
        padding: 20px 15px;
        border-radius: 18px;
    }

    .result-box {
        padding: 20px;
        gap: 0px;
    }

    .metric {
        padding: 18px;
    }

    .metric h4 {
        font-size: 16px;
    }
    .metric .h4-text {
        font-size: 16px;
    }

    .metric-value {
        font-size: 30px !important;
    }
    .metric-text {
        font-size: 16px;
    }

    .seo-card h4 {
        font-size: 16px;
    }
}

.da-form .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 13px;
}

.da-form .iti__flag-container {
    margin: 1px;
}

/* Linking Page Style */
.linking-btns{
    margin: 40px 0 40px 0px;
}
.wrap {
    margin: auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin: 50px 0;
    justify-content: space-between;
    }

    .wrap-left {
    width: 60%;
    }

    .wrap-right {
    width: 35%;
    border: 1px solid #cfcfcf;
    padding: 30px 25px;
    background: #fff;
    border-radius: 4px;
    position: sticky;
    top: 130px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    height: 420px;
    }

  /* PACKAGE */
  .pkg {
    margin-bottom: 40px;
  }
  
  .pkg h4 {
    margin-bottom: 10px;
    font-size: 19px;
  }
  
  .pkg p {
    margin: 0 0;
    font-size: 15px;
    line-height: 24px !important;
}
  
  /* LABELS */
  .labels {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    font-size: 13px;
    margin: 14px 0 0px;
    align-items: center;
  }
  
  /* INPUT LINE */
  .line-section {
  }
  .line {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    border: 1px solid #bdbdbd;
    margin-bottom: 10px;
  }
  .line-text {
    display: grid;
    grid-template-columns: 3fr 2fr 1fr;
    margin-bottom: 15px;
  }

  /* INPUTS */
  .line input {
    border: none;
    border-right: 1px solid #bdbdbd;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }
  
  .line input:last-child {
    border-right: none;
  }
  
  /* QTY */
  .qty {
    display: flex;
    align-items: center;
  }
  
  .qty button {
    width: 32px;
    height: 36px;
    border: none;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
  }
  
  .qty .count {
    flex: 1;
    text-align: center;
    font-size: 13px;
  }
  
  /* ADD URL */
  .add-url, .add-anchor {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    color: #0066cc;
    cursor: pointer;
  }
  
  /* INFO ICON */
  .info {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    border-radius: 50%;
    font-size: 10px;
    margin-left: 4px;
  }


/* CART CARD */
.cart {
    padding: 30px 28px;
  }
/* .cart {
    border: 1px solid #cfcfcf;
    padding: 30px 28px;
    background: #fff;
    border-radius: 4px;
  
    position: sticky;
    top: 20px;
  
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  } */
  
  /* CONFIRM TEXT */
  .cart .confirm {
    display: flex;
    align-items: center;
    gap: 12px;
  
    font-size: 14px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 28px;
  }
  
  /* RADIO BUTTON */
  .cart input[type="radio"] {
    width: 24px;
    height: 24px;
    accent-color: #000;
    cursor: pointer;
  }
  .cart label{font-weight: 400 !important;font-size: 14px;padding-bottom: 10px;}
  /* RED TEXT */
  .cart .red {
    color: #000;
    font-size: 17px;
    margin: 30px 0 10px 0;
}
.cart .red span {
    color: red;
}
  
  /* GST TEXT */
  .cart .gst {
    font-size: 14px;
    color: #000;
    margin-bottom: 35px;
  }
  
  .cart .gst strong {
    display: block;
    margin-top: 6px;
    font-size: 18px;
  }
  
  /* BUTTON */
  .cart button {
    width: 100%;
    background: #2e9d37;
    color: #fff;
    border: none;
    border-radius: 3px;
  
    padding: 14px 0;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    margin-top: 24px;
  }
  
  .cart button:hover {
    background: #27882f;
  }
  /* .labels .flexend { display: flex;align-items: flex-end;} */
  .labels .flexend img{    width: 26px;
    height: 24px;
    margin-bottom: 5px;}

    .desktop-break {
        display: inline;
      }
    .mobile-break {
        display: none;
      }


      .slick-slide {
        height: auto !important;
    }
        .hero-slider-wrapper {
      position: relative;
      background: #e6e6e6;
      padding: 30px 0;
    }
    
    /* IMAGE */
    .hero-slider img {
      width: 100%;
      height: 70%;
      object-fit: contain;
    }
    
    /* CUSTOM ARROWS */
    .custom-prev,
    .custom-next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: none;
      border: none;
      font-size: 42px;
      color: #000;
      cursor: pointer;
      z-index: 20;
      opacity: 0.8;
    }
    
    .custom-prev:hover,
    .custom-next:hover {
      opacity: 1;
    }
    
    /* POSITIONS */
    .custom-prev {
      left: 12%;
    }
    .custom-next {
      right: 12%;
    }
    .cost-link{ padding: 20px;}
    .cost-link h2{
        font-size: 32px;
    }
    .custom-prev img, .custom-next img {
        width: 40px;
      }
    
    .confirmBtn{margin-top: 30px;}
    .confirmBtn button{
        background: #5081a8;
        font-size: 15px;
        color: #fff;
        border: none;
        padding: 8px;
    }

@media only screen and (max-width:1024px){
        .wrap {
            padding: 0px 25px;
        }
        .cart {
            padding: 10px 10px;
        }
        .cart .red {
            color: #000;
            font-size: 16px;
            margin: 35px 0;
        }
        .video-testimonials {
            text-align: center;
            padding: 50px 15px;
        }
        .blog-content .ul-lists {
            padding: 15px;
        }
        .google-visibility {
            padding: 60px 15px;
            background: #ffffff;
        }
    }
    /* MOBILE */
    @media (max-width: 768px) {
      .hero-slider img {
        height: 230px;
      }
    
      .custom-prev,
      .custom-next {
        font-size: 28px;
      }

    /* WRAP */
    .wrap {
      flex-direction: column;
      gap: 22px;
      padding: 0px 12px 30px 12px;
      margin: 0px;
    }
  
    .wrap-left,
    .wrap-right {
      width: 100%;
    }
  
    /* PACKAGE CARD */
    .pkg {
      background: #fff;
      padding: 16px;
      border-radius: 6px;
      box-shadow: 0 3px 10px rgba(0,0,0,0.08);
      margin-bottom: 22px;
      border: 1px solid #cfcfcf;
    }
  
    .pkg h4 {
      font-size: 15px;
      margin-bottom: 6px;
    }
  
    .pkg p {
      font-size: 12px;
      color: #555;
    }
  
    /* HIDE HEADER LABELS */
    .labels {
      display: none;
    }
  
    /* INPUT CARD */
    .line {
      display: flex;
      flex-direction: column;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 12px;
      gap: 10px;
      background: #fafafa;
    }
  
    /* URL INPUT */
    .line input.url::before,
    .line input.anchor::before {
      content: "";
    }
  
    .line input {
      border: 1px solid #ccc;
      border-radius: 4px;
      padding: 10px;
      height: 40px;
      font-size: 14px;
    }
  
    .line input.url {
      background: #fff;
    }
  
    .line input.anchor {
      background: #fff;
    }
  
    /* QTY BOX */
    .qty {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border: 1px solid #ccc;
      border-radius: 4px;
      overflow: hidden;
      height: 40px;
      background: #fff;
    }
  
    .qty button {
      width: 45px;
      height: 100%;
      font-size: 20px;
      background: #fff;
    }
  
    .qty .count {
      flex: 1;
      text-align: center;
      font-size: 15px;
      font-weight: 500;
    }
  
    /* ADD URL BUTTON */
    .add-url, .add-anchor {
      margin-top: 12px;
      display: inline-block;
      font-size: 14px;
      font-weight: 500;
      color: #0066cc !important;
    }
    .line-text {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr;
        margin-bottom: 15px;
    }
  
    /* CART – PROMINENT */
    .wrap-right {
      position: relative;
      background: #fff;
      border-radius: 6px;
      padding: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      top: 10px;
    }
  
    .cart label {
      font-size: 14px;
      line-height: 1.5;
    }
  
    .cart .red {
      font-size: 16px;
      margin: 25px 0;
    }
  
    .cart .gst strong {
      font-size: 18px;
    }
  
    .cart button {
      font-size: 15px;
      padding: 14px;
      border-radius: 4px;
    }
    .desktop-break {display: none; }
    .mobile-break{display: inline; }
    .custom-prev {
        left: 5%;
    }
    .custom-next {
        right: 3%;
    }
    .cost-link h2 {font-size: 26px;} 
    .custom-prev img, .custom-next img { width: 30px;}
    .ul-lists h3 {
        font-size: 19px;
        line-height: 28px;
    }
    .confirmBtn{margin-top: 0px;}
  }


  .card-radio {
    -webkit-appearance: none;
    border: 2px solid #bdbdbd;
    border-radius: 50%;
    position: relative;
    outline: none;
  }
  
  .card-radio:checked::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #bdbdbd;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  /* ✅ keyboard focus */
  .card-radio:focus-visible {
    box-shadow: 0 0 0 3px rgba(189,189,189,0.6);
  }
  input[type=radio]:focus {
    outline: thin dotted;
    outline: unset !important;
    outline-offset: -2px;
}
  
.remove-row {
    background: red !important;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 4px;
  }
  input.error::placeholder {
    color: #f1b400;   /* yellow */
}
.da-result-wrapper {
    margin-top: 20px;
}
#daMsgNote { font-size: 14px;}

/* .da-result-card {
    border: 1px solid #d9d9d9;
    padding: 5px 0px;
    text-align: center;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.da-result-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #555;
    margin-bottom: 5px;
}

.da-score {
    font-size: 40px;
    font-weight: 700;
} */

/* DA COLORS */
.da-red {
    color: #e53935;
}

.da-green {
    color: #1aa84b;
}

.da-gray {
    color: #444;
}

/* Responsive */
/* @media (max-width: 768px) {
    .da-result-wrapper {
        grid-template-columns: 1fr;
    }
} */

@media(max-width: 600px) {
    .impact-card-wrapper {
        grid-template-columns: 1fr;
    }

    .impact-buttons {
        margin: 40px 0px 40px 0px;
    }

    .impact-btn {
        width: 80%;
    }
    .blog-content {
        padding: 0 0px;
    }
    .da-check-box h3 {
        font-size: 28px;
        font-weight: 700;
        margin: 10px 0;
    }
    .result-box-section h2 {
        color: #000;
        font-size: 20px;
        line-height: 1.5;
    }
    .da-top h2 {
        font-size: 24px;
        font-weight: 700;
        line-height: 1.5;
    }
    .da-input-box input {width: 100%;}
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    /* Reduce all section paddings */
    .video-testimonials,
    .google-visibility,
    .highlight-section,
    .signals-section {
        padding: 40px 15px 0 15px !important;
    }

    /* Fix max-width container overflow */
    .video-testimonials,
    .google-visibility,
    .signals-section {
        max-width: 100% !important;
    }

    /* Title resize */
    .vt-title,
    .gv-left h2,
    .highlight-section h2,
    .highlight-section2 h2,
    .signals-right h2 {
        font-size: 22px !important;
        line-height: 1.4;
    }

    .highlight-section p,
    .highlight-section2 p,
    .gv-left p,
    .signals-right p {
        font-size: 16px !important;
        line-height: 1.6;
        padding-right: 0px;
    }
    .da-red, .da-green, .da-gray {
        line-height: 1.5;
        font-size: 16px;
    }
    .impact-buttons {
        top: 0px;
        position: relative;
    }
    .impact-buttons.is-sticky {
        box-shadow: none;
        background: #fff;
    }
    .ul-lists h2 {
        font-size: 23px;
        line-height: 1.5;
        margin-bottom: 40px;
        margin-top: 40px;
        padding-top: 22px;
    }
    .desc-check a{ color: #337ab7 !important;}
    .da-card { padding: 10px;}
    .da-card h4 { font-size: 16px;}
    .blog-content .h3-text { text-align: center; margin: 30px 15px;font-size: 21px;}
    .da-form {padding: 15px;}
}
.error-msg {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 6px;
    display: none;
}
.view-package{
    margin-top: 40px;
}
.view-package .spantxt{
    color: #000;
    font-weight: 400;
    padding: 15px;
    border: 1px solid #ccc;
    cursor: pointer;
}
.view-package .span-txt{
    background: #0a5baf;
    border: 1px solid #ccc;
    padding: 12px;
    cursor: pointer;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
}

.card-selector {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    padding-bottom: 15px;
}
.radio-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #d1d1d1;
}
/* .da-card.selected-card {
    border: 3px solid #0b8a3e;
    box-shadow: 0 0 15px rgba(11, 138, 62, 0.35);
    transform: scale(1.05);
} */
.da-card.selected-card .radio-circle {
    background: #fff;
    border-color: #fff;
    position: relative;
}
.da-card.selected-card .radio-circle::after {
    content: "✓";
    color: #0b8a3e;
    font-size: 20px;
    padding-top: 3px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
/* 
.da-card.selected-card {
    border: 3px solid #0b8a3e;
    box-shadow: 0 0 15px rgba(11, 138, 62, 0.35);
    transform: scale(1.05);
    position: relative;
} */
/* Tick badge */
/* .da-card.selected-card::after {
    content: "✓";
    position: absolute;
    top: -12px;
    right: -12px;
    width: 26px;
    height: 26px;
    background: #0b8a3e;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
} */
/* .da-card.selected-card::after {
    content: "Recommended";
    position: absolute;
    top: -12px;
    right: -12px;
    background: #0b8a3e;
    color: #fff;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
} */

/* Advanced Page Enquiry */
.service-form {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.4);
    margin-top: 0px;
}

.service-form .modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    width: 30%;
    position: relative;
}

.service-form .close-btn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    color: red;
    cursor: pointer;
}

.service-form label {
    display: block;
    font-size: 12px;
    font-weight: 400 !important;
    margin: 12px 0 6px;
    color: #000;
}

.service-form input,
.service-form textarea {
    width: 100%;
    padding: 3px 6px;
    border: 1px solid #999;
    font-size: 12px;
    outline: none;
    font-weight: 400;
    margin-bottom: 5px;
}

.service-form input:focus,
.service-form textarea:focus {
    border-color: #2a8f3a;
}

.service-form textarea {
    resize: none;
}

.service-form .confirm {
    display: flex !important;
    align-items: center;
    font-size: 13px !important;
    margin: 15px 0 !important;
}

.service-form .confirm {
    display: flex;
    align-items: center !important;
    font-size: 14px;
    cursor: pointer;
}

/* hide default radio */
.service-form .confirm input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #999;
    border-radius: 50%;
    margin-right: 5px;
    position: relative;
    margin-top: 0px;
    cursor: pointer;
}

/* checked state */
.service-form .confirm input[type="radio"]:checked {
    border-color: #28a745;
}

/* inner dot */
.service-form .confirm input[type="radio"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* hover */
.service-form .confirm input[type="radio"]:hover {
    border-color: #28a745;
}


.service-form .modalHeaders{
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    align-items: center;
}
.service-form .modalHeaders h3{margin-top:0;font-size: 16px;}
.service-form .seobtn{
    padding: 8px 50px;
    background-color: #2b9e42;
    border: 1px solid #2b9e42;
    color: #fff;
    font-size: 16px;
    font-family: roboto;
    margin: auto;
    display: block;
    border-radius: 5px;
    letter-spacing: 4px;
}
#serviceForm{margin:0;}
#serviceForm .iti--separate-dial-code .iti__selected-dial-code {
    margin-left: 6px;
    font-size: 13px;
}
@media(max-width:768px){
    .service-form .modal-content{
        width:90%;
    }
}