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

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    font-family: "Poppins", sans-serif;
}

html {
    overflow-x: hidden;
}

img {
    width: 100%;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

li {
    list-style: none;
}

a {
    text-decoration: none;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



/* header page start */

.site-header {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    z-index: 9999;
    padding: 16px 0;
}

.site-header .inner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .inner-content .site-logo img {
    width: 200px;
    position: relative;
    z-index: 999;
}

.site-header .inner-content .site-menu ul {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-header .inner-content .site-menu ul li a {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
}

.submenu {
    position: relative;
    cursor: pointer;
}

.submenu>a {
    display: block;
    color: #333;
}

/* Dropdown initially hidden */
.submenu ul.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    padding: 10px 0;
    min-width: 250px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    border-radius: 5px;
    z-index: 999;
}

.submenu ul.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #333 !important;
}

.submenu ul.dropdown li a:hover {
    background: #f5f5f5 !important;
}

ul.dropdown {
    display: block !important;
}

/* SHOW ON CLICK */
.submenu.open .dropdown {
    opacity: 1;
    visibility: visible;
}


a.tel-btn {
    background: #094fcf;
    padding: 0 20px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    border-radius: 5px;
}


/* header page end*/


.banner-slider {
    width: 100%;
}


/* FORM RIGHT COLUMN */
.banner-slider .right-col {
    display: flex;
    justify-content: flex-end;
}


.banner-slider .col.center-col {
    position: relative;
}

.banner-slider .hero-btn {
    box-shadow: 0px 8px 16px -8px rgba(56, 125, 255, 0.5);
    z-index: 10;
    background: #094fcf;
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.banner-slider .contact-form {
    width: 100%;
    max-width: 350px;
    background: #fff;
    box-shadow: 0px 0px 25px #0004;
    border-radius: 12px;
    overflow: hidden;
}

.banner-slider .contact-form .top-bar {
    background: #094fcf;
    padding: 18px 0;
}

.banner-slider .contact-form .bottom-bar {
    padding: 30px 20px;
}

.banner-slider .contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}


.banner-slider .contact-form input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    color: #111;
    font-size: 16px;
    background: #FAFAFA;
    outline: none;
    border-radius: 5px;
}

.banner-slider .contact-form input::placeholder {
    color: #111;
    font-size: 16px;
    opacity: 0.5;
}


.banner-slider .contact-form button {
    width: 100%;
    background: #0056d6;
    color: #fff;
    padding: 12px;
    border: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}





/* MISSING CORE SLIDER CSS (ADDING BACK) */
.banner-slider .hero-slider {
    position: relative;
    width: 100%;
    /* height: 90vh; */
    overflow: hidden;
    padding: 200px 0;
}


.banner-slider .hero-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #094fcf4a;
    z-index: 5;
}


.banner-slider .slides {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


.banner-slider .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: 1.5s ease-in-out;
}


.banner-slider .slide.active {
    opacity: 1;
}


/* 3 COLUMN GRID FIX */
.banner-slider .content-row {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 25% calc(75% - 300px) 300px;
    align-items: center;
    height: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ★ FIX — text slide fade animation */
.banner-slider .text-slides .text-slide {
    opacity: 0;
    transition: 1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
}

.banner-slider .text-slides .text-slide.active {
    opacity: 1;
    /* height: auto; */
    /* margin-bottom: 40px; */
    position: absolute;
    top: 0;
    left: 0;

}

.banner-slider .text-slides {
    height: 200px;
    margin-bottom: 40px;
}


.banner-slider .text-slide h1 {
    font-size: 39px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    max-width: 400px;
    max-width: 602px;
}


.banner-slider .dft-btn-book {
    display: flex;
    justify-content: center;
}



.Services-section {
    background: #fff;
    width: 100%;
    position: relative;
}

.Services-section .main-row {
    position: relative;
    top: -100px;
    z-index: 99;
}


.Services-section .inner-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px;
    /* max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px; */
}

.Services-section .inner-content .content-box-001 {
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    height: 100%;

}

.Services-section .inner-content .content-box-001 .top-box {
    background: #094fcf;
    padding: 14px 0;
}


