body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: "bootstrap-icons";
  src: url("../Fonts/bootstrap-icons.woff") format("woff2"),
       url("../Fonts/bootstrap-icons.woff2") format("woff");
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Regular.woff2') format('woff2');
  font-weight: 400;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Medium.woff2') format('woff2');
  font-weight: 500;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts//Poppins-SemiBold.woff2') format('woff2');
  font-weight: 600;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Bold.woff2') format('woff2');
  font-weight: 700;
}
@font-face {
  font-family: 'Poppins';
  src: url('../Fonts//Poppins-ExtraBold.woff2') format('woff2');
  font-weight: 800;
}
a {
    text-decoration: none!important;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body.modal-open .header {
    padding-right: 0 !important; 
}
html {
    overflow-y: scroll;
}
body.modal-open {
    padding-right: 0 !important;
}
/*======Header Section Start======*/
.header {
    --background-color: #3d4d6a;
    --heading-color: #ffffff;
    color: #000;
    background-color: #fad04b;
    padding: 15px 0;
    transition: all .5s;
    z-index: 997
}
.header .logo {
    line-height: 1
}
.header .logo img {
    margin-top: -2px;
    padding-bottom: 8px;
    max-height: 65px;
    min-width: 200px;
    margin-right: 8px;
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.5);
    background-color: transparent;
    border-radius: 10px;
}
.header .btn-getstarted,.header .btn-getstarted:focus {
    color: #fff;
    background: #af0604;
    font-size: 14px;
    padding: 10px 10px 10px 10px;
    margin: 0 0 0 30px;
    border-radius: 50px;
}
.header .btn-getstarted:hover,.header .btn-getstarted:focus:hover {
    color: #fff;
    background: color-mix(in srgb,#af0604,transparent 15%)
}
@media (max-width: 1199px) {
    .header .logo {
        order:1
    }
    .header .btn-getstarted {
        order: 2;
       
    }
    .header .navmenu {
        order: 3
    }
}
.index-page .header {
    --background-color: rgba(255, 255, 255, 0);
    --heading-color: #ffffff;
    --nav-color: #ffffff
}
.index-page.scrolled .header {
    --background-color: rgba(40, 58, 90, .9)
}
@media (min-width: 1200px) {
    .navmenu {
        padding:0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center
    }
    .navmenu li {
        position: relative
    }
    .navmenu a,.navmenu a:focus {
        color: #000;
        padding: 18px 15px;
        font-size: 17px;
        font-family: Poppins,sans-serif;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: .3s
    }
    .navmenu a i,.navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: .3s
    }
   .navmenu li:last-child a {
        padding-right: 0
    }
    /*.navmenu li:hover>a,.navmenu .active,.navmenu .active:focus {
        color: #af0604
    }*/
.navmenu ul li a {
  position: relative;
  padding: 18px 15px;
}
/* Active */
.navmenu ul li a.active {
  color: #af0604;
}

.navmenu ul li a.active::after {
  content: "";
  position: absolute;
  left: 15%;
  bottom: 8px;
  width: 70%;
  height: 3px;
  background:#af0604;
  border-radius: 10px;
}
/* Hover state */
.navmenu li a:hover {
  color: #af0604;
}

.navmenu li a.active:focus {
  outline: none;
}
.navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: #fff;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: .3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0 0 30px #0000001a
    }
    .navmenu .dropdown ul li {
        min-width: 200px
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: #444
    }
    .navmenu .dropdown ul a i {
        font-size: 12px
    }
    .navmenu .dropdown ul a:hover,.navmenu .dropdown ul .active:hover,.navmenu .dropdown ul li:hover>a {
        color: #af0604;
    }
    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden
    }
    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible
    }
    .navmenu .megamenu {
        position: static
    }
    .navmenu .megamenu ul {
        margin: 0;
        padding: 10px;
        background: #fff;
        box-shadow: 0 0 20px #0000001a;
        position: absolute;
        top: 130%;
        left: 0;
        right: 0;
        visibility: hidden;
        opacity: 0;
        display: flex;
        transition: .3s;
        border-radius: 4px;
        z-index: 99
    }
    .navmenu .megamenu ul li {
        flex: 1
    }
    .navmenu .megamenu ul li a,.navmenu .megamenu ul li:hover>a {
        padding: 10px 20px;
        font-size: 15px;
        color: #444
    }
    .navmenu .megamenu ul li a:hover,.navmenu .megamenu ul li .active,.navmenu .megamenu ul li .active:hover {
        color: #af0604
    }
    .navmenu .megamenu:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible
    }
   .navmenu .dd-box-shadow {
        box-shadow: 0 0 30px #0000001a
    }
}
@media screen and (min-width: 340px) and (max-width: 533px) {
  .header .logo img {
    max-height: 60px;
    margin-right: 8px
  }
  .header .btn-getstarted, .header .btn-getstarted:focus {
        font-size: 7px;
        margin-left: 10px;
      
  }
}
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color:#000;
        font-size: 28px;
        line-height: 0;
        /*margin-right: 10px;*/
         margin-left: 10px;
        cursor: pointer;
        transition: color .3s
    }
    .navmenu {
        padding: 0;
        z-index: 9997
    }
    .navmenu ul {
        display: none;
        position: absolute;
        top: 60px;
        right: 20px;
        bottom: 20px;
        left: 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: #fff;
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px #0000001a
    }
    .navmenu a,.navmenu a:focus {
        color: #444;
        padding: 10px 20px;
        font-family: Poppins,sans-serif;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        white-space: nowrap;
        transition: .3s
    }
    .navmenu a i,.navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: .3s
    }
    .navmenu a i:hover,.navmenu a:focus i:hover {
        color: #af0604
    }
    .navmenu a:hover,.navmenu .active,.navmenu .active:focus {
        color: #af0604
    }
    .navmenu .active i,.navmenu .active:focus i {
        background-color: #af0604;
        color: #fff;
        transform: rotate(180deg)
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: #fff;
        border: 1px solid color-mix(in srgb,#444444,transparent 90%);
        box-shadow: none;
        transition: all .5s ease-in-out
    }
    .navmenu .dropdown ul ul {
        background-color: #2125291a
    }
    .navmenu .dropdown>.dropdown-active ul {
        display: block
    }
    .mobile-nav-active {
        overflow: hidden
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: #212529cc;
        transition: .3s
    }
    .mobile-nav-active .navmenu>ul {
        display: block
    }
   .mobile-nav-active .dropdown ul {
        display: none
    }
   .mobile-nav-active .dropdown.dropdown-active ul {
        display: block
    }
}
/*======Header Section End======*/
/*======Slider Section Start======*/
#hero {
    width: 100%;
    /*height: 8vh;*/
    height:85vh;
    background: transparent;
    overflow: hidden;
    position: relative;
}
#hero .carousel-item:before {
    content: "";
    background-color: #0006
}
@media (max-height: 500px) {
    #hero {
        height:150vh
    }
}
#hero .carousel,#hero .carousel-inner,#hero .carousel-item,#hero .carousel-item:before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0
}
#hero .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out
}
#hero .carousel-item:before {
    content: ""
}
#hero .carousel-container,#hero .carousel-caption {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px
}
#hero .container {
    text-align: left
}
#hero h2 {
    color: #fad04b;
    margin-bottom: 20px;
    font-size: 45px;
    font-weight: 700;
    text-align: left
}
@media (max-width: 768px) {
    #hero h2 {
        font-size:20px;
        line-height: 1.2;
        text-align: left
    }
}
#hero p {
    width: 80%;
    font-size: 20px;
    line-height: 1.2;
    margin: 0 auto 30px 0;
    color: #fff;
    text-align: left
}
@media (min-width: 1024px) {
    #hero p {
        width:60%
    }
}
@media (max-width: 768px) {
    #hero p {
        font-size:28px;
        line-height: 1.2;
        text-align: left
    }
}
#hero .carousel-fade {
    overflow: hidden
}
#hero .carousel-fade .carousel-inner .carousel-item {
    transition-property: opacity;
    transition: opacity 1s ease-in-out
}
#hero .carousel-fade .carousel-inner .carousel-item,#hero .carousel-fade .carousel-inner .active.carousel-item-start,#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    opacity: 0
}
#hero .carousel-fade .carousel-inner .active,#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: opacity 1s ease-in-out
}
#hero .carousel-fade .carousel-inner .carousel-item-next,#hero .carousel-fade .carousel-inner .carousel-item-prev,#hero .carousel-fade .carousel-inner .active.carousel-item-start,#hero .carousel-fade .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translateZ(0)
}
#hero .carousel-control-prev,#hero .carousel-control-next {
    width: 10%
}
@media (min-width: 1024px) {
    #hero .carousel-control-prev,#hero .carousel-control-next {
        width:5%
    }
}
#hero .carousel-control-next-icon,#hero .carousel-control-prev-icon {
    background: none;
    font-size: 32px;
    line-height: 1
}
#hero .carousel-indicators li {
    cursor: pointer
}
#hero .btn-get-started {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 32px;
    border-radius: 50px;
    transition: .5s;
    margin: 10px;
    color: #fff;
    background: #aa001a
}
#hero .btn-get-started:hover {
    background: #ba1730;
    color: #fff
}
#hero .carousel-indicators [data-bs-target] {
    color: #aa001a
}
.carousel .control-arrow,.carousel.carousel-slider .control-arrow {
    -webkit-transition: all .25s ease-in;
    -moz-transition: all .25s ease-in;
    -ms-transition: all .25s ease-in;
    -o-transition: all .25s ease-in;
    transition: all .25s ease-in;
    opacity: .4;
    filter: alpha(opacity=40);
    position: absolute;
    z-index: 2;
    top: 20px;
    background: none;
    border: 0;
    font-size: 32px;
    cursor: pointer
}
.carousel .control-arrow:focus,.carousel .control-arrow:hover {
    opacity: 1;
    filter: alpha(opacity=100)
}
.carousel .control-arrow:before,.carousel.carousel-slider .control-arrow:before {
    margin: 0 5px;
    display: inline-block;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    content: ""
}
.carousel .control-disabled.control-arrow {
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: inherit;
    display: none
}
.carousel .control-prev.control-arrow {
    left: 0
}
.carousel .control-prev.control-arrow:before {
    border-right: 8px solid #fff
}
.carousel .control-next.control-arrow {
    right: 0
}
.carousel .control-next.control-arrow:before {
    border-left: 8px solid #fff
}
.carousel-root {
    outline: none
}
.carousel {
    position: relative;
    width: 100%;
}
.carousel * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}
.carousel img {
    width: 100%;
    display: inline-block;
    pointer-events: none
}
.carousel .carousel {
    position: relative
}
.carousel .control-arrow {
    outline: 0;
    border: 0;
    background: none;
    top: 50%;
    margin-top: -13px;
    font-size: 18px
}
#hero .carousel-item {
    min-height: 100vh;
}
/*======Slider Section End======*/
/*======Breadcumb Section Start======*/
.bradcam_area1{
    /*background-color: red !important;*/
    background-size: cover;
    background-position: center center;
    padding: 148px 0;
    background-repeat: no-repeat;
    background-size: 100% 80% !important;
    background-position: 0px 90px!important;
}
.bradcam_background1{
    background: linear-gradient(to right, #af0604, #131a39 24%, #7cb9e900 96%, #7db9e800);
}
.bradcam_text h3{
    font-size: 50px;
    color: #d90100;
    font-weight: 600;
    margin-top: 50px !important;
    margin-bottom: 0;
    text-transform: capitalize;
     text-shadow: 2px 2px 3px rgba(252, 215, 3,0.6);
}
.bradcam_text p{
    font-size: 18px;
    color: rgba(247, 231, 2,0.9);
    font-weight: bold;
    text-transform: capitalize;
     text-shadow: 0px 0px 5px rgba(0,0,0,1);
     background-color: rgba(0,0,0,0.2);;
     line-height: 55px;
     padding-left: 10px;
     max-width: 600px !important;
     border-radius: 0px 50px 0px 10px;
}
.bradcam_text p a{
    /*color: rgba(250, 208, 75,0.9);*/
     color: rgba(255,255,255,0.9);
     text-decoration: none;
     text-shadow: 1px 1px 5px rgba(0,0,0,1);
     line-height: 55px;
     /*padding-left: 10px;*/
}
@media (max-width: 767px) {
    .bradcam_area1 {
        padding: 120px 0;
    }
}
@media (max-width: 767px) {
    .bradcam_area1 h3 {
        font-size: 30px;
    }
}
/*======Breadcumb Section End======*/
/*======Service Breadcumb Section Start======*/
.service_bradcam_area{
    background-size: cover;
    background-position: center center;
    padding: 148px 0;
    background-repeat: no-repeat;
    background-size: 100% 100%;
}
.service_bradcam_overlay{
    position: relative;
    z-index: 0;
}
.service_bradcam_area h3{
    font-size: 50px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
}
.service_bradcam_area p{
    font-size: 18px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}
.service_bradcam_area p a{
    color: #fff;
    text-decoration: none;
}
@media (max-width: 767px) {
  .service_bradcam_area {
        padding: 120px 0;
    }
}
/*======Service Breadcumb Section End======*/
/*======Index Service Box Section Start======*/
.service-container {
    max-width: 1390px;
    margin: 0 auto;
}
.servicesection{
    /*background-color: #af0604 ;*/
    background-color: #af0604;
}
.singleservice{
    padding: 30px 10px;
    width: 93%;
    margin: 0 auto;
}
.service-head {
    display: flex;
    gap: 12px;                 
    margin-bottom: 15px;
}
.service-head {
    gap: 8px;   
}
.service-head img {
    width: 50px;
    height: 50px;
}
.service-head h3 {
    font-size: 26px;
    font-weight: 500;
    color: #fff;
    margin: 0;
}
.singleservice p {
    font-size: 13px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 26px;
    margin-top:21px;
    font-weight: 400;
}
.singleservice a{
    color: #fff;
    display: inline-block;
    padding: 7px 7px;
    font-family: Poppins, sans-serif;
    font-size: 13px;
    font-weight: 400;
    border: 0;
    border: 1px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    text-align: center;
    color: #fff !important;
    text-transform: capitalize;
    transition: .5s;
    cursor: pointer;
}
.singleservice a:hover {
    background: #fff;
    color: #af0604!important;
    border: 1px solid transparent;
}
.singleservice2{
     padding: 40px 30px;
}
.service-head2 {
    display: flex;
    gap: 12px;                 
    margin-bottom: 15px;
}
.service-head2 img {
    width: 50px;
    height: 50px;
}
.service-head2 h3 {
  font-size: 26px;
  font-weight: 500;
  color: #af0604;
}
.singleservice2 p{
    font-size: 13px;
    line-height: 25px;
    color: #af0604;
    margin-bottom: 26px;
    font-weight: 500;
}
.singleservice2 a{
    color:#af0604;
    display: inline-block;
    padding: 9px 24px;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}
.singleservice2 a:hover {
    color:#af0604;
    display: inline-block;
    padding: 9px 24px;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}
.call-row {
    display: flex;
    align-items: center;
}
.call-icon {
    width: 52px;
    height: 52px;
    background: #af0604;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: phoneRing 1.8s infinite ease-in-out;
    transition: background 0.3s ease;
}
.call-row:hover .call-icon {
    background: #ffffff;
}
.call-row:hover .call-icon img {
  
    filter: brightness(0) saturate(100%)
            invert(21%) sepia(79%)
            saturate(3100%)
            hue-rotate(346deg)
            brightness(93%) contrast(95%);
}
.call-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0) invert(1);
}
.call-numbers {
    display: flex;
    flex-direction: column;
    gap: 0px;   
    margin: 0;
    padding: 0;
    align-items: flex-start;
}
.call-number {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;     
    font-size: 15px;
    text-decoration: none;
    color: #000;
    /*width: 170px;  */     
    /*text-align: left;*/
    gap: 10px;
}
/* ================= Mobile & Tab Responsive ================= */
@media (max-width: 991px) {
    .service-container {
        max-width: 100%;
        padding: 0;
    }
    
    .singleservice, .singleservice2 {
        width: 100%;
        padding: 40px 25px; 
        border-bottom: 1px solid rgba(255,255,255,0.1); 
    }

    .service-head h3, .service-head2 h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .service-head, .service-head2 {
        flex-direction: row;
        align-items: center;
    }

    .service-head img, .service-head2 img {
        width: 40px;
        height: 40px;
    }

    .singleservice p, .singleservice2 p {
        font-size: 14px;
        text-align: left; 
    }

    .singleservice a {
        width: 100%; 
        max-width: 250px;
    }
    .call-number {
        font-size: 16px; 
    }
}
@media (max-width: 767px) {
    .singleservice2 {
        background-color: #fad04b;
    }
}
/* Phone ring animation *
@keyframes phoneRing {
    0% { transform: rotate(0) scale(1); }
    10% { transform: rotate(12deg); }
    20% { transform: rotate(-12deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(6deg); }
    60% { transform: rotate(-6deg); }
    100% { transform: rotate(0) scale(1); }
}*/

