*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
ul,figure{
    margin-bottom: 0px !important;
}
/*-----------
 start header 
 ----------- */
header{
    padding: 3px 0px;
    background-color: #1b4965;
}
header .header-inner ul li a , .sm-sec a{
    transition: 0.3s;
}
header .header-inner ul li:hover a , header .header-inner .sm-sec a:hover{
    color: #38a3a5 !important;
}
/*---------------
 start navigation 
--------------- */
nav{
    padding: 10px ;
    /* background-color: #2ec4b6; */
    background-color: #002e96c4;
    position: sticky;
    z-index: 990;
    top: 0;
}
nav .navigation .navlist a{
    position: relative;
    transition: 0.3s;
    font-weight: 500;
}
nav .navigation .navlist a:hover{
   color: #d1d4dd !important;
}
.drop-down span{
   font-weight: 500;
   cursor: pointer;
}
.drop-down-list{
    position: absolute;
    padding: 10px;
    background-color: #00a1ff;
    left: 0;
    right: -150px;
    top: 50px;
    z-index: 5;
    list-style-type: none;
    display: none;
    transition: 0.3s;
    transform: scaleY(0);
}
.show-now{
    display: block !important;
    transform: scaleY(1);
}
/* start about index page  */
.subheading h2{
    font-weight: bold;
    color: #00a1ff;
}
.aboutindex-bx .aboutindex-inner figure img{
    border-radius: 46% 54% 55% 45% / 46% 49% 51% 54%  ;
}
.aboutindex-bx .aboutindex-inner{
    text-align: justify;
    font-size: 18px;
}
.aboutindex-bx .aboutindex-inner .ab-bx h2{
    margin-bottom: 0px !important;
}
.aboutindex-bx .aboutindex-inner .ab-bx .bx{
    background-color: #EFF5F9;
    
}
.aboutindex-bx .aboutindex-inner .ab-bx .bx i{
   color: #13C5DD;
}
.aboutindex-bx .aboutindex-inner .ab-bx .bx:nth-child(1){
    color: #13C5DD;
}

