/* Hero section */

.precisionary-hero {
    padding: 50px;
    width: 100%;
    min-height: 668px;
    position: relative;
    background-color: var(--theme-color);
    background-image:
        linear-gradient(90deg, rgb(0 0 0) 0%, rgb(0 23 66) 42%, rgba(0, 0, 0, 0.45) 72%, rgba(0, 0, 0, 0.20) 100%), url(../images/microtome-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* left side */
.precisionary-left {
    width: 85%;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.precisionary-logo-div {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.precisionary-logo {
    width: 145px;
    flex-shrink: 0;
}

.precisionary-logo img {
    display: block;
    width: 144px;
    height: auto;
    filter: brightness(0) invert(1);
}

.logo-content {
    text-align: left;
}

.logo-content h5 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.logo-content p {
    margin: 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
}

.precisionary-content {
    width: 100%;
    max-width: 650px;
}
/* left content */

.precisionary-content {
    width: 100%;
}

.precisionary-content h1 {
    margin: 0 0 14px;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 36px;
    line-height: 1.19;
    font-weight: 700;
    letter-spacing: -0.7px;
}

.precisionary-content p {
    margin: 0;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.62;
    font-weight: 500;
}

.precisionary-text-bottom {
    margin-top: 19px !important;
}

/* demo button */

.precisionary-demo-btn {
    width: 272px;
    height: 48px;
    margin-top: 21px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: var(--color-white);
    border-radius: 25px;
    text-decoration: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.precisionary-demo-btn:hover {
    background: var(--color-white);
    color: #000;
}


/* form */

.precisionary-form-wrapper {
    width: 525px;
    position: absolute;
    right: 77px;
    top: 33px;
    z-index: 10;
    padding: 12px;
    background: #adc2d6;
    border-radius: 20px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.18);
}


/* form box */

.precisionary-form {
    width: 100%;
    min-height: 480px;
    padding: 29px 22px 14px 22px;
    box-sizing: border-box;
    background: var(--color-white);
    border-radius: 14px;
    box-shadow:
        inset 0 0 8px rgba(0, 0, 0, 0.06);
}

/* form heading */

.precisionary-form h2 {
    margin: 0 0 21px;
    color: var(--theme-color);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
}

/* form field */

.precisionary-field {
    width: 100%;
    margin-bottom: 11px;
}

.precisionary-field label {
    display: block;
    margin: 0 0 4px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 700;
}

/* input */

.precisionary-field input {
    width: 100%;
    height: 40px;
    padding: 3px 10px;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    border-radius: 100px;
    background: var(--color-white);
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    transition: border-color 0.2s ease;
}

.precisionary-field input:focus {
    border-color: #6500ff;
}

/* select */

.precisionary-field select {
    width: 100%;
    height: 30px;
    padding: 3px 8px;
    box-sizing: border-box;
    border: 1px solid #bdbdbd;
    border-radius: 0;
    background: var(--color-white);
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    color: #000;
}

.precisionary-field select:focus {
    border-color: #6500ff;
}

/* text area */

.precisionary-field textarea {
    width: 100%;
    height: 63px;
    padding: 8px 10px;
    box-sizing: border-box;
    resize: none;
    border: 1px solid #bdbdbd;
    border-radius: 13px;
    background: var(--color-white);
    outline: none;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
}

.precisionary-field textarea:focus {
    border-color: #6500ff;
}

/* submit btton */

.precisionary-submit {
    width: 130px;
    height: 37px;
    margin-top: 10px;
    border: none;
    border-radius: 20px;
    background: #000;
    color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.precisionary-submit:hover {
    background: var(--theme-color);
    color: var(--color-white);
}

/*  WORKHORSE MICROTOMES SECTION */

.workhorse-section {
    width: 100%;
    position: relative;
    background: var(--color-white);
    padding: 50px;
    overflow: hidden;
}

.workhorse-row {
    display: flex;
    gap: 45px;
}

/* left content */

.workhorse-content {
    width: 100%;
}

.workhorse-content h2 {
    margin: 0 0 20px;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 37px;
    line-height: 1.25;
    font-weight: 700;
}

.workhorse-content h2 strong{
    font-weight: 700;
    color: var(--theme-color);
}

.workhorse-content p {
    max-width: 500px;
    margin: 0;
    color: #000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 19px;
    line-height: 1.62;
    font-weight: 500;
}


/* right image */

.workhorse-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.workhorse-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    object-fit: contain;
}

/*  */

/* =========================================
   CARDS SECTION
========================================= */

.cards-section {
    padding: 70px 30px;
    background: #f7f9fc;
}


/* =========================================
   CARD
========================================= */

.your-card {
    height: 100%;
    position: relative;

    background: #ffffff;

    border: 1px solid #dce4ec;
    border-radius: 16px;

    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition: all 0.35s ease;
}


/* Top Accent Border */

.your-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #0b5fd4;

    transform: scaleX(0);
    transform-origin: left;

    transition: transform 0.35s ease;

    z-index: 5;
}


/* Hover */

.your-card:hover {
    transform: translateY(-7px);

    border-color: #0b5fd4;

    box-shadow: 0 15px 35px rgba(11, 95, 212, 0.14);
}

.your-card:hover::before {
    transform: scaleX(1);
}


/* =========================================
   IMAGE
========================================= */

.your-card .card-img {
    width: 100%;
    height: 250px;

    padding: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-bottom: 1px solid #e1e7ee;

    overflow: hidden;
}

.your-card .card-img img {
    width: 85%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition: transform 0.5s ease;
}

.your-card:hover .card-img img {
    transform: scale(1.07);
}


/* =========================================
   CONTENT
========================================= */

.your-card .card-content {
    padding: 25px 25px 28px;
    background-color: #f5f8fc;
}

.your-card .card-content h3 {
    margin: 0 0 12px;
    color: #102a43;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.your-card .card-content p {
    margin: 0;
    color: #667085;
    font-size: 14px;
    line-height: 1.7;
}



/* =========================================
   PREMIUM MICROTOME COMPARISON
========================================= */

.microtome-section {
    position: relative;
    width: 100%;
    padding: 80px 50px;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
    overflow: hidden;
}


/* Decorative Background */

.microtome-section::before {
    content: "";
    position: absolute;

    width: 280px;
    height: 280px;

    top: -120px;
    right: -100px;

    border-radius: 50%;

    background: rgba(11, 95, 212, 0.06);
}

.microtome-section::after {
    content: "";
    position: absolute;

    width: 220px;
    height: 220px;

    bottom: -120px;
    left: -80px;

    border-radius: 50%;

    background: rgba(11, 95, 212, 0.04);
}


/* =========================================
   INNER CONTAINER
========================================= */

.microtome-row {
    position: relative;
    z-index: 2;

    display: block;
}


/* =========================================
   TITLE
========================================= */

.microtome-title {
    position: relative;

    margin: 0 auto 45px;

    text-align: center;

    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;

    color: #102a43;
}

.microtome-title strong{
    font-weight: 700;
    color: var(--theme-color);
}



/* =========================================
   TABLE OUTER BOX
========================================= */

.microtome-table-wrapper {
    position: relative;

    width: 100%;

    overflow-x: auto;

    border: 1px solid #dbe5ef;
    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 15px 45px rgba(16, 42, 67, 0.08);

    scrollbar-width: thin;
    scrollbar-color: #0b5fd4 #edf2f7;
}


/* =========================================
   TABLE
========================================= */

.microtome-table {
    width: 100%;

    min-width: 850px;

    border-collapse: separate;
    border-spacing: 0;

    table-layout: fixed;

    background: #ffffff;
}


/* COLUMN WIDTH */

.microtome-table col.label-column {
    width: 24%;
}

.microtome-table col.product-column {
    width: 25.33%;
}


/* =========================================
   TABLE HEADER
========================================= */

.microtome-table th {
    position: relative;

    height: 62px;

    padding: 15px;

    vertical-align: middle;
    text-align: center;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    background: #102a43;

    border-right: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 3px solid #0b5fd4;
}

.microtome-table th:first-child {
    text-align: left;
}

.microtome-table th:last-child {
    border-right: none;
}


/* MODEL HEADER */

.microtome-table th .model-name {
    display: inline-block;

    font-size: 17px;
    letter-spacing: 0.3px;
}


/* =========================================
   TABLE CELLS
========================================= */

.microtome-table td {
    padding: 17px 16px;

    vertical-align: top;
    text-align: left;

    font-size: 13px;
    line-height: 1.6;

    color: #344054;

    background: #ffffff;

    border-right: 1px solid #e1e8ef;
    border-bottom: 1px solid #e1e8ef;

    transition: background 0.25s ease;
}

.microtome-table td:last-child {
    border-right: none;
}


/* ROW HOVER */

.microtome-table tbody tr:hover td {
    background: #f5f9ff;
}


/* =========================================
   LABEL COLUMN
========================================= */

.microtome-table td.label {
    position: relative;

    font-size: 13px;
    font-weight: 700;

    color: #102a43;

    background: #f7faff;
}

.microtome-table td.label::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 3px;
    height: 100%;

    background: #0b5fd4;

    opacity: 0;

    transition: opacity 0.25s ease;
}

.microtome-table tbody tr:hover td.label::before {
    opacity: 1;
}


/* =========================================
   SECTION TITLE
========================================= */

.microtome-table .section-title {
    display: block;

    color: #0b5fd4;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.4;
}


/* =========================================
   RANGE CONTENT
========================================= */

.microtome-table .range-content {
    font-size: 11px;
    line-height: 1.6;

    color: #667085;
}

.microtome-table .range-intro {
    margin-bottom: 9px;
}

.microtome-table .range-item {
    margin-bottom: 9px;
}

.microtome-table .range-item:last-child {
    margin-bottom: 0;
}


/* =========================================
   NORMAL TEXT
========================================= */

.microtome-table .normal-text {
    font-size: 13px;
    line-height: 1.55;
    color: #475467;
}


/* =========================================
   LIST
========================================= */

.microtome-table ul {
    margin: 0;
    padding-left: 18px;
}

.microtome-table li {
    margin: 0 0 9px;
    padding-left: 2px;

    color: #475467;
}

.microtome-table li:last-child {
    margin-bottom: 0;
}


/* =========================================
   ACCESSORIES
========================================= */

.microtome-table .accessories {
    font-size: 11px;
    line-height: 1.55;
    color: #667085;
}


/* =========================================
   SPECIAL HIGHLIGHT
========================================= */

.microtome-table td.highlight {
    background: #f1f7ff;
}

.microtome-table td.highlight strong {
    color: #0b5fd4;
}


/* =========================================
   LAST ROW
========================================= */

.microtome-table tbody tr:last-child td {
    border-bottom: none;
}


/* =========================================
   SCROLLBAR
========================================= */

.microtome-table-wrapper::-webkit-scrollbar {
    height: 7px;
}

.microtome-table-wrapper::-webkit-scrollbar-track {
    background: #edf2f7;
}

.microtome-table-wrapper::-webkit-scrollbar-thumb {
    background: #0b5fd4;
    border-radius: 10px;
}

/* =========================================
   MICRON TRUST SECTION
========================================= */

.micron-trust-section {
    position: relative;
    padding: 80px 30px;
    background: #f7faff;
    overflow: hidden;
}


/* Decorative Circle */

.micron-trust-section::before {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -120px;
    top: -100px;

    border-radius: 50%;

    background: rgba(11, 95, 212, 0.05);
}


/* =========================================
   CONTENT
========================================= */

.micron-trust-content {
    max-width: 570px;
    position: relative;
    z-index: 2;
}

.micron-trust-subtitle {
    display: inline-block;

    margin-bottom: 12px;

    font-size: 13px;
    font-weight: 700;

    color: #0b5fd4;

    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.micron-trust-content h2 {
    margin: 0 0 18px;

    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;

    color: #102a43;
}

.micron-trust-content h2  strong{
    color: var(--theme-color);
font-weight: 700;
}

.micron-trust-content p {
    margin: 0;

    font-size: 16px;
    line-height: 1.75;

    color: #667085;
}


/* =========================================
   IMAGE
========================================= */

.micron-trust-image {
    position: relative;

    width: 100%;
    min-height: 400px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #dce6f0;
    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(16, 42, 67, 0.08);

    overflow: hidden;
}

.micron-trust-image img {
    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 500px;
    height: auto;

    display: block;

    object-fit: contain;

    transition: transform 0.5s ease;
}

.micron-trust-image:hover img {
    transform: scale(1.04);
}

/*  */
/* =========================================
   PREMIUM STATS SECTION
========================================= */

.stats-section {
    position: relative;

    padding: 70px 20px;

    background: linear-gradient(135deg,
            #071d35 0%,
            #0b3157 55%,
            #0b5fd4 100%);

    overflow: hidden;
}


/* Decorative circles */

.stats-section::before {
    content: "";

    position: absolute;

    width: 320px;
    height: 320px;

    left: -150px;
    top: -160px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}

.stats-section::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -130px;
    bottom: -150px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 50%;
}


/* =========================================
   STATS BOX
========================================= */

.stats-box {
    position: relative;
    z-index: 2;

    max-width: 1100px;

    margin: 0 auto;

    display: flex;
    align-items: stretch;
    justify-content: center;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.18);

    border-radius: 22px;

    padding: 10px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.20);
}


/* =========================================
   STAT ITEM
========================================= */

.stat-item {
    width: 33.333%;

    position: relative;

    padding: 35px 25px;

    text-align: center;

    border-radius: 16px;

    transition: all 0.35s ease;
}


/* Vertical divider */

.stat-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 20%;

    width: 1px;
    height: 60%;

    background: rgba(255, 255, 255, 0.20);
}