/*======Index Service Box Section End======*/

/*======Index About Section Start======*/
.text-decoration-none {
    text-decoration: none ;
}
.aboutsection{
    margin-top: 70px;
    margin-bottom: 120px;
}
.aboutsection .welcomethumb{
    position: relative;
    /*background-color: red;*/
}
.aboutsection.welcomethumb.thumb1{
    left: 0;
}
.aboutsection .welcomethumb .thumb1 img{
    width: 75%;
    border-radius: 30px;
    /*border: 5px solid rgba(250, 208, 75, 0.95);*/
    border: 3px solid rgba(250, 208, 75, 0.95);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.65);
}
.aboutsection .welcomethumb .thumb2{
    /*background-color: green;*/
    position: absolute;
    bottom: -150px;
    left: 200px;
    /*right: -90px;*/
}
.aboutsection .welcomethumb .thumb2 img{
    width: 110%;
    border-radius: 30px;
    /*border: 5px solid rgba(219, 2, 1, 0.95);*/
    border: 3px solid rgba(219, 2, 1, 0.95);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.65);
}
.aboutsection .welcomecontent{
    padding-left: 60px;
}
.aboutsection .welcomecontent h2{
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #1f1f1f;
    position: relative;
    z-index: 9;
    padding-bottom: 15px;
}
.aboutsection .welcomecontent h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 120px;
    background: #af0604;
}
.aboutsection .welcomecontent h3{
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 10px
}
.aboutsection .welcomecontent p{
    font-size: 16px;
    color: #000;
    line-height: 28px;
}
img {
    vertical-align: middle;
    border-style: none;
}
@media (max-width: 767px){

.aboutsection .welcomethumb .thumb1 img{
   width: 100%;
}
}
@media (min-width: 768px) and (max-width: 991px){
    .aboutsection .welcomecontent{
        padding-left: 0;
        margin-top: 200px;
    }
}
@media (max-width: 767px) {
    .aboutsection .welcomecontent {
        padding-left: 0;
        margin-top: 40px;
    }
}
/*==================Mobile View===================*/
@media (max-width: 767px){

   .aboutsection .welcomethumb{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .aboutsection .welcomethumb .thumb1 img{
        width: 100%;
    }

    .aboutsection .welcomethumb .thumb2{
        position: relative;
        left: 0;
        bottom: 0;
        display: block;
    }

    .aboutsection .welcomethumb .thumb2 img{
        width: 100%;
    }

    .aboutsection .welcomecontent{
        padding-left: 0;
        margin-top: 40px;
    }

}
/*======Index About Section End======*/

/*======Index FullAboutDetail Section Start======*/
.about_fulldetail_section{
    margin-top: 90px;
}
.about_fulldetail_section h3{
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 28px;
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(90deg, #be0b09, #fad04b);
    color: #fff;
    border-radius: 30px 6px 30px 6px; /* cut-style corners */
    border: 2px solid #fad04b;
    box-shadow: 0 6px 18px rgba(190, 11, 9, 0.35),
            inset 0 1px 2px rgba(255,255,255,0.25);
}
.about_fulldetail_section .abouthead{
    position: relative;
    font-weight: 550;
    margin-top:30px;
    margin-bottom: 30px;
    font-size: 23px;
    color: #af0604;
    display: inline-block;
}
.about_fulldetail_section .abouthead::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #af0604, #fad04b);
    border-radius: 6px;
}
.about_fulldetail_section h5{
     color: #af0604;
     font-weight: 70px;
}
.about_fulldetail_section p{
    font-size: 16px;
    color: #000;
    line-height: 28px;
}
.about_fulldetail_section ul {
    padding: 0;
    margin: 0;
}
.about_fulldetail_section ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #000;
}
.about_fulldetail_section ul li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
/*======Index FullAboutDetail Section End======*/
/*======Swipper Service Section Start======*/
._our_service_section {
    background: #ffffff;
    padding-top: 50px;
    
}
._section_title  h3 {
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #1f1f1f;
    position: relative;
    z-index: 9;
   /* padding-bottom: 15px;*/
}
._section_title  p {
    font-size: 16px;
    color: #000;
    line-height: 28px;
    margin-bottom: 0;
}
/* Swiper spacing */
._services-carousel_1p4pb_4379 {
  padding: 20px 0;
}
/* ===== Service Card ===== */
._single_department_1p4pb_1103 {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05); /* Very faint border */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
._single_department_1p4pb_1103::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
  
    transform: scaleX(0);
    transition: transform 0.4s ease;
    z-index: 10;
}
._single_department_1p4pb_1103:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