/*------------
 start services 
-------------- */
.Services-index{
    background-color: #EFF5F9;
    transition: 0.3s;
}
.Services-index .Services-index-inner .ser-crd{
    padding: 10px;
    background-color: #002e96c4;
    border-radius: 10px;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0px 2px 8px #00000094;
    cursor: pointer;
}
.Services-index .Services-index-inner .ser-crd img{
    border-radius: 200px;
    border: 3px solid white;
    transition: 0.3s;
}
.Services-index .Services-index-inner .ser-crd:hover img{
    border-radius: 10px;
}
.find-doctor{
    background-color: #c8d5ff;
}
/* start doctor page  */
.docbx-Index .docbx-inner .docbx-bx{
    border-radius: 10px;
    border: 1px solid #00000030;
    background-color: #EFF5F9;
    padding: 15px;
    box-shadow: 0px 2px 2px #0000001f;
}
.slick-slide {
    margin: 0px 20px;
}
.slide{
    display: flex !important;
}
.slick-slide figure {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.slick-slider
{
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
            user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;
    display: block;
}
.slick-track:before,
.slick-track:after
{
    display: table;
    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;
    height: auto;
    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

/*---------------------
 start appointment form 
-------------------- */
.appointment-bg{
    background-color: #2a52a6;
}
.form-container {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin: 2rem auto;
}

.form-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.form-header h2 {
    margin: 0;
    font-weight: 600;
}

.form-body {
    padding: 2rem;
}

.form-control, .form-select {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 1.25rem;
    border: 1px solid #ced4da;
}

.form-control:focus, .form-select:focus {
    border-color: rebeccapurple;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
    background-color: #5fa8d3 !important;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    color: #fff !important;
    width: 100%;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: #157347;
    transform: translateY(-2px);
}

.logo-container {
    text-align: center;
    margin-bottom: 1.5rem;
}

.logo-container img {
    max-height: 80px;
}

.info-section {
    background-color: blue;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

/*-----------------
 start gallery box 
----------------- */
.gallery-bx .gallery-bx-inner figure{
   padding: 10px;
   border-radius: 10px;
   border: 1px solid #80808063;
   background-color: #efefef;
}
.gallery-bx .gallery-bx-inner figure img{
    border-radius: 10px !important;
}
.video-bx .video-bx-inner .vid-bx{
    padding: 5px 5px 3px 5px;
    border-radius: 10px;
    border: 1px solid #80808063;
    background-color: #efefef;
}
.video-bx .video-bx-inner iframe{
    border-radius: 10px;
}
/* -------------
 start Contact
-------------- */
.contact-bx{
    background-color: #EFF5F9;
}
.contact-container {
    max-width: 1000px;
    margin: 2rem auto;
}
.contact-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}
.contact-header {
    background: linear-gradient(135deg, #1a6ed8, #0b5ed7);
    color: white;
    padding: 2rem;
    text-align: center;
}
.contact-header h2 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.contact-header p {
    opacity: 0.9;
    margin-bottom: 0;
}
.contact-body {
    padding: 2.5rem;
}
.form-control, .form-select, .form-textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 1.25rem;
    transition: all 0.3s;
}
.form-control:focus, .form-select:focus, .form-textarea:focus {
    border-color: #1a6ed8;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.15);
}
.form-textarea {
    min-height: 120px;
    resize: vertical;
}
.btn-submit {
    background-color: #198754 !important;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s;
}
.btn-submit:hover {
    background-color:#198754 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
}
.contact-info {
    background-color: #f5f7fa;
    padding: 2rem;
    border-radius: 15px;
    height: 100%;
}
.info-item {
    margin-bottom: 1.75rem;
}
.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(13, 110, 253, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.info-icon i {
    color: #1a6ed8;
    font-size: 1.25rem;
}
.info-content h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.info-content p {
    margin-bottom: 0;
    color: #555;
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(13, 110, 253, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a6ed8;
    transition: all 0.3s;
}
.social-link:hover {
    background-color: #1a6ed8;
    color: white;
    transform: translateY(-3px);
}
.map{
    border: 1px solid #0000002e;
    border-radius: 10px;
    padding: 10px 10px 8px 10px;
    background-color: #d7e3ff;
}
.map iframe{
    border: 1px solid #0000002e !important;
    border-radius: 10px;
}
/* ----------
start footer 
----------- */
.samadhan-footer {
    background-color: #212529;
    color: #ffffff;
    padding: 40px 0 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.footer-top {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
    max-height: 50px;
    margin-bottom: 15px;
}
.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}
.footer-title {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #1a6ed8;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
footer a{
    color: rgba(255, 255, 255, 0.7);
}
.sidefix {
    position: fixed;
    top: 500px;
    left: 0;
    z-index: 100;
}
.emergancy{
    top: 300px;
    position: fixed;
    left: 0;
    z-index: 100;
    
}
.emergancy img{
    height: 200px;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}
.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-info li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: flex-start;
}
.footer-contact-info i {
    color: #1a6ed8;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.footer-social a:hover {
    background-color: #1a6ed8;
    transform: translateY(-3px);
}
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
}
.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #1a6ed8;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}
.back-to-top.active {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background-color: #198754;
}

/* counter */
.counter-section {
    background-color: #2ec4b6;
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.counter-title {
    text-align: center;
    margin-bottom: 50px;
}
.counter-title h2 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.counter-title p {
    color: #fff;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}
.counter-box {
    text-align: center;
    padding: 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}
.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.counter-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background-color: #e9f0fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a6ed8;
    font-size: 30px;
}
.counter-number {
    font-size: 40px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}
.counter-text {
    font-size: 18px;
    color: #6c757d;
    font-weight: 500;
}


/*-----------
Indivisual Doctors Pages 
-----------------------*/
.doc-content>figure{
    border:4px solid #3c5faf !important;
}
.text-blue{
    color:#00a1ff;
}
.text-justify{
    text-align:justify;
}
.exp-icon div i{
    border:2px solid #3c5faf !important;
    border-radius:50%;
    padding:20px;
    background: gainsboro;
    font-size: 50px !important;
    color: #3c5faf;
}
.call-us{
    background-color:#3c5faf;
    color:white;
}
