@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #14176C;
    --text-white: #ffffff;
    --text-black: #000;
    --paragraph-color: #00AEEF;
    --border-color: #14176C;
    --second-border-color: rgba(0, 0, 0, .125);
    --custom-color: #424242;
    --black-color: #000;
    --custom-bg-color: #F5FBFB;
    --bg-hover-color: #04a6e0;
    --text-hover-color: #ffffff;
    --bg-footer-color: #0B5C7B;
    --bg-form-color: #f1eeee;
    --form-bg-color: #F9F9F9;
    --bg-white: #ffffff;
    --gradient: linear-gradient(to left, #DCF3CE, #EEF6F8);
    --gradient-custom: linear-gradient(to left, #DCF3CE, #EEF6F8);
    --second-gradient: linear-gradient(to bottom, #FFFFFF, #DAE6FF);
    --second-hover-gradient: linear-gradient(to left, #FFFFFF, #DAE6FF);
    --third-gradient: linear-gradient(to right, #00AEEF, #0086c7);
    --third-hover-gradient: linear-gradient(to left, #00AEEF, #0086c7);

    /* payment bg color */
    --payment-bg-color: #DAE6FF4D;

    --font-faimily: 'DM Sans', sans-serif;
}

body {
    font-family: var(--font-faimily) !important;
}


h1 {
    font-size: 40px;
}

h2 {
    font-size: 26px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-white);
    line-height: 0;
}

p {
    padding: 0;
    color: #000;
}

a {
    text-decoration: none;
    color: var(--custom-color);
}

.text_info {
    color: var(--paragraph-color);
}

.text_heading {
    font-weight: 700;
    font-size: 28px;
    color: var(--text-color);
}

.same_heading {
    color: var(--text-color);
    font-size: 36px;
    font-weight: 600;
}

.text_custom {
    font-size: 18px;
    color: var(--custom-color);
}
.same_headings{
    color: var(--paragraph-color);
    font-size: 18px;
    font-weight: 600 !important;
}

.banner_section {
    width: 100%;
    padding: 40px 0px;
    background:
        linear-gradient(to right, rgba(195, 239, 255, 0.6), rgba(220, 243, 206, 0.6)),
        /* transparent gradient */
        url("../images/same_banner.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    border-radius: 30px;
    margin-top: 20px;
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.banner_content {
    padding-left: 40px;
}

.banner_content .benner_span {
    font-size: 20px;
    color: var(--custom-color);
    display: block;
    margin-top: 20px;
}

.banner_image {
    width: 100%;
}

.banner_image img {
    width: 100%;
}

.marketing_section {
    width: 100%;
    padding: 40px 0;
    background: var(--gradient-custom);
    border-radius: 20px;
    display: flex;
    align-items: center;
}

.banner_content_2 {
    width: 100%;
}

.marketing_list {
    margin-top: 10px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    padding: 0;
}

.marketing_list li {
    list-style: none;
    display: flex;
    gap: 5px;
    align-items: start;
    color: var(--custom-color);
    font-size: 17px;
    font-weight: 500;
}

.marketing_section_2 {
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.banner_image_2 {
    width: 100%;
}

.banner_image_2 img {
    width: 80%;
}

.category_button {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
}

.category_button a {
    text-decoration: none;
    border: 2px solid var(--border-color);
    color: var(--text-color);
    padding: 6px 30px;
    font-size: 18px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.4s ease;
}

.category_button a:hover {
    border: 2px solid var(--paragraph-color);
    color: var(--paragraph-color);
}

.category_button a.active {
    background: var(--paragraph-color);
    color: var(--text-white);
    border: 2px solid var(--paragraph-color);
}

.utility_heading {
    color: var(--text-color);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
}

.main_faq_card {
    width: 90%;
}


/* payment styling */
.payment_section {
    width: 60%;
    margin: auto;
    padding: 50px 20px;
    border-radius: 6px;
    border: 1px solid #dededd;
    background: var(--payment-bg-color);
}

.payment_heading {
    color: var(--text-color);
    font-size: 22px;
    font-weight: 600;
}

.payment_para {
    color: var(--custom-color);
    font-weight: 500;
    text-align: center;
}

.payment_boxes {
    display: flex;
    gap: 20px;
    align-items: center;
}

.payment_box {
    border: 1px solid #dededd;
    background: var(--bg-white);
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.4s ease;
    cursor: pointer;
}

.payment_box:hover {
    border: 1px solid var(--bg-hover-color);
    background: rgba(222, 222, 222, 0.30);
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.payment_box img {
    width: 110px;
}

.razorpay {
    padding: 12px 10px;
}

.payment_price {
    text-decoration: none;
    background: var(--paragraph-color);
    color: var(--text-white);
    padding: 10px 50px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
}

.payment_price:hover {
    background: var(--bg-hover-color);
    color: var(--text-white);
}

.payment_success_section {
    width: 80%;
    margin: auto;
    padding: 40px 20px;
    border-radius: 6px;
    border: 1px solid #dededd;
    background: var(--payment-bg-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.payment_success_image {
    width: 100px;
    margin-bottom: 10px;
}

.table-container {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    background: #fff;
}

.custom-table thead th {
    background-color: #f5f5f5;
    color: var(--custom-color);
    font-weight: 600;
    font-size: 16px;
    white-space: nowrap;
    padding: 16px;
}

.custom-table tbody td {
    font-size: 16px;
    font-weight: 500;
    color: var(--custom-color);
    vertical-align: middle;
    white-space: nowrap;
    padding: 16px;

}

.plan-name {
    color: var(--text-color) !important;
    font-weight: 500;
    cursor: pointer;
}

.section-title {
    color: var(--text-color);
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}
.section-title p{
    color: var(--custom-color);
}
.text_primary{
    color: var(--paragraph-color);
    font-size: 18px;
}

.highlight {
    color: #00aeef;
    font-weight: 600;
}

.policy-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #14176c;
    font-weight: 500;
    margin-bottom: 8px;
}

.policy-list li .icon {
    background: var(--paragraph-color);
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}
.policy-list li .icon img{
    width: 20px;
}

.mail_para a {
    color: var(--paragraph-color);
    text-decoration: none;
    transition: all 0.4s ease;
}

.mail_para a:hover {
    text-decoration: underline;
    color: var(--paragraph-color);
}


@media (max-width:768px) {
    .banner_section {
        flex-direction: column;
        height: 530px;
    }

    .marketing_section {
        padding: 20px 0;
        flex-direction: column;
    }

    .marketing_list {
        padding-left: 0;
    }

    .banner_content .benner_span {
        font-size: 16px;
    }

    .marketing_section_2 {
        flex-direction: column;
        justify-content: center;
        margin-top: 80px;
    }

    .payment_section {
        width: 90%;
    }

    .payment_boxes {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        align-items: start;
    }
    .text_heading {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-color);
}
}

.same_headings{
    color: var(--paragraph-color);
    font-size: 18px;
    font-weight: 600 !important;
}