._single_department_1p4pb_1103:hover::before {
    transform: scaleX(1);
}
/* ===== Image on Top ===== */
._department_thumb_1p4pb_1121 {
  width: 100%;
  height: 220px;
  overflow: hidden;
}
._department_thumb_1p4pb_1121 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
._single_department_1p4pb_1103:hover img {
  transform: scale(1.20);
}
/* ===== Content ===== */
._department_content_1p4pb_1161 {
  padding: 25px;
}
._department_content_1p4pb_1161 h3 a {
  font-size: 22px;
  color: #1f1f1f;
  line-height: 33px;
  font-weight: 500;
}
._department_content_1p4pb_1161 h3 a:hover {
color: #af0604;
}
._department_content_1p4pb_1161 p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
._learn_more_1p4pb_1229 {
  display: inline-block;
  border: 1px solid #af0604;
  color: #af0604;
  padding: 8px 22px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}
._learn_more_1p4pb_1229:hover {
  background: #af0604;
  color: #fff;
}
/* ===== Responsive ===== */
@media (max-width: 768px) {
  ._department_thumb_1p4pb_1121 {
    height: 180px;
  }
}
.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.swiper-vertical>.swiper-wrapper {
    flex-direction: column
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box
}
.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper {
    transform: translateZ(0)
}
.swiper-horizontal {
    touch-action: pan-y
}
.swiper-vertical {
    touch-action: pan-x
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%; height: 100%;
    position: relative;
    transition-property: transform;
    display: block
}
.swiper-slide-invisible-blank {
    visibility: hidden
}
.swiper-autoheight,.swiper-autoheight .swiper-slide {
    height: auto
}
.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform,height
}
.swiper-backface-hidden .swiper-slide {
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px
}
.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d
}
.swiper-3d {
    perspective: 1200px
}
/*======Swipper Service Section End======*/
/* ===== Slider Wrapper ===== */
.services-slider {
  position: relative;
  overflow: hidden;
}
/* ===== Slider Track ===== */
.services-track {
  display: flex;
  transition: transform 0.6s ease;
}
/* ===== Slide ===== */
.service-slide {
  min-width: 33.333%;
  padding: 15px;
  box-sizing: border-box;
}
/* ===== Buttons ===== */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #af0604;
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-btn:hover {
  background: #92272d;
}
/* ===== Responsive ===== */
@media (max-width: 992px) {
  .service-slide {
    min-width: 50%;
  }
}
@media (max-width: 576px) {
  .service-slide {
    min-width: 100%;
  }
}
/*======Testmonial Section Start======*/
._testmonial_area_1p4pb_575 ._testmonial_info_1p4pb_593 ._quote_1p4pb_1401 i {
    color: #fff;
    font-size: 40px
}
._testmonial_area_1p4pb_575 ._single_testmonial_1p4pb_575 {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}
._testmonial_area_1p4pb_575 ._testmonial_info_1p4pb_593 p {
    color: #fff;
    font-size: 20px;
    line-height: 32px;
    font-weight: 400;
    margin-top: 12px;
    margin-bottom: 47px
}
@media (min-width: 768px) and (max-width: 991px) {
    ._testmonial_area_1p4pb_575 ._testmonial_info_1p4pb_593 p br {
        display:none
    }
}
._testmonial_area_1p4pb_575 ._testmonial_info_1p4pb_593 h4 {
    color: #fff;
    font-size: 13px;
    line-height: 20px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-top: 21px
}
._testmonial_area_1p4pb_575 ._testmonial_info_1p4pb_593 h4:before {
    position: absolute;
    background: #fff;
    width: 60px;
    height: 2px;
    content: "";
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translate(-50%);
    top: 0
}
._testmonial_area_1p4pb_575 ._owl-carousel_1p4pb_691 ._owl-nav_1p4pb_691 div {
    left: 340px
}
._testmonial_area_1p4pb_575 ._owl-carousel_1p4pb_691 ._owl-nav_1p4pb_691 div._owl-next_1p4pb_701 {
    right: 340px;
    left: auto
}
._testmonial_bg_1_1p4pb_1521 {
    background-image: url(../Images/testimonial.png)
}

._testmonial_bg_2_1p4pb_1531 {
    background-image: url(../Images/testimonial.png)
}
._overlay2_1p4pb_1541 {
    position: relative;
    z-index: 0
}
._overlay2_1p4pb_1541:before {
    position: absolute;
    content: "";
    background-color: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: .3
}
/*======Testmonial Section End======*/
/*======Emergency Section Start======*/
.emergencysection .singleemergency{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 220px;
    display: flex;
    padding-bottom: 25px;
    box-sizing: border-box;
}
.emergencysection .singleemergency .infocontent .emergency-title {
    font-size: 16px;
    font-weight: 600;
    color: #f7d40a;
    white-space: nowrap;
    margin-bottom: 10px;
}

/* First box alignment */
.emergencysection .row > div:first-child .singleemergency {
    display: flex;
    align-items: flex-end;    
    justify-content: flex-end; 
}

.emergencysection .row > div:first-child .infocontent {
   text-align: right;        
    /*margin: 0 30px 20px 0; */   
    max-width: 80%;           
}
   
.emergencysection .row > div:first-child .contact-info {
    justify-content: flex-end;
}