/* Hover */

.stat-item:hover {
    background: rgba(255, 255, 255, 0.08);

    transform: translateY(-4px);
}


/* =========================================
   NUMBER
========================================= */

.stat-item h2 {
    margin: 0 0 8px;

    color: #ffffff;

    font-size: 48px;
    line-height: 1;

    font-weight: 800;

    letter-spacing: -1px;
}

.stat-item h2 span {
    color: #8ec5ff;

    font-size: 30px;

    margin-left: 2px;
}


/* =========================================
   LABEL
========================================= */

.stat-item p {
    margin: 0;

    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;

    line-height: 1.5;

    font-weight: 500;

    letter-spacing: 0.3px;
}

/* =========================
   DOT PATTERN
========================= */

.dot-pattern {
    max-width: 67%;
    height: 152px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(18, 1fr);
    grid-auto-rows: 27px;
    align-items: center;
    justify-items: center;
}

.dot-pattern span {
    width: 5px;
    height: 5px;
    background: #9747ff;
    border-radius: 50%;
}


/* =========================
   TESTIMONIAL
========================= */

.testimonial-section {
    width: 100%;
    padding: 70px 15px;
    background: #f7faff;
    position: relative;
    overflow: hidden;
}


/* Decorative Background */

.testimonial-section::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    left: -130px;
    top: 20px;

    border-radius: 50%;

    background: rgba(11, 95, 212, 0.05);
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 850px;

    min-height: 230px;

    margin: 0 auto;

    padding: 55px 70px 35px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #dce6f0;
    border-radius: 20px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 12px 40px rgba(16, 42, 67, 0.08);

    transition: all 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);

    border-color: rgba(11, 95, 212, 0.35);

    box-shadow:
        0 20px 50px rgba(11, 95, 212, 0.12);
}