.Services-section .inner-content .content-box-001 .top-box h2 {
    color: #fff;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}

.Services-section .inner-content .content-box-001 .content-wrap {
    padding: 20px 15px;
}

.Services-section .inner-content .content-box-001 .content-wrap p {
    color: #5a5a5a;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 30px;
}


.Services-section .inner-content .content-box-001 .content-wrap .dft-btn {
    display: flex;
    justify-self: center;
}


.Services-section .inner-content .content-box-001 .content-wrap .dft-btn a {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #094fcf;
    padding: 0 20px;
    text-transform: capitalize;
}




.welcome-section {
    width: 100%;
    background: #fff;
    padding: 0px 0 100px 0;
}

.welcome-section .inner-content {
    display: grid;
    grid-template-columns: 65% calc(35% - 30px);
    grid-gap: 30px;
}

.welcome-section .inner-content .left-wrap .content-wrap {
    background: #fff;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.welcome-section .inner-content .left-wrap .content-wrap .top-bar {
    background: #094fcf;
    padding: 14px 0;
}

.welcome-section .inner-content .left-wrap .content-wrap .top-bar h2 {
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar {
    padding: 20px 20px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar h3 {
    color: #094fcf;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
}


.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar p {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 18px;
}


.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row {
    display: grid;
    grid-template-columns: 60% 40%;
    margin-top: 60px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data .left-col {
    display: grid;
    gap: 20px;
    grid-template-columns: 60px calc(100% - 60px);
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data {
    margin-bottom: 60px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data:last-child {
    margin: 0;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data .left-col .img-box-001 {
    background: #387dff14;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #094fcf;
    font-size: 22px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data .left-col .text-001 h4 {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .min-col-data .left-col .text-001 p {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400;
    list-style: 30px;
    margin-bottom: 0;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .right-box-data .img-box-002 {
    display: flex;
    justify-content: center;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .right-box-data img {
    border-radius: 0px 0px 200px 200px;
    box-shadow: 16px 24px 80px -24px rgba(0, 0, 0, 0.16);
    width: 57%;
}



.welcome-section .testimonial-wrapper {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    height: 100%;
}

.welcome-section .testimonial-wrapper .title {
    background: #094fcf;
    padding: 14px 0;
    margin: 0;
    border-radius: 12px 12px 0 0;
    color: #fff;
    text-align: center;
    font-size: 30px;
    font-weight: 600;
}

.welcome-section .testimonial-wrapper .box {
    text-align: center;
    padding: 50px 20px;
}

.welcome-section .testimonial-wrapper .quote {
    font-style: italic;
    line-height: 35px;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
}

.welcome-section .testimonial-wrapper .stars {
    font-size: 28px;
    color: #fc0;
}

.welcome-section .testimonial-wrapper .name {
    color: #094fcf;
    margin-top: 10px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.welcome-section .testimonial-wrapper .role {
    color: #ba1b1b;
    font-size: 20px;
    font-weight: 600;
}




.schedule-section{
    background: #094fcf;
    padding: 100px 0;
    width: 100%;
}

.schedule-section .inner-content{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
   max-width: 1010px;
    margin: 0 auto;
}




.schedule-section .inner-content .left-wrap h2{
    color: #fff;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 24px;
}

.schedule-section .inner-content .left-wrap p{
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 44px;
    line-height: 36px;
}

.schedule-section .inner-content .left-wrap h6{
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
}

.schedule-section .inner-content .left-wrap a{
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

.schedule-section .inner-content .right-wrap{
  padding: 0 0 100px 0;
    position: relative;
    display: flex;
    justify-content: center;
}

.schedule-section .inner-content .right-wrap::after {
    content: " ";
    background-image: url(../images/dots.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 70%;
    height: 66%;
    position: absolute;
    bottom: 0;
    right: 0;
}

.schedule-section .inner-content .right-wrap .form-box{
    width: 320px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.1);
    padding: 40px 20px;
    max-width: 400px;
    position: relative;
    z-index: 1;
}

.schedule-section .inner-content .right-wrap .form-box .row-wrapper{
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 20px;
}

.schedule-section .inner-content .right-wrap .form-box .row-wrapper input{
    background: #FAFAFA;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    border: none;
    outline: none;
    height: 40px;
    width: 100%;
}


.schedule-section .inner-content .right-wrap .form-box .row-wrapper button{
    background: #094fcf;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: none;
    outline: none;
    height: 48px;
    border-radius: 5px;
}



.contact-section {
    padding: 100px 0;
    width: 100%;
    background: #fff;
}

.contact-section .top-content h2{
color: #1a1a1a;
font-size: 40px;
font-weight: 600;
margin-bottom: 24px;
text-align: center;
}

.contact-section .top-content p{
color: #1a1a1a;
font-size: 18px;
font-weight: 600;
margin-bottom: 24px;
text-align: center;
}

.contact-section .top-content h5{
color: #465b8d;
font-size: 24px;
font-weight: 600;
margin-bottom: 44px;
text-align: center;
}


.contact-section .inner-content .top-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 24px;
    background: #0e2cc2;
    padding: 40px 30px;
}

.contact-section .inner-content .top-row .col-wrapper{
     display: grid;
    grid-template-columns: 60px calc(100% - 60px - 24px);
    grid-gap: 24px;
}

.contact-section .inner-content .top-row .col-wrapper .img-box{
    background: #ffffff29;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    border-radius: 100%;

}


.contact-section .inner-content .top-row .col-wrapper .content-data h4{
font-size: 22px;
font-weight: 600;
color: #fff;
margin-bottom: 14px;
}

.contact-section .inner-content .top-row .col-wrapper .content-data p{
font-size: 16px;
font-weight: 400;
color: #d2e2ff;
margin-bottom: 10px;
}

.contact-section .inner-content{
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.contact-section .inner-content .bottom-row{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact-section .inner-content .bottom-row .form-box{
    padding: 50px 30px;
}

.contact-section .inner-content .bottom-row .form-box h3{
    font-size: 24px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 30px;
}

.contact-section .inner-content .bottom-row .form-box .row-wrapper{
    display: grid;
    grid-template-columns: 100%;
    grid-gap: 30px;
}

.contact-section .inner-content .bottom-row .form-box .row-wrapper input{
    background: #FAFAFA;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    border: none;
    outline: none;
    height: 40px;
    width: 100%;
}

.contact-section .inner-content .bottom-row .form-box .row-wrapper input::placeholder{
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
}

.contact-section .inner-content .bottom-row .form-box .row-wrapper textarea{
    background: #FAFAFA;
    padding: 20px 15px;
    font-size: 16px;
    font-weight: 400;
    color: #4a4a4a;
    border: none;
    outline: none;
    height: 180px;
    width: 100%;
}


.contact-section .inner-content .bottom-row .form-box .row-wrapper button{
    background: #094fcf;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    border: none;
    outline: none;
    height: 48px;
    border-radius: 5px;
}

.contact-section .inner-content .bottom-row  .right-wrapper .map-box{
    height: 100%;
}

.contact-section .inner-content .bottom-row .right-wrapper .map-box iframe{
    width: 100%;
    height: 100%;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    height: 40px;
    width: 40px;
    color: #fff;
    font-size: 22px;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul li:nth-child(1) a{
    background: #3b5998;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul li:nth-child(2) a{
    background: #dd4b39;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul li:nth-child(3) a{
    background: #1da1f2;
}

.contact-section .inner-content .bottom-row .form-box .icon-box ul li:nth-child(4) a{
    background: #cd201f;
}


/* home page start */









/* Dental Plan start */

.hero-section {
    background-image: url('/frontend/assets/images/doctors-shaking-hands-with-each-other.jpg');
    background-size: cover;
    background-position: center center;
    padding: 100px 0;
    color: white;
    text-align: center;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #094fcf4a;
    z-index: 5;
}

.hero-section .hero-title {
    font-size: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 1.6px;
    margin-bottom: 50px;
    background-color: rgba(76, 75, 112, 0.8);
    display: block;
    padding: 10px 15px;
    border-radius: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}




.benefits-container {
   display: grid;
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    position: relative;
    z-index: 9;
    align-items: center;
}


.apply-section {
   width: 100%;
    background: linear-gradient(#13276A, #3A487E);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.check-icon {
    color: #fff;
    font-size: 40px;
    margin-right: 15px;
    flex-shrink: 0;
}

.benefit-text {
    color: #fff;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.apply-title {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
    background: linear-gradient(#13276A, #13276A);
    padding: 10px 0;
}



/* Form Styles */
.contact-form {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #13276A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #13276A;
    box-shadow: 0 0 5px rgba(19, 39, 106, 0.3);
}

.submit-btn {
    background: linear-gradient(to right, #13276A, #3A487E);
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(to right, #3A487E, #13276A);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
.section-title {
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(#B6FFFC, #B6FFFC);
    padding: 9px;
    margin: 10px 0;
    border-radius: 5px;
}

.section-blue {
    background-color: #13276A;
    padding: 15px 0;
    margin: 20px 0;
}

.why-choose{
    width: 100%;
    background: #fff;
}



.content-section {
   display: grid;
    margin: 40px 0;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
}

.text-content {
    padding: 30px;
    background-color: #13276A;
    border-radius: 15px;
    color: white;
}


.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}



.sub-title {
    color: #B6FFFC;
    font-size: 24px;
    margin-bottom: 15px;
}

.sub-title-white {
    color: white;
    font-size: 24px;
    margin-bottom: 15px;
}

.sub-title-lightblue {
    color: #B6FFFC;
    font-size: 24px;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.benefit-grid-item {
    display: flex;
    align-items: center;
    color: #FCFF00;
}

.benefit-grid-item i {
    margin-right: 10px;
    font-size: 16px;
}

/* Pricing Plans */
.plans-section {
    margin: 40px 0;
}

.plans-container {
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
    max-width: 900px;
    margin: 30px auto 0px;
}

.plan-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-header {
    background: linear-gradient(to right, #13276A, #3A487E);
    color: white;
    padding: 20px;
    text-align: center;
    flex-shrink: 0;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 15px;
}

.price-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 5px;
    margin-bottom: 10px;
}

.price-toggle-btn {
    background: none;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.price-toggle-btn.active {
    background: white;
    color: #13276A;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

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

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B6B;
    color: white;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    z-index: 1;
}

.plan-features {
    padding: 25px;
    flex-grow: 1;
}

.plan-feature {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.plan-feature i {
    color: #195E27;
    margin-right: 10px;
}

.plan-services {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.service-item:last-child {
    border-bottom: none;
}

.service-name {
    color: #555;
    flex: 1;
}

.service-price {
    color: #13276A;
    font-weight: 600;
    text-align: right;
    min-width: 120px;
}

.service-price .original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 12px;
    margin-right: 5px;
}

.service-price .discounted-price {
    color: #e74c3c;
    font-weight: 700;
}

.service-count {
    text-align: center;
    margin: 10px 0;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

.show-more-btn {
    background: none;
    border: 2px solid #13276A;
    color: #13276A;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 10px;
    width: 100%;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: #13276A;
    color: white;
}

.plan-button {
    display: block;
    background: linear-gradient(to right, #13276A, #3A487E);
    color: white;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 0 0 10px 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.plan-button:hover {
    background: linear-gradient(to right, #3A487E, #13276A);
    letter-spacing: 1px;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #13276A;
}

.modal-title {
    font-size: 24px;
    color: #13276A;
    font-weight: 700;
}

.close-modal {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #13276A;
}

.modal-services-list {
    margin-top: 20px;
}

.modal-service-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.modal-service-item:last-child {
    border-bottom: none;
}

.modal-service-name {
    flex: 1;
    color: #333;
}

.modal-service-price {
    min-width: 150px;
    text-align: right;
}

.modal-price-comparison {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.modal-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 14px;
}

.modal-discounted-price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 16px;
}

.modal-savings {
    color: #27ae60;
    font-size: 12px;
    margin-top: 2px;
}

/* Testimonial */
.testimonial-section {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 20px;
    margin: 40px auto;
    width: 60%;
}



.testimonial-image {
    flex: 0 0 21.679%;
    margin-right: 30px;
}

.testimonial-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
}

.testimonial-text {
    flex: 0 0 40.896%;
    font-size: 18px;
    line-height: 29px;
    font-style: italic;
    color: #333;
    text-align: left;
}



/* Dental Plan end */



.site-footer .top-footer{
    background: #0e2cc2;
    padding: 50px 0;
    width: 100%;
}

.site-footer .top-footer .row-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-footer .top-footer .row-wrapper .site-logo-box img{
    width: 200px;
}

.site-footer .top-footer .row-wrapper .icon-box-002 ul{
    display: flex;
    align-items: center;
    gap: 20px;
}

.site-footer .top-footer .row-wrapper .icon-box-002 ul li a{
    color: #fff;
    font-size: 24px;
}


.site-footer .bottom-footer{
    background: #0c2398;
    padding: 50px 0;
}

.site-footer .bottom-footer .text-box-001 p{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
     text-align: center;
}

.site-footer .bottom-footer .text-box-001 a{
    color: #fff;
    font-size: 16px;
    font-weight: 400;
}





















@media (max-width:1024px) {
    .site-menu {
    position: fixed;
        left: -100%;
        background: #0c2398;
        width: 100%;
        top: 0px;
        height: 100vh;
        padding: 20px;
        transition: 0.5s;
        max-width: 300px;
}

 .site-menu.active{
    left: 0;
 }

.site-header .inner-content .site-menu ul {
    display: block;
    align-items: center;
    gap: 24px;
    margin-top: 70px;
}

.site-header .inner-content .site-menu ul li{
    margin: 0 0 16px;
}

.site-header .inner-content .site-menu ul li:last-child{
    margin: 0;
}

.site-header .menu-bar i{
    font-size: 24px;
    color: #fff;
}
ul.dropdown {
    margin: 0 !important;
}


}






@media (max-width:767px){
    .banner-slider .hero-slider {
    padding: 100px 0;
}

.banner-slider .content-row {
    grid-template-columns: 100%;
}

.banner-slider .text-slide h1 {
    font-size: 30px;
}

.banner-slider .text-slides {
    height: 130px;
    margin-bottom: 40px;
}

.banner-slider .right-col {
    margin-top: 24px;
}

.banner-slider .contact-form h3 {
    font-size: 22px;
}

.Services-section .inner-content {
    grid-template-columns: 1fr;
    grid-gap: 30px;
}

.Services-section .main-row {
    top: 0px;
    padding: 30px 0;
}

.Services-section .inner-content .content-box-001 .content-wrap p {
    font-size: 16px;
}

.Services-section .inner-content .content-box-001 .content-wrap .dft-btn {
    display: flex;
    justify-self: center;
    width: 100%;
}

.Services-section .inner-content .content-box-001 .content-wrap .dft-btn a {
    font-size: 22px;
    width: 100%;
}

.Services-section .inner-content .content-box-001 .top-box h2 {
    font-size: 22px;
}


.welcome-section {
    padding: 0px 0 30px 0;
}

.welcome-section .inner-content {
    grid-template-columns: 100%;
}

.welcome-section .inner-content .left-wrap .content-wrap .top-bar h2 {
    font-size: 24px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar h3 {
    font-size: 20px;
    line-height: 26px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar p {
    line-height: 24px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row {
    display: grid;
    grid-template-columns: 100%;
    margin-top: 60px;
}

.welcome-section .inner-content .left-wrap .content-wrap .bottom-bar .list-row .right-box-data .img-box-002 {
    margin-top: 24px;
}

.welcome-section .testimonial-wrapper .title {
    font-size: 24px;
}



.schedule-section {
    padding: 50px 0;
}


.schedule-section .inner-content {
    grid-template-columns: 100%;
}


.schedule-section .inner-content .left-wrap h2 {
    font-size: 28px;
}


.schedule-section .inner-content .left-wrap p {
    font-size: 17px;
    line-height: 32px;
}


.schedule-section .inner-content .left-wrap a {
    font-size: 22px;
}

.schedule-section .inner-content .right-wrap {
    padding: 0 0 60px 0;
}

.schedule-section .inner-content .right-wrap::after {
    width: 70%;
    height: 64%;
}

.contact-section {
    padding: 50px 0;
}

.contact-section .top-content h2 {
    font-size: 30px;
}

.contact-section .top-content p {
    line-height: 24px;
    font-size: 16px;
}


.contact-section .inner-content .top-row {
    grid-template-columns: 100%;
    grid-gap: 14px;
}

.contact-section .inner-content .top-row .col-wrapper .content-data h4 {
    font-size: 20px;
}

.contact-section .inner-content .top-row .col-wrapper .content-data p {
    font-size: 14px;
    font-weight: 400;
    color: #d2e2ff;
    margin-bottom: 8px;
}

.contact-section .inner-content .bottom-row {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.contact-section .inner-content .bottom-row .form-box {
    padding: 30px 20px;
}

.contact-section .inner-content .bottom-row .form-box .row-wrapper textarea {
    height: 100px;
}



/* start dantal page */

.hero-section {
    padding: 100px 0 50px 0;
}

.hero-section .hero-title {
    font-size: 30px;
}

.benefits-container {
    margin-top: 0px;
    grid-template-columns: 100%;
    grid-gap: 30px;
}

.benefits-container .apply-section {
    padding: 30px 15px;
}

.benefits-container .form-group label {
    text-align: left;
}


.benefits-container .contact-form {
    padding: 25px 10px;

}


.content-section {
    grid-template-columns: 100%;
    grid-gap: 30px;
}


.plans-container {
    grid-template-columns: 100%;
}


.testimonial-section {
    width: 100%;
    display: block;
}

.testimonial-image {
    margin-right: 0;
}





.site-footer .top-footer {
    padding: 30px 0;
}

.site-footer .top-footer .row-wrapper {
    display: grid;
    grid-gap: 20px;
}

.site-footer .bottom-footer {
    padding: 30px 0;
}

.site-footer .bottom-footer .text-box-001 p {
    font-size: 16px;
    line-height: 24px;
}

}




@media (min-width:768px) and (max-width:1024px){
    .banner-slider .content-row {
    grid-template-columns: 0% calc(100% - 300px) 300px;
}

.Services-section .inner-content {
    grid-template-columns: 1fr 1fr;
}

.welcome-section .inner-content {
    grid-template-columns: 55% calc(45% - 30px);
}
}



@media (min-width:1025px){
    .menu-bar{
        display: none;
    }
}