.emergencysection .row > div:second-child .singleemergency,
.emergencysection .col-lg-6:nth-child(2) .singleemergency {
    display: flex;
    align-items: flex-end !important;    
}
.emergencysection .col-lg-6:nth-child(2) .infocontent {
    text-align: left;         
    /*margin: 0 0 20px 30px;*/   
    margin-right: 140px;
    max-width: 80%;
    padding-top:80px;
    margin-left: 10px;
    margin-top: 60px !important;
    padding: 0 !important
}
.overlayskyblue{
    position: relative;
    z-index: 0;
}
.overlayskyblue:before{
    content: "";
    position: absolute;
    background-color: #af0604;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: .4;
    z-index: -1;
}
.emergencybg1{
    background-image: url(../Images/emergency_doctor.png);
}
.emergencybg2{
    background-image: url(../Images/emergency_doctor2.png);
}
.emergencysection .singleemergency .infocontent{
    margin-right: 0;
    margin-right: 30px;
}
.emergencysection .row > div:first-child .infocontent {
    /*margin-left: 340px;*/
    margin-left: 260px;
}
.emergencysection .singleemergency .infocontent h4{
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}
.emergencysection .singleemergency .infocontent h5{
    font-size: 13px;
    color: #fff;
}
.emergencysection .singleemergency .infocontent p{
    color: #fff;
    font-size: 13px;
    margin-bottom: 0;
}
.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 3px 5px; 
    cursor: pointer;
}
.divider {
    font-size: 16px;
    color: #fff;
}
.emergency-icon,
.emergency-icon2 {
    width: 13px;
    height: 13px;
    fill: #fff;
    transition: all 0.3s ease;
}
.infobutton {
    color: #fff;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.contact-item:hover .infobutton {
    color: #fad04b;
    /*font-weight: 500;
    text-shadow: 0.5px 0 0 #fad04b, -0.5px 0 0 #fad04b;*/ 
    transition: all 0.3s ease;
}
.contact-item:hover .emergency-icon,
.contact-item:hover .emergency-icon2 {
    fill: #fad04b;
    width: 13px;
    height: 13px;
    transition: fill 0.3s ease;
    
}
.emergency-icon:hover,
.emergency-icon2:hover {
    fill: #fad04b;
    width: 15px;
    height: 15px;
    transition: fill 0.3s ease;
}
@media (max-width: 991px) {
    .emergencybg1 {
        background-position: -160px center !important; 
        background-size: cover;
    }
    .emergencybg2 {
        background-position: calc(100% + 50px) center !important; 
        background-size: cover;
    }
    .emergencysection .row > div:first-child .infocontent,
    .emergencysection .col-lg-6:nth-child(2) .infocontent,
    .emergencysection .singleemergency .infocontent {
       /* margin: 0 !important; */
        /*margin-left: 300px;*/
        padding: 15px !important;
        max-width: 100% !important;
        /*width: 100%;*/
        /*text-align: center !important;*/ 
    }
    .emergencysection .singleemergency {
        /*justify-content: center !important;*/
        align-items: center !important;
        height: auto !important;
        min-height: 250px;
    }
   .emergencysection .singleemergency .infocontent .emergency-title {
        white-space: normal !important;
        font-size: 15px !important;
        line-height: 1.2 !important;
        border-bottom: 1px solid #cccccc !important;
    }
   .contact-info {
        /*justify-content: center !important;*/
        gap: 5px !important;
    }
   .divider {
        display: none; 
    }
}
@media (max-width: 480px) {
    .emergencybg1, .emergencybg2 {
        /*background-position: center !important;*/ 
        width: 100%;
    }
    .overlayskyblue:before {
        opacity: 0.4 !important; 
    }
    .emergencysection .singleemergency {
        min-height: 0px;
        width: 100%;
    }
}
@media (max-width: 767px) {
   .emergencybg1 {
        background-position: center !important;
        width: 100%;
    }
  .emergencybg2 {
        background-position: right center !important; 
        background-size: cover;
        width: 100%;
    }
.emergencysection .row > div:first-child .infocontent {
        margin-left: auto !important; 
        margin-right: 0 !important;
        text-align: right !important;
        max-width: 65% !important; 
        padding-right: 10px;
    }
    .emergencysection .col-lg-6:nth-child(2) .infocontent {
        margin-left: auto !important;
        /*margin-right: 0 !important;*/
        margin-right: 10px !important;
        text-align: right !important;
       /* max-width: 65% !important;*/ 
        padding-right: 10px;
    }
  .emergencysection .singleemergency {
        height: auto !important;
        /*min-height: 250px;*/
        display: flex;
        align-items: center !important; 
    }
 .emergency-title {
        white-space: nowrap !important;
        font-size: 13px !important;
        overflow: visible;
    }
   .contact-info {
        display: flex !important;
        flex-direction: row !important; 
        justify-content: flex-end !important; 
        align-items: center !important;
        gap: 8px !important;
        width: 100%;
    }
    .emergencysection .row > div:first-child .contact-info {
        align-items: flex-end !important;
    }
    .contact-item {
        padding: 0 !important;
        white-space: nowrap !important; 
    }

    .divider {
        display: inline-block !important; 
        color: #fff;
        font-size: 12px;
    }
    .infobutton {
        font-size: 11px !important; 
    }
    .overlayskyblue:before {
        opacity: 0.4 !important;
    }
}
/*======Emergency Section End======*/
/*======About Page Start======*/
.aboutussection1 .aboutcontent{
    padding-left: 60px;
}
.aboutussection1 .aboutcontent h2{
    font-size: 36px;
    font-weight: 500;
    line-height: 48px;
    color: #1f1f1f;
    position: relative;
    z-index: 9;
    padding-bottom: 15px;
}
.aboutussection1 .aboutcontent h2:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 50px;
    background: #af0604;
}
.aboutussection1 .aboutcontent h4{
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 28px;
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(90deg, #af0604, #fad04b);
    color: #fff;
    border-radius: 30px 6px 30px 6px; /* cut-style corners */
    border: 2px solid #fad04b;
    box-shadow: 0 6px 18px rgba(114, 1, 9, 0.35),
                inset 0 1px 2px rgba(255,255,255,0.25);
}
.font-weight-bold {
    font-weight: 700;
}
.aboutussection1 .aboutcontent h5{
     color: #af0604;
     font-weight: 70px;
}
.aboutussection1 .aboutcontent p{
    font-size: 16px;
    color: #000;
    line-height: 28px;
}
.aboutussection1 img{
    max-width: 100%;
    height: auto;
}
.aboutcontent ul {
    padding: 0;
    margin: 0;
}
.aboutcontent ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #000;
}
.aboutcontent ul li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .aboutussection1 .aboutcontent {
        padding-left: 0;
        margin-top: 40px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .aboutussection1 .aboutcontent {
        padding-left: 0;
        margin-top: 100px;
    }
}
@media (min-width: 992px) and (max-width: 1200px) {
      .aboutussection1 {
        padding-bottom: 100px;
    }
}
@media (max-width: 767px) {
    .aboutussection1 {
        padding-bottom: 100px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .aboutussection1 {
        padding-bottom: 100px;
    }
}
/*======About Page End======*/
/*======Service Page Start======*/
.ps-2 {
    padding-left: .5rem ;
}
.pe-2 {
    padding-right: .5rem ;
}
._service_details{
    padding-top: 80px;
    padding-bottom: 80px;
    padding-right: 0;
    margin: 0%;
}
._servicesidebar{
    padding: 50px 30px;
    background: #af0604;
}
._widget .widgetheading{
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 24px;
    color: #fff ;
    margin: 0 0 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #fad04b;
}
._categories ul{
    /*line-height: 50px;*/
    font-family: Poppins, sans-serif;
    font-weight: 400;
}
._categories ul li{
   border-bottom: 1px solid #fad04b;
   margin-bottom: 20px;
}

._categories ul li a{
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    display: block;
    padding: 10px 12px; 
    line-height: 1.2;
}
._categories ul li a:hover{
    color: #fad04b;
}
._categories ul li._active {
  background-color: #ffffff;   
  border-radius: 6px;
  border:1px solid  #fad04b;
  padding: 0; 
}
._categories ul li._active > a {
  color: #af0604;              
  font-weight: 600;
  padding: 8px 12px;
}
._servicedeatilssection .servicedetail_title{
    font-family: Poppins, sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 47px;
    margin: 0 0 30px;
    color: #000;
}
._img_responsive{
    display: block;
    max-width: 80%;
}
.rounded{
    border-radius: .375rem;
}
.card-text:last-child{
    margin-bottom: 0;
}
._servicedeatilssection h5{
    margin-bottom: 20px;
}
._servicedeatilssection p{
    margin-bottom: 20px;
    font-size: 17px;
    color: #000;
    line-height: 35px;
}
.card-text  ul {
    padding: 0;
    margin: 0;
}
.card-text  ul li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 17px;
    color: #000;
}
.card-text  ul li img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
/* Mobile phones & small tablets */
@media (min-width: 360px) and (max-width: 767px){
    ._mobilesidebar{
        display: flex;
        justify-content: center;
        margin-bottom: 35px;
    }
    ._servicesidebar{
        width: 90%;
        max-width: 420px;
        padding: 35px 20px;
    }
}
/* Desktop & large screens */
@media (min-width: 992px){
    ._mobilesidebar{
        display: block;
        margin-bottom: 0;
    }
    ._servicesidebar{
        max-width: 100%;
        padding: 50px 30px;
        border-radius: 0;
    }
}
/*======Service Page End======*/
/*======FAQ Section Start======*/
.faqsection{
    width: 100%;
    background: #fff;
    padding-bottom: 90px;
}
._intro_content{
    padding-top: 30px;
}
._faq-item {
    margin-bottom: 15px;
}
._faq-question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    padding: 12px 16px;
    cursor: pointer;
}
._faq-content{
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
    padding: 10px 15px;
    border-top: 1px solid #ddd;
}
._faq-toggle{
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    line-height: 1;
}
._faq-item.active ._faq-toggle {
  content: "-";
}
._faq-body{
    line-height: 2.5;
}
._faq-body p{
    font-size: 22px;
}
._faq-content {
  max-height: 0;
  overflow: hidden;
}
/*======FAQ Section End======*/
/*======Doctor Section Start======*/
._expert_doctors_area{
    padding: 80px 0;
    background: #fafafa;
}
.single_doctor{
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.single_doctor:hover{
    transform: translateY(-12px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.15);
}
.single_doctor .doctor_image{
    position: relative;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}
.single_doctor .doctor_image img{
    width: 100%;
   /* height: 260px;*/
    object-fit: cover;
    transition: transform 0.4s ease;
}
.single_doctor:hover .doctor_image img{
    transform: scale(1.08);
}
.single_doctor .doctor_info{
    padding: 22px 18px;
    background-color: #af0604;
    text-align: center;
}
.single_doctor .doctor_info h4{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 6px;
}
.single_doctor .doctor_info h6{
    color: #f8eaea;
    font-size: 14px;
    margin-bottom: 18px;
}
.view_btn{
    display: inline-block;
    background-color: #fff;
    color: #af0604;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.view_btn:hover{
    background-color: #fad04b;
    color: #af0604;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}
/*======Doctor Section End======*/
/*======Doctor Detail Section Start======*/
.doctor-details-left {
    -webkit-box-shadow: 0px 0px 10px 0px #ddd;
    box-shadow: 0px 0px 10px 0px #ddd;
    border-radius: 10px;
    overflow: hidden;
}
.docimage {
    width: 100%;
    border-radius: 0;
}
.doctor-details-item .doctor-details-contact {
    padding-top: 10px;
    padding-left: 20px;
    padding-bottom: 20px;
}
.doctor-details-item .doctor-details-contact h3 {
    font-weight: 600;
    font-size: 20px;
    color: #af0604;;
    margin-bottom: 25px;
}
.basic-info{
   list-style: none;
   padding: 0;
   margin: 0;
}
.basic-info li{
    font-size: 15px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.docicon {
  width: 18px;
  height: 18px;
}
.doctor-details-right {
    padding-left: 60px;
    padding-top: 70px;
}
@media only screen and (max-width: 767px) {
     .doctor-details-right {
        padding-left: 0;
        padding-top: 30px;
    }
}
.doctor-details-item .doctor-name .name {
    font-size: 25px;
    font-weight: 600;
    background: #fad04b;
    color: #af0604;
    display: inline-block;
    padding: 12px;
    border-radius: 0px 30px 30px 0px;
}
.doctor-details-item .doctor-name .deg {
    font-size: 22px;
    margin: 10px 0 5px 0;
    color: #494444;
    padding-top: 10px;
    padding-bottom: 10px;
    margin: 0;
    line-height: 24px;
    font-weight: 400;
}
.doctor-details-item .doctor-details-biography h3 {
    font-weight: 600;
    font-size: 24px;
    color: #af0604;
    margin-bottom: 25px;
    margin-top: 25px;
}
.doctor-details-item .doctor-details-biography p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 35px;
   
}
.doctor-details-item .doctor-details-biography ul {
    margin: 0;
    padding: 0;
}
.doctor-details-item .doctor-details-biography ul.custom-list li::marker {
    color: #af0604;
    font-size: 1.1em;
}
.doctor-details-item .doctor-details-biography ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 10px;
}
/*======Doctor Detail Section End======*/
/*======Main Gallery Page Start======*/
.gallery2section{
    background: linear-gradient(180deg,#f8f8f8,#ffffff);
    padding: 100px 0;
}
.causes-item{
    position: relative;
    background: #ffffff;
    border-radius: 30px;
    padding: 90px 25px 30px;
    margin-bottom: 140px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
    overflow: visible;
    height: 450px;
}
.causes-item:hover{
    transform: translateY(-12px);
    box-shadow: 0 40px 80px rgba(175,50,58,0.25);
}
.causes-image{
    position: absolute;
    top: -70px;
    left: 25px;
    right: 25px;
    overflow: hidden;
}
.causes-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    transform-origin: center;
}
.causes-item:hover img{
    transform: scale(1.12);
}
.image-anime{
    position: relative;
    height: 240px;
    border-radius: 24px;   
    overflow: hidden;     
}
.image-anime::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.15)
    );
    opacity: 0;
    transition: 0.5s ease;
    border-radius: inherit; 
    z-index: 2;
}
.causes-item:hover .image-anime::after,
.causes-item:hover .image-overlay{
    opacity: 1;
}
.image-overlay{
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 25px;
    color: #fff;
    text-align: center;
    opacity: 0;
    transition: 0.5s ease;
}
.causes-item:hover .image-overlay{
    opacity: 1;
}
.image-overlay h4{
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    transform: translateY(20px);
    transition: 0.4s ease;
}
.image-overlay p{
    font-size: 14px;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: 0.4s ease;
}
.causes-item:hover .image-overlay h4,
.causes-item:hover .image-overlay p{
    transform: translateY(0);
}
.causes-content{
    text-align: center;
    margin-top: 100px;
}
.causes-content h3{
    font-size: 22px;
    font-weight: 700;
    color: #020d19;
   
}
.causes-content h5{
    font-size: 14px;
    font-weight: 500;
    color: #af0604;
    margin-bottom: 12px;
}
.causes-content p{
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.causes-button{
    text-align: center;
}
.btn-default{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background:#af0604;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 30px rgba(175,50,58,0.35);
    transition: all 0.4s ease;
}
.btn-default:hover{
    background: #fad04b;
    transform: translateY(-3px);
    box-shadow: 0 25px 45px rgba(175,50,58,0.5);
    color: #000000;
}
/*======Main Gallery Page End======*/
/*======Inside Gallery Section Start======*/
.gallerysection{
    background: #f5fbff;
    padding-top: 120px;
    padding-bottom: 90px;
}
.gallerysection h3{
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 28px;
    display: inline-block;
    padding: 8px 22px;
    background: linear-gradient(90deg, #af0604, #fad04b);
    color: #fff;
    border-radius: 30px 6px 30px 6px;
    border: 2px solid #fad04b;
    box-shadow: 0 6px 18px rgba(114, 1, 9, 0.35),
                inset 0 1px 2px rgba(255,255,255,0.25);
}
.gallerysection h5{
    color: #af0604;
}
.gallerysection p{
   font-size: 16px;
    color: #000;
    line-height: 28px;
}
.single_gallery_item img {
  width: 100%;
  height: auto;
  cursor: pointer;
  border-radius: 6px;
  transition: transform 0.3s ease;
  margin-bottom: 20px;
}
.single_gallery_item img:hover {
  transform: scale(1.05);
}
/*======InsideGallery Section end======*/
/*======PopUp Image Section start======*/
.img-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.img-lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
  animation: zoomIn 0.3s ease;
}
.img-lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #ffffff;
  cursor: pointer;
  transition: 0.3s;
}
.img-lightbox .close:hover {
  color: #ff4d4d;
}
@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 576px) {
  .img-lightbox img {
    max-width: 95%;
    max-height: 80%;
  }
}
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px 15px;
  background: rgba(0,0,0,0.4);
  border-radius: 50%;
  transition: 0.3s;
  user-select: none;
}
.nav-btn:hover {
  background: rgba(255,255,255,0.2);
}
.prev {
  left: 20px;
}
.next {
  right: 20px;
}
/*======PopUp Image Section end======*/
/*======Contact Section Start======*/
.contactsection .contactbox{
    background-color: var(--surface-color);
    padding: 20px 0 30px;
    box-shadow: 0 0 20px #0000001a;
}
.contactsection .contactbox{
    /*width: 100%;*/
    width: 300px;
    height: 100%;
}
.contactsection .contactbox i{
    font-size: 20px;
    color: #af0604;
    width: 56px;
    height: 56px;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .3s ease-in-out;
    border-radius: 50%;
    border: 2px dotted color-mix(in srgb, #af0604, transparent 40%);
}
.contactsection .contactbox  h3{
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
    color: #af0604;
}
.contactsection .contactbox p{
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #af0604;
}
.contactsection .contactbox a{
    padding: 0;
    margin-bottom: 0;
    font-size: 14px;
    color: #af0604;
}
.address-box {
    display: flex;
     flex-direction: column;
    /*padding: 20px;*/
    align-items: flex-start; 
}
.address-box i {
    align-self: flex-start; 
    margin-bottom: 5px;
}
.address-box h3 {
    margin-bottom: 10px;
}
.qr-box{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.qr-box img {
    width: 80px;
    height: 80px;
    border: 2px solid #ccd3db;
    border-radius: 10px;
}
.qr-text{
    padding-top: 10px;
    font-size: 9px;
    color: #0c70e8;
}
.address-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 15px;
}
.address-text {
    text-align: left;
}
.address-box i {
    align-self: center;   
}
.pro-box {
    align-items: flex-start;
}
.pro-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    /*gap: 10px;*/
}
.pro-name1 {
    width: 112px;   
    font-size: 14px;
    text-align: right !important;
    padding-right: 10px;
    color: #af0604 !important;
}
.pro-item a {
    width: 140px;
    text-align: left;
    font-variant-numeric: tabular-nums; 
}
.call-box{
    display: flex;
    flex-direction: column;
    align-items: center; 
    padding-left: 70px; 
}
.call-text {
    width: 190px;       
    margin: 0 auto;    
    text-align: left;    
}
.call-text a {
    display: block;
    text-decoration: none;
    color: #af0604;
}
/* mobile responsive */
@media (max-width: 768px) {
    .address-box {
        flex-direction: column;
        text-align: center;
    }
    .qr-box img {
        margin-bottom: 10px;
    }
    .contactsection .contactbox {
         width: 100%;
    }
}
@media (max-width: 768px) {
    .address-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
/*======Contact Section End======*/
/*======ContactForm Section Start======*/
.mapformsection{
    padding-bottom: 50px;
}
@media (min-width: 1200px) {
    ._container_mapform {
        max-width: 1140px;
    }
}
@media (min-width: 992px) {
     ._container_mapform {
        max-width: 960px;
    }
}
@media (min-width: 768px) {
   ._container_mapform {
        max-width: 720px;
    }
}
@media (min-width: 576px) {
   ._container_mapform {
        max-width: 540px;
    }
}
._container_mapform {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
._align_items_stretch_form{
    -webkit-box-align: stretch ;
    align-items: stretch ;
}
._d_flex_form{
    display: -webkit-box ;
    display: flex ;
}
._no_gutters_form{
    margin-right: 0;
    margin-left: 0;
}
._p_md_5_form{
    padding: 3rem ;
}
@media (min-width: 768px) {
    ._order_md_last_form {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13;
    }
}
@media (min-width: 768px) {
    ._col_md_6_form {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
.bg_light_color1{
    background-color:#f8f9fa ;
}
.bg_light_color{
    background-color: #f8f9fa ;
}
.containersection .bg_light_color{
    background-color: #f8f9fa ;
}
.formgroup {
    margin-bottom: 1rem;
}
.form-control {
    background: #fff ;
    color: #000 ;
    font-size: 18px;
    border-radius: 0;
    -webkit-box-shadow: none ;
    box-shadow: none ;
    border: 1px solid rgba(0, 0, 0, .1);
}
textarea.form-control {
    min-height: calc(1.5em + .75rem + calc(var(--bs-border-width) * 2));
}
textarea.form-control {
    height: inherit ;
}
.map-box iframe {
    width: 100%;
    height: 250px;
    border: 0;
}
.map-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mapformsection h4{
    font-size: 28px;
    font-weight: 600;
    color: #af0604;
}
.mapformsection p{
    font-size: 15px;
    color: #000000;
    font-weight: 400;
}
/*======ContactForm Section End======*/
/*======Appointment Form Start======*/

/*._modalHeader_1m8fh_1 {
    background-color: #af0604;
    color: #fff;
}*/
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: .8rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
.myform_control{
    font-size: .8rem;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: .25rem;
    transition: border-color .15s 
ease-in-out, box-shadow .15s 
ease-in-out;
}
.btn.btn-primary {
    background: #af0604;
    border: 1px solid #af0604;
    color: #fff;
}
.btn.btn-primary:hover{
    background: #fff;
    border: 1px solid #af0604;
    color: #af0604;
}
.btn.btn-secondary {
    background: #55afd2;
    border: 1px solid #55AFD2;
    color: #fff;
}
/*======Appointment Form End======*/
/*======Footer Section Start======*/
.footersection{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Poppins, sans-serif;
}
.footersection .footertop{
    padding-top: 55px;
    padding-bottom: 39px;
    background: #1f1f1f;
}
.footersection .footertop .footerwidget .footerlogo{
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.footerlogo img{
    width: 200px;
    height: auto;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
}
.footersection .footertop .footerwidget p{
    color: #c7c7c7;
}
.footersection p{
    font-size: 16px;
    line-height: 35px;
}
.footersection .sociallinks{
    margin-top: 47px;
}
.sociallinks ul{
    padding:0;
}
.footersection .sociallinks ul li{
    display: inline-block;
}
.footersection .sociallinks ul li a{
    font-size: 18px;
    color: #c3b2f0;
    line-height: 42px;
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    background: #707070;
    border-radius: 4px;
    line-height: 50px ;
    margin-right: 7px;
    color: #fff;
}
.footersection .footertop .footerwidget ul li a{
    font-size: 16px;
    color: #bababa;
    line-height: 42px;
}
.footersection .footertop .footerwidget ul li a:hover{
    color: #af0604;
}
.footersection .footertop .footerwidget .footertitle{
    font-size: 22px;
    font-weight: 400;
    color: #fad04b;
    text-transform: capitalize;
    margin-bottom: 40px;
}
.footersection ._copy_right_text{
    padding-bottom: 10px;
    background: #000;
}
.footersection ._copy_right_text ._footer_border{
    padding-bottom: 10px;
}
.footersection ._copy_right_text .copyright{
    font-size: 16px;
    color: #919191;
    margin-bottom: 0;
    font-weight: 400;
}
.footersection ._copy_right_text .copyright a{
    font-size: 16px;
    color: #fad04b;
    margin-bottom: 0;
    font-weight: 400;
}
/*======Footer Section End======*/
/*======ScrollToTop Start======*/
#scrollTopBtn{
    position: fixed;
    bottom: 25px;
    right: 25px;
    height: 35px;
    background-color: #af0604; 
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 24px;
    transition: opacity .3s ease-in-out;
    font-weight: bold;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
#scrollTopBtn:hover{
    background-color: #fff;
    color: #af0604;
    border: 1px solid #af0604;
}
/* Mobile size */
@media (max-width: 576px){
    #scrollTopBtn{
        width: 42px;
        height: 42px;
        font-size: 20px;
        bottom: 20px;
        right: 20px;
    }
}
/*======ScrollToTop End======*/
/*======Career Page Start======*/
.career_form_section{
    margin-bottom: 80px;
}
.career_form_section h1{
    font-weight: 600;
    margin-bottom: 30px;
}
.career_form_section .applyfm{
    background: #fff;
    box-shadow: 0px 5px 30px 0px rgb(9 29 62 / 15%);
    padding: 30px;
}
.career_form_section .applyfm .form-group{
    margin-bottom: 15px;
    font-weight: 600;
}
.career_form_section .applyfm .form-group label{
    margin-bottom: 10px;
}
.apply-bn {
    background: #af0604;
    color: #fff;
    margin-top: 15px;
    border: none;
}
/* ===== Career Section ===== */
.career_joblist_section{
    padding-top:50px;
    padding-bottom:40px;
    background: linear-gradient(180deg, #f8f9fb, #ffffff);
}
.career_joblist_section h3{
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 50px;
    position: relative;
}
.career_joblist_section .job_card{
    position: relative;
    background: #ffffff;
    padding: 35px 30px 35px 40px;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    overflow: hidden;
    height: 250px;
}
.career_joblist_section .job_card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background:#af0604;
   
}
.career_joblist_section .job_card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(175,50,58,0.25);
}
.highlight{
    color: #b50003;
    font-weight: bold;
}
.career_joblist_section .job_card h4{
    font-size: 20px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 15px;
}
.careerb{
  background-color: #af0604;
  color: #ffffff;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.careerb:hover
{
  background-color: #fad04b;
  color: #000;
}
.careerb2{
  background-color:  #ffffff;
  color: #af0604;
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  border:1px solid #af0604;
  cursor: pointer;
  transition: all 0.3s ease;
}
.careerb2:hover{
    background-color:#af0604;
    color: #fff;
}
.applybn {
  display: block;
  margin: 20px auto 0;
}
.applyheading{
    color:#af0604 ;
    text-align: center;
    font-weight: 700;
}
.applylabel{
    margin-bottom: 15px;
    font-weight: 600;
}
.apply_formgroup{
    margin-bottom: 10px;
}
/* ===== Job Info ===== */
.career_joblist_section .job_card p{
    font-size: 15px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}
.career_joblist_section .job_card p strong{
    color: #af0604;
    font-weight: 600;
}
.career_joblist_section .job_card::after{
    content: "";
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(175,50,58,0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.career_joblist_section .job_card:hover::after{
    opacity: 1;
}
/*======Career Page End======*/
/*======Career View More Detail Start======*/
.career-model h4{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#af0604 ;
}
.career-model p{
    font-size: 16px;
    line-height: 28px;
}
.career-model li{
     font-size: 16px;
     line-height: 28px;
}
ul.custom-list {
  color: #000;            
  padding-left: 20px;
}
ul.custom-list li::marker {
  color: #af0604;         
  font-size: 1.1em;
}
/*======Career View More Detail End======*/
/*======Health Checkup Page Start======*/
.section1 {
    padding: 10px 0;
    padding-top: 10px;
}
.fullbox{
   border-style: solid;
    border-radius: 10px;
    border-width: 2px;
    border-color: #af0604;
    padding: 20px 20px 20px 20px;
    background-color: #f8f2d6;
}
.section1 .row {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.section1 .col-xl-4 {
    position: relative;
    padding: 0 25px;
}
.section1 .col-xl-4:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #f0e4a5 0%,
        #f7d77a 20%,
        red 50%,
        #f7d77a 80%,
        #f0e4a5 100%
    );
}
.mainheading h1{
    text-align: center;
    color:#af0604 ;
    font-size: 35px;
}
.mainheading h5{
   text-align: center;
   color:#af0604 ;
   font-size: 25px;
}
.mainheading {
  align-items: center;
  position: relative;
  padding-bottom: 8px;
}
.mainheading::after {
  content: "";
    position: absolute;
    left: 34%;
    right: 20%;
    bottom: 0;
    width: 33%;
    height: 2px;
    background: linear-gradient(
  to right,
  #ffffff 0%,   
  yellow 20%,   
  red 50%,       
  yellow 80%,    
  #ffffff 100%   
);
}
.heading{
  width: 270px;
}
.healthpackage-modal-body1 .heading h2 {
  background:#af0604;
  border: 2px solid #af0604;
  border-top-right-radius:6px ;
  border-top-left-radius: 50px;
  border-bottom-left-radius:6px;
  border-bottom-right-radius: 50px;
}
.healthpackage-modal-body1 .heading h2 {
    font-size: 12px;
    font-weight: 700;
    color:white ;
    padding: 5px;
    padding-left: 15px;
    margin-bottom: 15px;
    width: 170px;
    background-color: #af0604;
}
.healthpackage-modal-body1 .ul1 {
    list-style: none;
    padding: 0;
}
.healthpackage-modal-body1 .ul1 li {
    font-size: 13px !important;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
.heading h2 {
  background:#af0604;
  border: 2px solid #af0604;
  border-top-right-radius:6px ;
  border-top-left-radius: 50px;
  border-bottom-left-radius:6px;
  border-bottom-right-radius: 50px;
}
.heading h2 {
    font-size: 17px;
    font-weight: 700;
    color:white ;
    padding: 5px;
    padding-left: 15px;
    margin-bottom: 15px;
    width: 290px;
    background-color: #af0604;
}
.ul1 {
    list-style: none;
    padding: 0;
}
.ul1 li {
    font-size: 15px;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
}
.animated-text {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlide 0.6s ease forwards;
}
.heading.animated-text {
  animation-delay: 0.2s;
}
.ul1 li {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlide 0.5s ease forwards;
}
.ul1 li:nth-child(1) { animation-delay: 0.1s; }
.ul1 li:nth-child(2) { animation-delay: 0.2s; }
.ul1 li:nth-child(3) { animation-delay: 0.3s; }
.ul1 li:nth-child(4) { animation-delay: 0.4s; }
.ul1 li:nth-child(5) { animation-delay: 0.5s; }
.ul1 li:nth-child(6) { animation-delay: 0.6s; }
.ul1 li:nth-child(7) { animation-delay: 0.7s; }
.ul1 li:nth-child(8) { animation-delay: 0.8s; }
.ul1 li:nth-child(9) { animation-delay: 0.9s; }
.ul1 li:nth-child(10) { animation-delay: 1s; }
.ul1 li:nth-child(11) { animation-delay: 1.1s; }
.ul1 li:nth-child(12) { animation-delay: 1.2s; }
.ul1 li:nth-child(13) { animation-delay: 1.3s; }
.ul1 li:nth-child(14) { animation-delay: 1.4s; }
.ul1 li:nth-child(15) { animation-delay: 1.5s; }

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.package-section {
  box-sizing: border-box; 
  transition: all 0.3s ease; 
  border: 2px solid transparent; 
  padding-left: 15px;
  padding-top: 10px;
 width: 390px;
}
.package-section:hover {
  background: #fff;
  border: 2px solid #A9A9A9; 
  box-shadow: inset 0 0 10px rgba(150, 150, 150, 0.5);
  border-top-right-radius:6px;
  border-top-left-radius: 50px;
  border-bottom-left-radius:6px;
  border-bottom-right-radius: 50px;
}
.package-section:hover .heading h2 {
  background: #fad04b;   
  color: #af0604;;           
  border-color: #fad04b; 
}
.package-section:hover .ul1 li {
    color: #af0604;
}
.package-section:hover .ul1 li i {
    color: #ffffff;
    background:#af0604;
}
.myhr {
  height: 15px;
  border: none;
  margin: 20px 450px;
  border-radius: 5px;
  background: linear-gradient(
    to right,
    #ffcccc 0%,     
    #ff6666 20%,    
    #cc0000 50%,     
    #ff6666 80%,     
    #ffcccc 100%     
  );
 box-shadow: 
    0 0 10px rgba(255, 0, 0, 0.4),
    0 0 15px rgba(255, 200, 0, 0.4);
}
@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .package-section {
    width: 320px;
  }
}
/* ---------  TABLET (max-width: 991px)------------*/
@media (max-width: 991px) {
   .section1 .col-xl-4 {
    width: 50%;        
    margin-bottom: 25px;
  }
 .section1 .col-xl-4:not(:last-child)::after {
    display: none;     
  }
 .heading {
    width: 100%;
  }
   .heading h2{
    font-size: 14px;
    width: 200px;
   }
 .package-section {
    width: 100%;
  }
 .myhr {
    margin: 20px 150px;   
  }
}
/* ------------MOBILE (max-width: 767px)------------- */
  @media (max-width: 767px) {
   .section1 .col-xl-4 {
    width: 100%;     
    padding: 0 10px;
  }
  .section1 .col-xl-4:not(:last-child)::after {
    display: none;    
  }
  .heading h2 {
    font-size: 14px;
    padding: 5px 10px;

  }
}
 .ul1 li {
    font-size: 14px;
    font-weight: bold;
    gap: 6px;
  }
.package-section {
    width: 100%;
    padding-left: 10px;
  }
.mainheading h1 {
    font-size: 28px;
  }
.mainheading h5 {
    font-size: 20px;
  }
.myhr {
    height: 10px;
    margin: 20px 40px;  
  }

/* --------- SMALL MOBILE (max-width: 480px)--------- */
@media (max-width: 480px) {
  .heading {
    width: 100%;
  }
  .heading h2 {
    font-size: 14px;
    width: 200px;
  }
  .package-section {
    padding-left: 5px;
  }
  .ul1 li {
    font-size: 13px;
  }
  .myhr {
    margin: 20px 20px;
    height: 8px;
  }
}
.page-close-btn {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #ffffff;
  color:#af0604 ;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  z-index: 9999;
}
.page-close-btn:hover{
    color:#af0604 ;
}
/*======Health Checkup Page End======*/

.modal-header .btn-close {
  background-color: #af0604;   
  border-radius: 50%;
  padding: 0.6rem;
  opacity: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M2.5 2.5l11 11m0-11l-11 11' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 1rem 1rem;
  background-position: center;
  background-repeat: no-repeat;
}
/*------Scroll Animate Start------- */
.scroll-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
  will-change: opacity, transform;
}

.scroll-animate.active {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/*------Scroll Animate End------- */
/*------Doctor Model1 Start------ */
#doctorModal1 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal1 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal1 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model1 End------ */
/*------Doctor Model2 Start------ */
#doctorModal2 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal2 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal2 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model2 End------ */
/*------Doctor Model3 Start------ */
#doctorModal3 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal3 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal3 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model3 End------ */
/*------Doctor Model4 Start------ */
#doctorModal4 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal4 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal4 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model4 End------ */

/*------Doctor Model5 Start------ */
#doctorModal5 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal5 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal5 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model5 End------ */

/*------Doctor Model6 Start------ */
#doctorModal6 .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#doctorModal6 .modal-content {
  height: 100%;
  border-radius: 14px;
}
#doctorModal6 .modal-body {
  overflow-y: auto;
}
/*------Doctor Model6 End------ */

/*------Appointment Model Start------ */

#appointmentModal .modal-dialog {
    display: flex;
    align-items: center;
    min-height: 100vh;
}
#appointmentModal .modal-content {
    border-radius: 12px;
    padding: 20px 10px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
   box-shadow: inset 0 0 12px rgba(114, 1, 9, 0.6);
}
#appointmentModal .modal-body h4 {
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 24px;
    color: #af0604;
    text-align: center;
}
#appointmentModal .pro-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 350px;
    margin-left: 50px;
    padding: 12px 18px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #f8f2d6;
    transition: 0.3s;
}
#appointmentModal .pro-row:hover {
    background: #af0604;
    transform: translateY(-2px);
}
#appointmentModal .pro-name {
    font-weight: 600;
    color: #af0604;
}
#appointmentModal .pro-number a {
    text-decoration: none;
    color: #af0604;
    font-weight: 500;
}
#appointmentModal .pro-row:hover .pro-name,
#appointmentModal .pro-row:hover .pro-number a {
    color: #fff;
}
#appointmentModal .modal-header {
    border: none;
    padding: 10px 15px 0;
}

