:root {
    --primary-color: #02d38f;
    --secondary-color: #610202;
    --tertiary-color: #ffffff;
    --background-color: #004f4c;
    --bg-dark: #000000;
}

body {
    background: #ffffff;
}

/* ================================ */
.btn {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

/* =========hero-section=========== */
.hero-section img {
    height: 90vh;
    padding-top: 90px;
}

@media screen and (max-width: 768px) {
    .hero-section img {
        height: 70vh;
        margin-top: 20px;
        object-fit: cover;
        background-position: center right;
    }
}

@media screen and (max-width: 768px) {
    .hero-section h2 {
        /* font-size: 12px; */
        /* padding-top: 30px; */
        padding: 5px;
    }

    .hero-section p {
        /* font-size: 10px; */
        padding-top: 6px;
        padding: 5px;
    }
}

.hero-section .carousel-indicators [data-bs-target] {
    background-color: var(--primary-color);
    height: 10px;
    width: 10px;
    border-radius: 50%;
}

.hero-section .carousel-inner .carousel-item .carousel-caption {
    position: absolute;
    top: 50%;
    transform: translate(-20%, -50%);
    left: 20%;
    right: 0;
    text-align: start;
}

.hero-section .carousel-inner .carousel-item .carousel-caption .content {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 60px;
}

@media screen and (max-width: 768px) {
    .hero-section .carousel-inner .carousel-item .carousel-caption {
        position: absolute;
        top: 50%;
        transform: translate(10%, -50%);
        left: -10%;
        right: 0;
        padding-top: 10px;
        font-size: 10px;
    }

    .hero-section .carousel-inner .carousel-item .carousel-caption .content {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 35px;
    }
}

/* ==================================================== */
h1,
h2,
h3,
h4 {
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.background {
    background: var(--background-color);
    color: var(--tertiary-color);
}

/* =================================== */
.card {
    border-bottom: 2px solid var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

.card-img-top {
    height: 280px;
    object-fit: cover;
}

/* ================================ */
.list-unstyled li {
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.list-unstyled li:hover {
    background-color: #02a1d3;
    font-weight: 500;
    transform: translateX(8px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background-color 0.6s ease, transform 0.6s ease, box-shadow 0.6s ease;
    border: 2px solid var(--tertiary-color);
}
.list-unstyled li ul li:hover{
    color: var(--tertiary-color);
}

.list-unstyled i {
    color: #007bff;
    transition: all 0.6s ease;
}
.list-unstyled li:hover i{
    color: #fff;
    transition: all 0.6s ease;
}

/* =================section visiblity======== */
section {
    opacity: 0;
    position: relative;
    transform: translateY(150px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

.left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.left.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.right.visible {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

@media screen and (max-width: 768px) {
    .left {
        opacity: 0;
        transform: translateX(-2px);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .left.visible {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .right {
        opacity: 0;
        transform: translateX(2px);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }

    .right.visible {
        opacity: 1;
        transform: translateX(0);
        transition: opacity 0.9s ease, transform 0.9s ease;
    }
}

/* =================================================== */
.blogs .col-md-6 a {
    text-decoration: none;
}

.blogs .col-md-6 h5 {
    color: var(--secondary-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blogs .col-md-6 p {
    color: var(--bg-dark);
}

/* =============================================== */
.box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #fff;
    border-radius: 10px;
    border-bottom: 1px solid var(--bg-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
}

.box:hover {
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.box a {
    text-decoration: none;
    color: var(--bg-dark);
    font-weight: 600;
}

.box .icon {
    width: 50px;
    /* height: 50px; */
    background-color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-size: 20px;
    color: #fff;
    margin-right: 15px;
    padding: 15px;
}

.box .text h3 {
    font-size: 18px;
    margin: 0;
}

.box .text p {
    margin: 0;
    color: #555;
}

@media screen and (max-width: 768px) {
    .box .text p {
        font-size: 13px;
    }
}

.form-control,
.form-select {
    /*border: none;*/
    border-bottom: 1px solid var(--bg-dark);
    color: var(--bg-dark);
    padding: 10px;
    width: 100%;
    margin-bottom: 15px;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    box-shadow: none;
    border-bottom: 1px solid var(--primary-color);
}

.form-control::placeholder,
.form-select::placeholder {
    color: var(--bg-dark);
}

.form-control:hover,
.form-select:hover {
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.6s ease;
}

/* ============================================= */
.blog-side-bar {
    position: sticky;
    top: 280px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    border-radius: 10px;
    border-bottom: 2px solid var(--secondary-color);
    padding: 10px;
}

.blog-side-bar li.list-group-item {
    border: 2px solid var(--secondary-color);
    background: #000;
}

.blog-side-bar li.list-group-item:hover {
    background: var(--tertiary-color);
    transition: 0.6s ease;
}

.blog-side-bar li.list-group-item a {
    color: var(--tertiary-color);
    text-decoration: none;
    font-weight: 700;
}

.blog-side-bar li.list-group-item a:hover {
    color: var(--background-color);
    transition: 0.6s ease;
}

/* ================================ */
.contact-box {
    border-bottom: 2px solid var(--secondary-color);
    border-radius: 10px;
    transition: 0.6s ease;
}

.contact-box:hover {
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
    transition: 0.6s ease;
}

/* ============================== */
.accordion-item .accordion-button {
    color: var(--color-primary);
}

.accordian-item {
    padding-bottom: 20px;
}

.faq {
    background: var(--color-quinary);
}

/* ================================= */
.mission li,
.vission li,
.values li {
    list-style: none;
    margin-bottom: 10px;
    padding: 20px;
    background: var(--primary-color);
    transition: all 0.5s ease;
    border-radius: 10px;
}

.mission li:hover,
.vission li:hover,
.values li:hover {
    background-color: #02a1d3;
    color: var(--tertiary-color);
    transition: all 0.5s ease;
    transform: translateX(5px);
}

.insurance-sidebar {
    position: sticky;
    top: 100px;
    height: 100%;
    background-color: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 20px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
    .insurance-sidebar{
        position: unset;
        margin-bottom: 20px;
    }
}

.insurance-sidebar:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.sidebar-title h4 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.sidebar-content ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.sidebar-content ul li {
    margin-bottom: 12px;
}

.sidebar-content ul li a {
    color: var(--secondary-color);
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar-content ul li a:hover {
    background-color: var(--primary-color);
    color: #fff;
}
/* ======================= */
.note{
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
    background-color: var(--secondary-color);
    padding: 10px;
    border-radius: 4px;
  }
  label {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary-color);
  }
  .details {
    background: var(--secondary-color);
    padding: 10px;
  }