/* =========================================
   QUOTE ICON
========================================= */

.quote-icon {
    position: absolute !important;
    top: -6px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50%;
    /* background: #0b5fd4; */
    color: #0b51ae;
    font-family: Georgia, serif;
    font-size: 77px;
    font-weight: 700;
    line-height: 1;
    border: 6px solid #f7faff;
    box-sizing: border-box;
    z-index: 10;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-text {
    max-width: 700px;

    margin: 0;

    color: #344054;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;
    line-height: 1.75;

    font-weight: 400;
}


/* =========================================
   AUTHOR
========================================= */

.testimonial-card h4 {
    margin: 20px 0 3px;

    color: #102a43;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    font-weight: 700;
}

.testimonial-card>span {
    margin-top: 2px;

    color: #0b5fd4;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 0.3px;
}


/* =========================================
   SMALL ACCENT LINE
========================================= */

.testimonial-card>span::before {
    content: "";

    display: inline-block;

    width: 25px;
    height: 1px;

    margin-right: 8px;

    vertical-align: middle;

    background: #0b5fd4;
}

.testimonial-card>span::after {
    content: "";

    display: inline-block;

    width: 25px;
    height: 1px;

    margin-left: 8px;

    vertical-align: middle;

    background: #0b5fd4;
}

/* =========================================
   MICRON PREMIUM CTA SECTION
========================================= */

.cta-section {
    position: relative;
    width: 100%;
    padding: 75px 20px;
    text-align: center;

    background: linear-gradient(135deg,
            #eef6ff 0%,
            #ffffff 48%,
            #f4f9ff 100%);

    border-top: 1px solid #e3edf7;
    border-bottom: 1px solid #e3edf7;

    overflow: hidden;
}


/* =========================================
   CTA INNER CONTENT
========================================= */

.cta-section h2 {
    position: relative;
    z-index: 2;

    max-width: 750px;

    margin: 0 auto 15px;

    color: #102a43;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 36px;
    line-height: 1.25;

    font-weight: 700;
}

.cta-section h2 strong{
   color: var(--theme-color);
   font-weight: 700;
}

/* Accent */

.cta-section h2::after {
    content: "";

    display: block;

    width: 55px;
    height: 4px;

    margin: 15px auto 0;

    border-radius: 10px;

    background: #0b5fd4;
}


/* =========================================
   CTA DESCRIPTION
========================================= */

.cta-section p {
    position: relative;
    z-index: 2;

    width: 650px;
    max-width: 100%;

    margin: 18px auto 28px;

    color: #667085;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   CTA BUTTON
========================================= */

.quote-btn {
    position: relative;
    z-index: 2;

    width: 215px;
    height: 50px;

    margin: 0 auto;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    background: #0b5fd4;

    border: 2px solid #0b5fd4;

    border-radius: 50px;

    color: #ffffff;

    text-decoration: none;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;

    box-shadow:
        0 8px 25px rgba(11, 95, 212, 0.20);

    transition: all 0.3s ease;
}

.quote-btn:hover {
    background: #ffffff;

    color: #0b5fd4;

    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(11, 95, 212, 0.15);
}
/*  */


/* =========================================
   CERTIFICATE SECTION
========================================= */

.certificate-section {
    padding: 80px 0;
    background: #f7f9fc;
    overflow: hidden;
}

.certificate-heading {
    max-width: 700px;
    margin: 0 auto 45px;
}

.certificate-subtitle {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--theme-color, #03276c);
}

.certificate-heading h2 {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
    color: #172033;
}

.certificate-heading h2 strong {
    font-weight: 700;
    color: var(--theme-color);
}

.certificate-heading p {
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #687386;
}


/* =========================================
   SLIDER
========================================= */

.certificateSwiper {
    position: relative;
    padding: 10px 5px 55px;
}

.certificateSwiper .swiper-slide {
    height: auto;
}


/* =========================================
   CERTIFICATE CARD
========================================= */

.certificate-card {
    /* height: 100%; */
    padding: 12px;
    background: var(--color-white);
    border: 1px solid #e5e9ef;
    border-radius: 14px;
    transition: all 0.35s ease;
}

.certificate-image {
    width: 100%;
    overflow: hidden;
    border-radius: 9px;
    background: #f5f6f8;
}

.certificate-image img {
    width: 100%;
    /* height: 100%; */
    display: block;
    object-fit: contain;
}


/* =========================================
   NAVIGATION BUTTONS
========================================= */

.certificate-button-prev,
.certificate-button-next {
    position: absolute;
    top: 47%;
    z-index: 10;

    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;
    border: 1px solid #e1e5eb;
    border-radius: 50%;

    color: var(--theme-color, #03276c);
    font-size: 20px;

    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.10);

    transition: all 0.3s ease;
}

.certificate-button-prev {
    left: -5px;
}

.certificate-button-next {
    right: -5px;
}

.certificate-button-prev:hover,
.certificate-button-next:hover {
    background: var(--theme-color, #03276c);
    color: #ffffff;
    border-color: var(--theme-color, #03276c);
}


/* =========================================
   PAGINATION
========================================= */

.certificate-pagination {
    bottom: 5px !important;
}

.certificate-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    opacity: 1;
    background: #cdd3dc;
    transition: all 0.3s ease;
}

.certificate-pagination .swiper-pagination-bullet-active {
    width: 25px;
    border-radius: 10px;
    background: var(--theme-color, #03276c);
}

/*  */

/* =========================================
   FOOTER
========================================= */

.footer {
    width: 100%;
    padding: 70px 0 0;
    background: var(--theme-color);
    color: #fff;
}

.footer-row {
    row-gap: 40px;
}

/* Common Heading */

.footer h3 {
    position: relative;
    margin: 0 0 30px;
    padding-bottom: 15px;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
}

.footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: var(--color-white);
    border-radius: 5px;
}

/* =========================================
   CONTACT DETAILS
========================================= */

.footer-contact {
    padding-right: 30px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.footer-contact-item > i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    color: var(--theme-color);
    border-radius: 15%;
    font-size: 17px;
}

.footer-contact-item span {
    display: block;
    margin-bottom: 4px;
    font-size: 17px;
    color: var(--color-white);
    text-transform: capitalize;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.footer-contact-item p {
    margin: 0;
    color: var(--color-white);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-item a {
    color: var(--color-white);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact-item a:hover {
    color: var(--color-white);
}

/* =========================================
   MAP
========================================= */

.footer-map {
    padding: 0 15px;
}

.map-box {
    width: 100%;
    height: 255px;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%);
}

/* =========================================
   CONTACT FORM
========================================= */

.footer-form {
    padding-left: 15px;
}

.footer-form .form-group {
    margin-bottom: 15px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    padding: 13px 16px;
    background: #1a407a;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    outline: none;
    color: #fff;
    font-size: 14px;
    transition: 0.3s ease;
}

.footer-form input {
    height: 48px;
}

.footer-form textarea {
    resize: none;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: #8d96a5;
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-color: var(--color-white);
    background: var(--theme-color);
}

.footer-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 0;
    border-radius: 6px;
    background: var(--color-white);
    color: var(--theme-color);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-form button:hover {
    background: #fff;
    color: #111827;
}

.footer-form button i {
    transition: 0.3s ease;
}

.footer-form button:hover i {
    transform: translateX(4px);
}

/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .footer-contact {
        padding-right: 0;
    }

    .footer-map {
        padding: 0;
    }

    .footer-form {
        padding-left: 0;
    }

}

@media (max-width: 767px) {

    .footer {
        padding-top: 50px;
    }

    .footer h3 {
        margin-bottom: 22px;
    }

    .footer-row {
        row-gap: 45px;
    }

    .map-box {
        height: 230px;
    }

    .footer-bottom {
        margin-top: 45px;
    }

}

/*  */