/* ==================Mobile Responsive==================== */
@media (max-width: 576px) {

    #appointmentModal .modal-dialog {
        align-items: center;
        min-height: 100vh;
        margin: 10px;
    }
    #appointmentModal .modal-content {
        padding: 15px 8px 20px;
        border-radius: 10px;
    }
    #appointmentModal .modal-body h4 {
        font-size: 20px;
        margin-bottom: 18px;
    }
    #appointmentModal .pro-row {
        width: 100%;
        margin-left: 0;
        padding: 12px 14px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-radius: 8px;
    }
    #appointmentModal .pro-name {
        font-size: 14px;
    }
    #appointmentModal .pro-number a {
        font-size: 14px;
    }
    #appointmentModal .modal-header {
        padding: 8px 10px 0;
    }

}
/*------Appointment Model End------ */
/*------Hospitality Model Start------ */
#hospitalitytModal .modal-content{
    margin-top: 30%;
    border-radius: 15px
}
#hospitalitytModal .modal-content .modal-body h4{
    text-align: center;
    color:#af0604 ;
    font-weight: 600;
    margin-top: 0px;
}
#hospitalitytModal .modal-content .modal-body p{
    font-size: 16px;
    line-height: 30px;
    padding-left: 10px;
    padding-right: 10px;
}
/*------Hospitality Model End------ */

/*------Health Package Model Start------ */
#healthpackagerModal .modal-dialog {
  max-width: 90vw;
  width: 90vw;
  height: 90vh;
}
#healthpackagerModal .modal-content {
  height: 100%;
  border-radius: 14px;
}
#healthpackagerModal .modal-body {
  overflow-y: auto;
}
/*------Health Package Model End------ */
/*------Career1 Model Start------ */
#career1Modal .modal-dialog {

}
#career1Modal .modal-content {
  height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career1Modal .modal-body {
  overflow-y: auto;
}
/*------Career1 Model End------ */

/*------Career2 Model Start------ */
#career2Modal .modal-dialog {
 
}
#career2Modal .modal-content {
  height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career2Modal .modal-body {
  overflow-y: auto;
}
/*------Career2 Model End------ */

/*------Career3 Model Start------ */
#career3Modal .modal-dialog {
  
}
#career3Modal .modal-content {
 height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career3Modal .modal-body {
  overflow-y: auto;
}
/*------Career3 Model End------ */

/*------Career4 Model Start------ */
#career4Modal .modal-dialog {
 
}
#career4Modal .modal-content {
  height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career4Modal .modal-body {
  overflow-y: auto;
}
/*------Career4 Model End------ */

/*------Career5 Model Start------ */
#career5Modal .modal-dialog {
 
}
#career5Modal .modal-content {
  height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career5Modal .modal-body {
  overflow-y: auto;
}
/*------Career5 Model End------ */

/*------Career6 Model Start------ */
#career6Modal .modal-dialog {
 
}
#career6Modal .modal-content {
  height: 100%;
  border-radius: 14px;
  height: 90vh;
}
#career6Modal .modal-body {
  overflow-y: auto;
}
/*------Career6 Model End------ */

/* Announcement Right Box Start-------*/
.announcement-right-box-2 {
    position: absolute; 
    /*top: 17%;*/
    top: 110px;
    right: 24px;
    /*width: 240px;*/
    background: #fad04b;
    padding: 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    box-shadow:
    -4px 4px 15px rgba(175, 50, 58, 0.35),
    inset 0 0 6px rgba(175, 50, 58, 0.2);
    z-index: 999;
    cursor: pointer;
    animation: bubbleFloat 3s infinite ease-in-out;
    transition: transform 0.3s ease;
    overflow: visible;
    pointer-events: auto;
}
.announcement-right-box-2 * {
 
}
.announce-text2 img {
  pointer-events: none;
}
.announce-text2 {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f3f3f3);
  border-radius: 26px;
  /*padding: 20px;
  width: 100%;*/
  box-shadow:
    0 28px 45px rgba(0, 0, 0, 0.25),
    0 10px 18px rgba(0, 0, 0, 0.15);
}
.announce-text2::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 18px;
  box-shadow:
    inset 0 6px 12px rgba(0, 0, 0, 0.18),
    inset 0 -6px 12px rgba(255, 255, 255, 0.9);
}
.announce-text2 h5 {
  color: #af0604;
}
.announce-text2 p {
  color: #000;
}
#customTooltip {
  position: fixed;
  padding: 6px 12px;
  background: #000;
  color: #fff;
  font-size: 13px;
  border-radius: 3px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 99999;
  white-space: nowrap;
}
@keyframes bubbleFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* =================Tab Responsive=============== */

@media (max-width: 991px){

.announcement-right-box-2 {
    top: 14%;
    right: 15px;
    padding: 8px;
    border-radius: 14px;
}
.announce-text2 {
    border-radius: 22px;
}
.announce-text2 img {
    width: 300px !important;
    max-width: 100%;
    border-radius: 18px;
  }

}
/* ===============Mobile Responsive============== */

@media (max-width: 576px){

  .announcement-right-box-2 {
    position: absolute;
    top: 20%;
    /*right: 100px;*/
    padding: 6px;
    border-radius: 12px;
}
.announce-text2 {
    border-radius: 18px;
    overflow: hidden;
  }
  .announce-text2 img {
    width: 240px !important;
    max-width: 100%;
    display: block;
    border-radius: 15px;
  }
.announce-text2::after {
    inset: 6px;
    border-radius: 14px;
}
.popup-close1 {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
    top: -10px;
    right: -10px;
    z-index: 99999;
  }
}

.announcement-popup2 {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 9999;
}

.announcement-popup2.active {
  opacity: 1;
  visibility: visible;
}

.popup-content2 {
  background: linear-gradient(145deg, #ffffff, #f7f7f7);
  padding: 34px 32px;
  width: 620px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.25),
    0 10px 20px rgba(175,50,58,0.15);
  border: 1px solid rgba(175,50,58,0.15);
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.announcement-popup2.active .popup-content2 {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.popup-close2 {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #8b0000, #ffcc00);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 36px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.popup-close2:hover {
  transform: scale(1.1);
}
.popup-close3 {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #8b0000, #ffcc00);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
}
.popup-close3:hover {
  transform: scale(1.1);
}
.popup-close1 {
  position: absolute;
 /* top: 12px;*/
 /* right: 8px;*/
  width: 26px;
  height: 26px;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #8b0000, #ffcc00);
  color: #fff;
  border-radius: 50%;
  font-size: 22px !important;
  padding-left: 6px;
  line-height: 28px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
  transition: transform 0.25s ease;
  pointer-events: auto;
  z-index: 10000;
}

.popup-close1:hover {
  transform: scale(1.1);
}

/* ==========Popup Mobile Responsive Start================ */
/* Tablet */
@media (max-width: 768px) {

  .announcement-popup2 {
    padding: 20px;
  }

  .popup-content2 {
    width: 100%;
    max-width: 500px;
    padding: 22px 20px;
    border-radius: 18px;
  }

  .popup-content2 img {
    width: 100% !important;
    height: auto;
    border-radius: 14px !important;
  }

  .popup-close2 {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    top: 12px;
    right: 12px;
  }
}

/* Mobile */
@media (max-width: 576px) {

  .announcement-popup2 {
    padding: 15px;
  }

  .popup-content2 {
    width: 100%;
    max-width: 100%;
    padding: 16px;
    border-radius: 16px;
  }

  .popup-content2 img {
    width: 100% !important;
    height: auto;
    border-radius: 12px !important;
  }

  .popup-close2 {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 16px;
    top: 10px;
    right: 10px;
  }
}
/* ==========Popup Mobile Responsive End================ */

/* ==========Testimonial section start================ */
.testimonial-section {
    background: #ffffff;
    padding-top: 50px;
    padding-bottom: 50px;
}
.title {
    color: #af0604;
    font-size: 42px;
    font-weight: 700;
}
.subtitle {
    color: #666;
    max-width: 600px;
    margin: auto;
}
.testimonial-card {
   background: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    position: relative;
    text-align: center;
    /* BORDER */
    border: 1px solid rgba(114, 1, 9, 0.15);
    /* NORMAL SHADOW (soft) */
    /*box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);*/
     box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(114, 1, 9, 0.15);

    /* transition: all 0.35s ease;*/
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateY(20px) scale(0.96);
    animation: cardFadeIn 0.6s ease forwards;
    height: 330px ;
}
/* STAGGER (DELAY) */
.col-md-4:nth-child(1) .testimonial-card { animation-delay: 0.1s; }
.col-md-4:nth-child(2) .testimonial-card { animation-delay: 0.2s; }
.col-md-4:nth-child(3) .testimonial-card { animation-delay: 0.3s; }
.col-md-4:nth-child(4) .testimonial-card { animation-delay: 0.4s; }
.col-md-4:nth-child(5) .testimonial-card { animation-delay: 0.5s; }
.col-md-4:nth-child(6) .testimonial-card { animation-delay: 0.6s; }


@keyframes cardFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}
.testimonial-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #af0604, #fad04b);
    transition: 0.35s ease;
    transform: translateX(-50%);
    border-radius: 0 0 10px 10px;
}
.testimonial-card:hover {
    /*transform: translateY(-12px) scale(1.02);*/
     transform: translateY(6px) scale(0.98); /* கீழே press ஆகும் */
    /* STRONG + PREMIUM SHADOW */
    /*box-shadow: 
        0 18px 35px rgba(0, 0, 0, 0.15),
        0 6px 15px rgba(114, 1, 9, 0.15);
     border: 1px solid rgba(114, 1, 9, 0.35);*/
    /* box-shadow: 
        0 6px 12px rgba(0, 0, 0, 0.12),
        inset 0 3px 8px rgba(0, 0, 0, 0.08);*/
        box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}
.testimonial-card:hover::after {
   width: 70%;
}
.testimonial-card img {
    width: 145px;
    height: 145px;
    border-radius: 10%;
    border: 3px solid #fad04b;
    margin-top: 10px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.testimonial-card:hover img {
    transform: scale(1.08);
    border-color: #af0604;
}
.testimonial-card h5 {
    margin-top: 12px;
    font-weight: 600;
    color: #af0604;
}
.testimonial-card p {
    font-size: 13px;
    color: #000;
}
.quote {
    font-size: 50px;
    color: #fad04b;
    position: absolute;
    top: 10px;
    left: 15px;
}
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.video-wrapper {
    position: relative;
    display: inline-block;
}
/*.video-wrapper img {
    display: block;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: relative; 
    z-index: 1;
}*/
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(114, 1, 9, 0.6);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    z-index: 2;
}
.video-wrapper:hover .play-btn {
    background: #fad04b;
    color: #af0604;
}
.video-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
}
.video-content {
    position: relative;
    width: 80%;
    margin: 5% auto;
}
.video-content video {
    width: 100%;
    border-radius: 10px;
}
.close-btn {
    position: absolute;
    top: -30px;
    right: 0;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}
.video-description{
    margin-top: 15px;
    text-align: center;
    padding: 0 20px;
}

.video-description p{
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-weight: 400;
}
@media only screen and (max-width: 767px){

    .video-content{
        width: 92%;
        margin: 20% auto;
    }

    .video-content video{
        height: auto !important;
    }

    .video-description p{
        font-size: 14px;
        line-height: 24px;
    }
}
/* ========== Small Laptop =============== */

@media (min-width: 992px) and (max-width: 1199px) {

    .testimonial-card {
        height: 380px;
    }
}

/* ==========Testimonial section end================ */
/* ==========Index service  section end================ */
.service-card {
    border: 1px thin; #ccc;
    border-radius: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    overflow: hidden;
    margin-bottom: 30px;
    padding-top:15px;
    padding-left:12px;
    padding-right:12px;
    padding-bottom:0px;
    position: relative;
    background: #fff;
    display: flex;
    flex-direction: column;
    /*height:380px;*/
    height:320px;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    /*background: linear-gradient(to bottom, rgba(250, 208, 75, 0.7), rgba(209, 0, 0, 0.7));*/
    background: linear-gradient(to bottom, rgba(124, 124, 124, 0.2), rgba(255, 255, 255, 0.1));
}
.img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    flex-shrink: 0; 
    border: 1px solid #A9A9A9;
}
.card1-img-top {
    height: 160px; 
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    transform: translateY(-100%); 
    transition: transform 0.8s ease-in-out; 
}
.btn-action {
    margin-top: auto; 
    display: inline-flex;
    /*align-items: center;*/
    justify-content: center;
    height: 40px;
    width: 100%;
}
.share-img {
    position: absolute;
    transition: all 0.4s ease;
}
.learn-text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); 
    opacity: 0;
    font-size: 14px;
    white-space: nowrap; 
    color: #0d6efd;
    transition: all 0.4s ease;
}
.service-card:hover {
    transform: translateY(-4px); 
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08),
        0 20px 50px rgba(0, 0, 0, 0.12),
        0 30px 80px rgba(0, 0, 0, 0.15);
}
.service-card:hover .img-overlay {
    transform: translateY(0);
}
.service-card:hover .share-img {
    transform: scale(0.5);
    opacity: 0;
}
.service-card:hover .learn-text {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
.card-body1 {
    display: flex;
    flex-direction: column;
    flex-grow: 1; 
    /*padding: 10px 5px;*/
    padding-top:10px;
}
.card-title1 {
    /*font-size: 18px;*/
    font-size: 15px;
    font-weight: 600;
    line-height: 30px;
    /*min-height: 44px; */
    display: flex;
    /*align-items: center;*/
    justify-content: center;
}
.card-text1 {
    font-size: 0.9rem;
    color: #000;
    /*flex-grow: 1; */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* ========== Small Laptop =============== */

@media (min-width: 992px) and (max-width: 1199px) {

    .service-card {
        height: 360px;
    }
}
/* ==========Index service section end================ */

.main-footer{
    position: relative;
}
.ambulance-wrapper{
    margin-top: -160px !important;
    display: flex;
    justify-content: flex-end;
    /*padding-bottom: 80px;*/
}
.ambulance-rail{
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    padding-right:10px;
    background: #fff;
    border-right: 6px solid #d60000;
    border-radius: 50px 0 0 50px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}
.ambulance-rail:hover{
    transform: translateX(-8px); 
}
.ambulance-icon img{
    height: 120px !important;
    width: 200px;
}
.ambulance-text .title{
    font-size: 18px;
    font-weight: 800;
    color: #111;
}
.ambulance-text .sub{
    font-size: 17px;
    font-weight: 700;
    color: #d60000;
}
/* ============ Mobile (max-width: 576px) =============== */
@media (max-width: 576px) {

    .ambulance-icon img {
       height:50px !important;
       width: 60px;
    }
    .ambulance-text .sub{
        font-size: 15px !important;
        line-height: 22px;
    }
}
/* ===========Tab=============== */

@media (min-width: 577px) and (max-width: 991px) {

   .ambulance-icon img{
        height: 70px !important;
        width: 110px !important;
    }
}
/* ==========Thankyou section start================ */
.thankyou-flow {
    padding: 70px 0;
    background: #fff;
}
.thankyou-flow .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow-row {
    position: relative;
    padding: 25px;
    /*margin: 0 auto 35px auto;  /* center + spacing */*
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    max-width: 1100px;   
}
.thankyouimg-wrapper {
    /*width: 400px;*/
    /*height: 400px;*/
    /*border-radius: 50%;*/
   /* padding: 15px;*/
    /*box-shadow: 0 8px 25px rgba(0,0,0,0.15), 0 0 0 4px #fff;*/
    /*position: relative;*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    overflow: hidden;
}
/* rotating border 
.thankyouimg-wrapper::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(
        #ffd54f,
        #ffcc00,
        #af0604,
        #ffd54f
    );

    animation: rotateBorder 4s linear infinite;
}*/

/* inner white circle *
.thankyouimg-wrapper::after {
    content: "";
    position: absolute;
    inset: 8px;
    background: #fff;
    border-radius: 50%;
}*/
.flow-img {
   /* position: relative;*/
   /*z-index: 2;*/
   /*width: 500px;*/
    height: 300px;
    object-fit: contain;
   /*border:1px solid #ccc;*/
    box-shadow: 2px 4px 10px rgba(0,0,0,0.6);
    border: 10px solid #FFF;
    border-radius: 50px;
}
@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.center-img {
    max-width: 220px;
}
.flow-content {
    /*background: #fff7d6;*/
    padding: 14px 18px;
    border-radius: 12px;
   /* box-shadow: 0 6px 18px rgba(247, 225, 154, 0.35);*/
}
.flow-list {
    margin: 0;
    padding-left: 18px;
}
.flow-list li {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
    line-height: 50px;
}
.flow-text_1 {
    text-align: left;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.7;
    color: #af0604;
    /*background: #fff7d6;*/
    padding: 25px 25px;
    /*border-radius: 10px;*/
    border-left:8px solid #c70202;
    border-radius: 25px;
    background: linear-gradient(270deg, #e6e3e3, #fff, #e6e3e3);
    background-size: 400% 400%;
    border
    animation: borderMove 6s linear infinite;
    animation: float 10s ease-in-out infinite;
    /*box-shadow: 0 6px 18px rgba(247, 225, 154, 0.35);*/
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}
.flow-text_2 {
    text-align: right;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.7;
    color: #af0604;
   /*background: #fff7d6;*/
    padding: 25px 25px;
    /*border-radius: 10px;*/
    border-right:8px solid #c70202;
    border-radius: 25px;
    background: linear-gradient(270deg, #e6e3e3, #fff, #e6e3e3);
    background-size: 400% 400%;
    border
    animation: borderMove 6s linear infinite;
    animation: float 10s ease-in-out infinite;
    /*box-shadow: 0 6px 18px rgba(247, 225, 154, 0.35);*/
}
.flow-text_3 {
    text-align: right;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.7;
    color: #af0604;
   /*background: #fff7d6;*/
    padding: 25px 25px;
   /*border-radius: 10px;*/
    border-left:8px solid #c70202;
    border-right:8px solid #c70202;
    border-radius: 25px;
    background: linear-gradient(270deg, #e6e3e3, #fff, #e6e3e3);
    background-size: 400% 400%;
    border
    animation: borderMove 6s linear infinite;
    /*box-shadow: 0 6px 18px rgba(247, 225, 154, 0.35);*/
}
.flow-list {
    list-style: none;   
    margin-top: 10px;
    padding-left: 18px;
}
.flow-list li {
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.final-signature {
    /*margin-top: 40px;*/
    font-size: 35px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #a30000;
}
.vividteam
{
    color: #d9ab04;
}
.flow-row {
    position: relative;
    /*padding: 30px;*/
    /*margin-bottom: 40px;*/
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}

/* Animated Gradient Border */
.flow-row::before {
    content: "";
    position: absolute;
    inset: 0;
   /*padding: 7px; /* border thickness */*/
    border-radius: 55px;
    background: linear-gradient(270deg, #af0604, #f7e19a, #af0604);
    background-size: 400% 400%;
    animation: borderMove 6s linear infinite;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}
@keyframes borderMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.highlight2 {
    color: #b50003;
    font-weight: bold;
    font-size: 24px;
}
.simple-quote {
    font-size: 20px;
    color: #000;
    font-style: italic;
    position: relative;
    background: #fff;
    padding: 30px;
    border-left: 5px solid #0d6efd;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.doubleQuoateStart, .doubleQuoateEnd {
    font-size: 50px;
    line-height: 30px;
    color: #ed9f02;
    left: 10px;
    top: -1px;
    opacity: 0.5;
}
.simple-quote::after {
    content: "”";
    font-size: 60px;
    color: #0d6efd;
    position: absolute;
    right: 10px;
    bottom: -20px;
    opacity: 0.3;
}
.banner-img {
    width: 60%;
    /* banner height */
    overflow: hidden;
}
.banner-img img {
    width: 100%;
    object-fit: cover; 
}
/* ============Mobile (max-width: 576px)================== */
@media (max-width: 576px) {
.thankyou-flow {
    padding: 40px 10px;
    }
.flow-row {
    padding: 15px;
    border-radius: 25px;
}
.flow-img {
    width: 100%;
    height: auto; 
    border-radius: 20px;
}
.flow-text_1,
.flow-text_2,
.flow-text_3 {
    font-size: 18px;
    padding: 15px;
    text-align: center !important;
    line-height: 1.6;
}
.flow-list{
    padding-left: 0px;
}
.flow-list li {
    font-size: 10px;
    line-height: 28px;
    gap: 5px;
}
.highlight2 {
    font-size: 12px;
}
.flow-content {
    padding: 10px;
}
.banner-img {
    width: 100%;  
    margin-top: 20px;
}
.banner-img img {
    width: 100%;
    height: auto;
}
.doubleQuoateStart,
.doubleQuoateEnd {
    font-size: 35px;
    }
}
/* ===========Tab (577px - 991px) ================ */
@media (min-width: 577px) and (max-width: 991px) {
.flow-img {
    width: 100%;
    height: auto;
}
.flow-text_1,
.flow-text_2,
.flow-text_3 {
    font-size: 20px;
    padding: 20px;
}
.flow-list{
     padding-left: 0px;
} 
.flow-list li {
    font-size: 10px;
    line-height: 32px;
    gap: 8px;
}
.highlight2 {
    font-size: 14px;
}
.banner-img {
    width: 80%;
    margin: auto;
    }
}
@media (min-width: 992px) and (max-width: 1199px) {
.flow-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.flow-text_1,
.flow-text_2,
.flow-text_3 {
    font-size: 24px;
    padding: 18px;
    line-height: 34px;
}
.flow-list {
    padding-left: 0;
    margin-top: 10px;
}
.flow-list li {
    font-size: 14px;
    line-height: 28px;
    gap: 10px;
}
.highlight2 {
    font-size: 16px;
}
.banner-img {
    width: 90%;
    margin: auto;
    display: block;
    }
}
/* ==========Thankyou section End================ */
.hero{
    position: relative;
    overflow: hidden;
}
.gr-pill {
    position: absolute;
   /* position: fixed;*/
    /*left: 20px;*/
    /*right:24px;*/
    right: 30px;
    /*top: 100px;*/
    /*top:360px;*/
    bottom: 20px;
    /*width:250px;*/
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    /*z-index: 1;*/
     z-index: 5;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    background: rgba(213, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    padding: 7px;
    text-align: center;
}
.gr-pill:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 0 10px rgba(175, 6, 4, 0.7),
        0 0 20px rgba(250, 208, 75, 0.6),
        0 0 35px rgba(175, 6, 4, 0.5);

    animation: glowPulse 1.5s infinite alternate;
}
@keyframes glowPulse {
    from {
        box-shadow: 
            0 0 8px rgba(175, 6, 4, 0.6),
            0 0 18px rgba(250, 208, 75, 0.5);
    }
    to {
        box-shadow: 
            0 0 18px rgba(175, 6, 4, 0.9),
            0 0 40px rgba(250, 208, 75, 0.8);
    }
}
.gr-image{
    /*height:120px;*/
    width: 300px !important;
    /*width:96%;*/
    border-radius: 20px;
    box-shadow: 0px 4px 12px rgba(0,0,0,0.5);
}
@media(max-width:768px){
.gr-pill{
    /*right: 10px;*/
    bottom: 10px;
}
}