/**
* Template Name: Medicio
* Template URL: https://bootstrapmade.com/medicio-free-bootstrap-theme/
* Updated: Aug 07 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #ffffff;   /* White background */
  --default-color: #444444;      /* Normal text */
  --heading-color: #2D3691;      /* Dark Blue headings */
  --accent-color: #F27024;       /* Orange buttons & highlights */
  --surface-color: #ffffff;      /* Cards */
  --contrast-color: #ffffff;     /* White text on orange */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #2D3691;
  --nav-hover-color: #F27024;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #2D3691;
  --nav-dropdown-hover-color: #F27024;
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f7fcfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #2D3691;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2D3691;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Pulsating Play Button
------------------------------*/
.pulsating-play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
  border-radius: 50%;
  display: block;
  position: relative;
  overflow: hidden;
}

.pulsating-play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-play-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.pulsating-play-btn:hover:after {
  border-left: 15px solid var(--accent-color);
  transform: scale(20);
}

@keyframes pulsate-play-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*=========================
TOPBAR
=========================*/
/* Sticky Navbar */
#header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background:#fff;
}


/* Keep topbar normal */
.topbar{
    position: relative;
}


/* Branding stays on top while scrolling */
.branding{
    background:#fff;
    position: sticky;
    top:0;
    z-index:999;
    box-shadow:0 3px 15px rgba(0,0,0,0.08);
}
.topbar{
    background:#2D3691;
    padding:10px 0;
}

.top-info{
    color:#fff;
    font-size:14px;
    display:flex;
    align-items:center;
    margin-bottom:5px;
}

.top-info i{
    color:#F27024;
    margin-right:8px;
    font-size:15px;
}

.top-link{
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
    display:flex;
    align-items:center;
}

.top-link i{
    color:#F27024;
    margin-right:6px;
}

.top-link:hover{
    color:#F27024;
}

.top-whatsapp-btn{
    background:#25D366;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    text-decoration:none;
    display:flex;
    align-items:center;
    font-size:14px;
    font-weight:600;
}


.top-whatsapp-btn i{
    margin-right:6px;
    font-size:16px;
}

/*=========================
HEADER
=========================*/

.branding{
    background:#fff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:999;
}

.logo img{
    height:40px;
    transition:.3s;
}


/*=========================
NAVBAR
=========================*/

.navmenu ul{
    display:flex;
    align-items:center;
    margin:0;
    padding:0;
    list-style:none;
}

.navmenu ul li{
    margin-left:20px;
}

.navmenu ul li a{
    color:#2D3691;
    text-decoration:none;
    font-weight:600;
    font-size:15px;
    transition:.3s;
}

.navmenu ul li a:hover,
.navmenu ul li a.active{
    color:#F27024;
}


/*=========================
TABLET
=========================*/

/*=========================
TABLET RESPONSIVE
=========================*/

@media (max-width:991px){

    .logo img{
        height:60px;
    }

    .top-info{
        font-size:13px;
    }

    .top-link{
        font-size:13px;
    }

    .whatsapp-btn{
        padding:7px 14px;
        font-size:13px;
    }

}


/*=========================
MOBILE RESPONSIVE
=========================*/

@media (max-width:767px){

    /* Topbar */

    .topbar .row{
        flex-direction:column;
    }


    .topbar .col-lg-6,
    .topbar .col-md-12{
        width:100%;
    }


    .topbar .d-flex{
        justify-content:center !important;
        align-items:center !important;
    }


    .top-info{
        justify-content:center;
        margin:5px 0;
        font-size:13px;
        text-align:center;
    }


    .top-link{
        justify-content:center;
        margin:5px 0;
        font-size:13px;
    }


    .whatsapp-btn{
        margin:5px 0;
        padding:8px 15px;
        font-size:13px;
    }


    /* Header */

    .branding .container{

        padding:10px 15px;

    }


    .logo img{

        height:40px;

    }



    /* Mobile Navbar */

    .navmenu{

        position:static;

    }


    .navmenu ul{

        display:none;

    }


    .navmenu.mobile-nav-active ul{

        display:flex;

        position:absolute;

        top:100%;

        left:0;

        width:100%;

        background:#fff;

        flex-direction:column;

        padding:15px 0;

        box-shadow:0 5px 20px rgba(0,0,0,.15);

    }


    .navmenu ul li{

        width:100%;

        text-align:center;

    }


    .navmenu ul li a{

        padding:12px 20px;

        display:block;

        font-size:16px;

    }


    .mobile-nav-toggle{

        display:block;

        font-size:30px;

        color:#2D3691;

        cursor:pointer;

    }

}


/*=========================
SMALL MOBILE
=========================*/

@media (max-width:480px){

    .logo img{

        height:40px;

    }


    .top-info{

        font-size:12px;

    }


    .top-link{

        font-size:12px;

    }


    .navmenu ul li a{

        font-size:15px;

    }

}

/* Mobile again */
/* Fix Mobile Menu */

@media (max-width:1199px){

    .navmenu ul{
        display:none !important;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        padding:20px 0;
        margin:0;
        flex-direction:column;
        box-shadow:0 5px 20px rgba(0,0,0,.15);
        z-index:9999;
    }


    body.mobile-nav-active .navmenu ul{

        display:flex !important;

    }


    .navmenu ul li{

        width:100%;
        text-align:center;
        list-style:none;

    }


    .navmenu ul li a{

        display:block;
        padding:15px 20px;
        color:#2D3691;
        font-size:16px;

    }

}

/*=========================
SMALL MOBILE
=========================*/

@media (max-width:480px){

.top-info{
    font-size:12px;
}

.top-link{
    font-size:12px;
}

.whatsapp-btn{
    font-size:12px;
    padding:7px 12px;
}

.logo img{
    height:48px;
}

.navmenu ul li a{
    font-size:15px;
    padding:12px;
}

}
/*=================================
 TABLET + MOBILE TOPBAR
 2 ITEMS PER ROW
 KEEP PHONE + WHATSAPP
=================================*/


@media(max-width:991px){


    .topbar{

        padding:8px 5px;

    }


    .topbar .row{

        display:grid !important;
        grid-template-columns:repeat(2,1fr);
        gap:5px;
        align-items:center;

    }


    .topbar .col-lg-6,
    .topbar .col-md-12{

        width:100%;
        padding:0;

    }


    .topbar .d-flex{

        display:flex !important;
        justify-content:center !important;
        align-items:center !important;
        flex-wrap:wrap;
        gap:8px;

    }


    .top-info,
    .top-link,
    .whatsapp-btn{

        justify-content:center;
        font-size:12px;
        margin:3px 0;
        white-space:nowrap;

    }


    .whatsapp-btn{

        padding:6px 10px;

    }


}



/*=================================
 MOBILE
=================================*/

@media(max-width:767px){


    .top-info,
    .top-link{

        font-size:11px;

    }


    .whatsapp-btn{

        font-size:11px;
        padding:5px 8px;

    }


    .top-info i,
    .top-link i{

        font-size:11px;
        margin-right:4px;

    }


    .whatsapp-btn i{

        font-size:12px;
        margin-right:4px;

    }

}
/*=========================================
MOBILE - HIDE TOPBAR ON SCROLL
SHOW ONLY LOGO + MENU
=========================================*/

@media (max-width:991px){

    /* Smooth animation */
    .topbar{
        transition:all .3s ease;
    }

    /* Hide topbar after scrolling */
    body.mobile-scrolled .topbar{
        display:none !important;
    }

    /* Keep header at the top */
    body.mobile-scrolled .branding{
        position:sticky;
        top:0;
        z-index:9999;
        background:#fff;
        box-shadow:0 3px 15px rgba(0,0,0,.08);
    }

}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/*====================================
            FOOTER
====================================*/

.footer{
    position: relative;
    overflow: hidden;
    padding: 90px 0 30px;
    background:
        linear-gradient(rgba(20,35,100,.90), rgba(20,35,100,.90)),
        url("assets/img/Blue Color.jpg.jpeg") center center no-repeat;
    background-size: cover;
    color: #fff;
}

/* Decorative overlay */

.footer::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.03);
    pointer-events: none;
}

.footer-top{
    position: relative;
    z-index: 2;
}

/* Logo */

/*==================================
        FOOTER LOGO
==================================*/

.footer-logo-box{

    width:190px;

    background:#ffffff;

    padding:18px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

    box-shadow:0 15px 40px rgba(0,0,0,.18);

    transition:.4s;

    border:3px solid rgba(255,255,255,.35);

}

.footer-logo-box:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(242,112,36,.30);

}

.footer-logo{

    width:100%;

    max-height:70px;

    object-fit:contain;

}

/* About */

.footer-about{
    color: rgba(255,255,255,.85);
    line-height: 1.9;
    margin-bottom: 25px;
}

/* Headings */

.footer h4{
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer h4::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 55px;
    height: 4px;
    background: #F27024;
    border-radius: 50px;
}

/* Contact */

.footer-contact p{
    color: rgba(255,255,255,.85);
    margin-bottom: 14px;
}

.footer-contact i{
    color: #F27024;
    margin-right: 10px;
}

/* Links */

.footer ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li{
    margin-bottom: 14px;
}

.footer ul li a{
    color: rgba(255,255,255,.85);
    text-decoration: none;
    transition: .3s;
}

.footer ul li a:hover{
    color: #F27024;
    padding-left: 8px;
}

/* Working Hours */

.footer-hours{
    margin-top: 25px;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.footer-hours h5{
    color: #F27024;
    margin-bottom: 10px;
}

.footer-hours p{
    color: #fff;
    margin: 0;
}

@media (max-width:991px){

.footer{

    text-align:left;

}

.footer .row{

    row-gap:30px;

}

}

@media (max-width:767px){

.footer{

    padding:40px 0 15px;

}

.footer-logo-box{

    width:110px;

}

.footer-logo{

    max-height:45px;

}

.footer h4{

    font-size:16px;

}

.footer-about{

    display:none;

}

.footer-contact p{

    font-size:12px;

}

.footer ul li a,

.footer ul li{

    font-size:12px;

}

.footer-hours{

    display:none;

}

.social-links{

    justify-content:flex-start;

}

.social-links a{

    width:32px;

    height:32px;

    font-size:14px;

}

}

/* Social */

.social-links{
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-links a{
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .35s;
}

.social-links a:hover{
    background: #F27024;
    transform: translateY(-5px);
}

/* Bottom */

.footer hr{
    border-color: rgba(255,255,255,.15);
    margin: 60px 0 25px;
}

.copyright{
    position: relative;
    z-index: 2;
    text-align: center;
}

.copyright p{
    color: rgba(255,255,255,.85);
    margin-bottom: 8px;
}

.copyright strong{
    color: #fff;
}
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
/* WhatsApp position */
/* Floating Button Container */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}


/* Common Button Style */
.float-btn,
.scroll-top {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: all .3s ease;
    padding: 0;
}


/* WhatsApp */
.whatsapp-btn {
    background:#25D366;
}

.whatsapp-btn i {
    font-size:27px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0;
    padding:0;
}


.whatsapp-btn:hover {
    background:#128C7E;
    transform:translateY(-5px);
    color:#fff;
}


/* Call */
.call-btn {
    background:#F27024;
}

.call-btn i {
    font-size:22px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}


.call-btn:hover {
    background:#d95c12;
    transform:translateY(-5px);
    color:#fff;
}


/* Scroll Arrow */
.scroll-top {
    background:#d95c12;
    visibility:hidden;
    opacity:0;
}

.scroll-top.active {
    visibility:visible;
    opacity:1;
}


.scroll-top i {
    font-size:32px;
    line-height:1;
    display:flex;
    align-items:center;
    justify-content:center;
}


.scroll-top:hover {
    background:#1e256b;
    transform:translateY(-5px);
}


/* Mobile Responsive */
@media(max-width:767px){

    .floating-buttons {
        right:15px;
        bottom:15px;
        gap:10px;
    }


    .float-btn,
    .scroll-top {
        width:42px;
        height:42px;
    }


    .whatsapp-btn i {
        font-size:23px;
    }


    .call-btn i {
        font-size:19px;
    }


    .scroll-top i {
        font-size:27px;
    }
}
/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 120px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 100px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*=============================================
  HERO CAROUSEL
=============================================*/

#hero-carousel {
    width:100%;
    overflow:hidden;
}


#hero-carousel .carousel-item {
    height:100vh;
    position:relative;
}


/* Background Image */
#hero-carousel .carousel-item img {
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Vision Text - Blue Background */

.vision-text{

font-size:18px;
line-height:1.8;
color:white;

}


.vision-text .vision-title{

color:#F27024;
font-weight:800;

}


.vision-text span:not(.vision-title){

color:#ffffff;
font-weight:700;

}


/* Rays Tagline */



/* Overlay */
#hero-carousel .carousel-item::before {
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(45,54,145,0.90),
        rgba(45,54,145,0.55),
        rgba(242,112,36,0.25)
    );
}


/* Content */
.hero-content {
    position:relative;
    z-index:2;
    padding-top:180px;
    color:#ffffff;
}


/* Heading */
.hero-content h2 {
    font-size:55px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:25px;
    animation:slideDown 1s ease;
}


.hero-content h2 span {
    color:#F27024;
}



/* Paragraph */
.hero-content p {
    max-width:800px;
    font-size:18px;
    line-height:1.8;
    font-weight:400;
    margin-bottom:30px;
    animation:slideUp 1.2s ease;
}



/* Button */
.btn-get-started {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:14px 38px;

    background:#F27024;
    color:#ffffff;

    border-radius:50px;

    font-size:16px;
    font-weight:600;

    text-decoration:none;

    box-shadow:
    0 10px 25px rgba(242,112,36,0.35);

    transition:all .4s ease;

    animation:zoomIn 1.4s ease;
}



.btn-get-started:hover {

    background:#ffffff;
    color:#2D3691;

    transform:translateY(-6px);

    box-shadow:
    0 15px 30px rgba(0,0,0,0.25);

}



/* Carousel arrows */

.carousel-control-prev,
.carousel-control-next {

    width:70px;
    height:70px;

    top:50%;
    transform:translateY(-50%);

    opacity:1;

}


.carousel-control-prev {
    left:30px;
}


.carousel-control-next {
    right:30px;
}



.carousel-control-prev-icon,
.carousel-control-next-icon {

    width:50px;
    height:50px;

    background-color:#F27024;

    border-radius:50%;

    background-size:20px;

    transition:.3s;

}



.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {

    background-color:#2D3691;

    transform:scale(1.1);

}



/* Hide arrows on welcome slide initially */
.carousel-item:first-child ~ .carousel-control-prev,
.carousel-item:first-child ~ .carousel-control-next {
    display:flex;
}



/* Animation when slide changes */

.carousel-item h2,
.carousel-item p,
.carousel-item .btn-get-started {

    animation-duration:1s;
    animation-fill-mode:both;

}


.carousel-item.active h2 {

    animation-name:slideDown;

}


.carousel-item.active p {

    animation-name:slideUp;

}


.carousel-item.active .btn-get-started {

    animation-name:zoomIn;

}



/* Animations */

@keyframes slideDown {

    from {
        opacity:0;
        transform:translateY(-50px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }

}



@keyframes slideUp {

    from {
        opacity:0;
        transform:translateY(50px);
    }

    to {
        opacity:1;
        transform:translateY(0);
    }

}



@keyframes zoomIn {

    from {
        opacity:0;
        transform:scale(.8);
    }

    to {
        opacity:1;
        transform:scale(1);
    }

}



/*=============================================
  TABLET RESPONSIVE
=============================================*/

@media(max-width:991px){

    #hero-carousel .carousel-item {
        height:85vh;
    }


    .hero-content {

        padding-top:140px;
        padding-left:20px;
        padding-right:20px;

    }


    .hero-content h2 {

        font-size:42px;

    }


    .hero-content p {

        font-size:16px;

    }

}



/*=============================================
  MOBILE RESPONSIVE
=============================================*/

@media(max-width:767px){


    #hero-carousel .carousel-item {

        height:90vh;

    }



    .hero-content {

        padding-top:80px;

        text-align:center;

    }



    .hero-content h2 {

        font-size:32px;

    }



    .hero-content p {

        font-size:15px;

        line-height:1.7;

    }



    .btn-get-started {

        padding:12px 28px;

        font-size:14px;

    }



    .carousel-control-prev,
    .carousel-control-next {

        width:45px;

        height:45px;

    }



    .carousel-control-prev {

        left:10px;

    }


    .carousel-control-next {

        right:10px;

    }



    .carousel-control-prev-icon,
    .carousel-control-next-icon {

        width:38px;

        height:38px;

    }

}
/* FIX HERO TEXT VISIBILITY */

#hero-carousel .carousel-item {
    position: relative;
}


#hero-carousel .carousel-item::before {
    z-index: 1;
}


#hero-carousel .carousel-item .container {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;

    transform: translateY(-50%);

    z-index: 10 !important;

    color: #ffffff;
}


#hero-carousel h2 {
    display: block !important;

    color: #ffffff !important;

    font-size: 55px;

    font-weight: 700;

    visibility: visible !important;

    opacity: 1 !important;
}


#hero-carousel h2 span {

    color:#F27024 !important;

}


#hero-carousel p {

    display:block !important;

    color:#ffffff !important;

    font-size:18px;

    max-width:800px;

    visibility:visible !important;

    opacity:1 !important;

}


#hero-carousel .btn-get-started {

    display:inline-block !important;

    visibility:visible !important;

    opacity:1 !important;

}
/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 30px;
  transition: all 0.3s ease-in-out;
  height: 100%;
  position: relative;
  z-index: 1;
}

.featured-services .service-item:before {
  content: "";
  position: absolute;
  background: var(--accent-color);
  inset: 100% 0 0 0;
  transition: all 0.3s;
  z-index: -1;
}

.featured-services .service-item .icon {
  margin-bottom: 10px;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 36px;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
}

.featured-services .service-item h4 a {
  color: var(--heading-color);
  transition: ease-in-out 0.3s;
}

.featured-services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  transition: ease-in-out 0.3s;
}

.featured-services .service-item:hover h4 a,
.featured-services .service-item:hover .icon i,
.featured-services .service-item:hover p {
  color: var(--contrast-color);
}

.featured-services .service-item:hover:before {
  background: var(--accent-color);
  inset: 0;
  border-radius: 0px;
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 80px 0;
  position: relative;
  clip-path: inset(0);
}

.call-to-action .container {
  position: relative;
  z-index: 3;
}

.call-to-action h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--default-color);
}

.call-to-action p {
  color: var(--default-color);
}

.call-to-action .cta-btn {
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 4px;
  transition: 0.3s;
  margin: 10px;
  border: 2px solid var(--contrast-color);
  color: var(--contrast-color);
}

.call-to-action .cta-btn:hover {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
  font-size: 1.75rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 10px 0 0 0;
  display: flex;
}

.about .content ul i {
  color: var(--accent-color);
  margin-right: 0.5rem;
  line-height: 1.2;
  font-size: 1.25rem;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .pulsating-play-btn {
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
}

/* # manager section */

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

.stats .stats-item i {
  color: var(--accent-color);
  font-size: 42px;
  line-height: 0;
  margin-right: 20px;
}

.stats .stats-item span {
  color: var(--heading-color);
  font-size: 36px;
  display: block;
  font-weight: 600;
}

.stats .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--heading-font);
  font-size: 16px;
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .features-image {
  position: relative;
  min-height: 400px;
}

.features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.features h3:after {
  content: "";
  background: var(--accent-color);
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  left: 0;
  bottom: 0;
}

.features .icon-box {
  margin-top: 50px;
}

.features .icon-box i {
  color: var(--accent-color);
  background-color: var(--surface-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.features .icon-box:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.features .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.features .icon-box h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.features .icon-box h4 a:hover {
  color: var(--accent-color);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
/*=========================
      SERVICES SECTION
=========================*/

.services .section-title{
    padding-bottom:20px;
}


/* 4 cards in one row */

.services .row > div{
    flex:0 0 25%;
    max-width:25%;
}


/* Service Card */

.services .service-item{

    background:#ffffff;

    padding:18px 12px;

    border-radius:15px;

    box-shadow:0 5px 18px rgba(0,0,0,0.10);

    transition:.4s;

    height:150px;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    overflow:hidden;

}



.services .service-item:hover{

    transform:translateY(-8px);

    box-shadow:0 12px 25px rgba(0,0,0,0.18);

}



/* Icon */

.services .service-item .icon{

    width:55px;

    height:55px;

    border-radius:50%;

    background:#F27024;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:10px;

    transition:.4s;

}



.services .service-item .icon i{

    color:white;

    font-size:22px;

}



/* Heading */

.services .service-item h3{

    color:#2D3691;

    font-size:17px;

    font-weight:700;

    margin:0;

}



/* Description */

.services .service-item p{

    display:none;

}



/* Hover */

.services .service-item:hover .icon{

    background:#2D3691;

    transform:rotateY(360deg);

}



.services .service-item:hover h3{

    color:#F27024;

}



/* Tablet */

/*=========================
      TABLET + MOBILE VIEW
=========================*/

@media(max-width:991px){

    .services .row{
        row-gap:20px;
    }


    /* 2 cards in one row */

    .services .row > div{

        flex:0 0 50%;

        max-width:50%;

    }


    .services .service-item{

        height:140px;

    }

}



/*=========================
      SMALL MOBILE VIEW
=========================*/

@media(max-width:400px){

    .services .row > div{

        flex:0 0 50%;

        max-width:50%;

    }


    .services .service-item{

        height:135px;

        padding:15px 8px;

    }


    .services .service-item h3{

        font-size:15px;

    }


    .services .service-item .icon{

        width:50px;

        height:50px;

    }


    .services .service-item .icon i{

        font-size:20px;

    }

}


/*--------------------------------------------------------------
# Doctors Section
--------------------------------------------------------------*/
/* Doctor Name */
/*==============================================
 DOCTOR CAROUSEL SECTION
==============================================*/


.doctor-carousel-section{

background:#f8faff;
overflow:hidden;

}


.doctor-carousel-section .container{

max-width:1300px;

}


/* Heading */

.branch-badge{

display:inline-block;

background:#F27024;

color:#fff;

padding:8px 25px;

border-radius:25px;

font-size:14px;

font-weight:600;

}



.doctor-carousel-section h2{

color:#2D3691;

font-weight:800;

margin-top:15px;

}


.doctor-carousel-section h2 span{

color:#F27024;

}



.doctor-carousel-section p{

color:#777;

}




/* CAROUSEL */


.doctor-slider{

overflow:hidden;

width:100%;

}



.doctor-track{

display:flex;

width:max-content;

animation:doctorMove 30s linear infinite;

}



.doctor-track:hover{

animation-play-state:paused;

}



.doctor-item{

flex:0 0 auto;

width:380px;

padding:15px;

}




@keyframes doctorMove{


0%{

transform:translateX(0);

}


100%{

transform:translateX(-50%);

}


}



/* CARD */


.doctor-card{

background:#fff;

border-radius:25px;

padding:25px;

text-align:center;

height:100%;

box-shadow:
0 10px 30px rgba(45,54,145,.12);

border-top:5px solid #F27024;

transition:.4s;

}



.doctor-card:hover{

transform:translateY(-10px);

}




/* IMAGE */


.doctor-image{

position:relative;

display:inline-block;

}



.doctor-image img{

width:120px;

height:120px;

object-fit:cover;

border-radius:50%;

border:5px solid #2D3691;

padding:3px;

}



.online-dot{

position:absolute;

right:8px;

bottom:12px;

width:20px;

height:20px;

background:#00c853;

border:4px solid white;

border-radius:50%;

animation:pulse 1.5s infinite;

}



@keyframes pulse{

50%{

transform:scale(1.4);

opacity:.5;

}

}



/* TEXT */


.doctor-card h3{

font-size:20px;

font-weight:800;

color:#2D3691;

margin-top:20px;

}



.doctor-card h6{

color:#555;

}



.department{

display:inline-block;

background:#F27024;

color:white;

padding:6px 18px;

border-radius:25px;

font-size:13px;

margin:10px 0;

}



/* DETAILS */


.doctor-details-box{

display:flex;

gap:15px;

margin:15px 0;

}



.doctor-details-box div{

background:#f5f7ff;

padding:12px;

border-radius:15px;

flex:1;

}



.doctor-details-box small{

display:block;

color:#777;

}



.doctor-details-box strong{

color:#2D3691;

}



/* TIME */


.doctor-time{

background:#f8f9ff;

padding:12px;

border-radius:15px;

margin-bottom:15px;

}




/* BUTTON */


.appointment-btn{

display:inline-block;

background:#2D3691;

color:#fff;

padding:10px 25px;

border-radius:30px;

text-decoration:none;

font-weight:600;

}



.appointment-btn:hover{

background:#F27024;

color:white;

}




/* TABLET */

@media(max-width:991px){


.doctor-item{

width:50vw;

}


}



/* MOBILE */


@media(max-width:576px){


.doctor-item{

width:100vw;

}


.doctor-track{

animation-duration:25s;

}


.doctor-image img{

width:100px;

height:100px;

}


}
/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
/* Heading */

/* ==========================================
   YAS MEDICAL CENTER PACKAGE SECTION
========================================== */


/*==================================================
   YAS MEDICAL CENTER PACKAGE SECTION
===================================================*/

.insurance-section{
    width:100%;
    padding:90px 0;
    background:url("assets/img/package-bg.jpg") center center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
}

.insurance-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
    rgba(32,60,170,.90),
    rgba(25,120,220,.82));
}

.insurance-section .container{
    position:relative;
    z-index:2;
}

/*======================
      HEADING
=======================*/

/*=================================
        BEAUTIFUL PACKAGE HEADING
==================================*/

/*====================================
        HEALTH PACKAGES SECTION
====================================*/

.packages-section{
    padding:90px 0;
    background:#f5f8ff;
    position:relative;
    overflow:hidden;
}

/* Background Circles */

.packages-section::before{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:rgba(45,54,145,.05);
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.packages-section::after{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(242,112,36,.05);
    border-radius:50%;
    bottom:-120px;
    right:-120px;
}

/*====================================
            HEADING
====================================*/

/*==========================
   PACKAGE HEADING BLUE BG
===========================*/

.package-heading{
    max-width:850px;
    margin:auto;
}


.package-badge{

    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#ffffff;

    color:#2D3691;

    padding:12px 30px;

    border-radius:50px;

    font-size:14px;

    font-weight:800;

    letter-spacing:1px;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    margin-bottom:25px;

}


.package-badge i{

    color:#F27024;

    font-size:18px;

}


.package-heading h2{

    color:#ffffff;

    font-size:48px;

    font-weight:800;

    margin-bottom:20px;

    text-transform:capitalize;

}


.package-heading h2::after{

    content:"";

    display:block;

    width:90px;

    height:5px;

    margin:18px auto;

    border-radius:10px;

    background:#F27024;

}










.package-heading p{

    color:rgba(255,255,255,.9);

    font-size:18px;

    line-height:32px;

    max-width:750px;

    margin:auto;

}



@keyframes pulseHeart{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.15);
    }

    100%{
        transform:scale(1);
    }

}



/* Mobile */

@media(max-width:767px){

.package-heading h2{

    font-size:32px;

}

.package-heading p{

    font-size:16px;

    line-height:26px;

}

}
.package-icon{
    width:80px;
    height:80px;
    margin:auto;
    margin-bottom:20px;
    background:linear-gradient(135deg,#eef3ff,#ffffff);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 12px 25px rgba(45,54,145,.12);
}

.package-icon i{
    font-size:38px;
    color:#2D3691;
    transition:.4s;
}

.package-card:hover .package-icon{
    background:linear-gradient(135deg,#2D3691,#4b59d4);
}

.package-card:hover .package-icon i{
    color:#fff;
    transform:scale(1.15) rotate(10deg);
}

@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.1);}
    100%{transform:scale(1);}
}
/*====================================
            PACKAGE CARD
====================================*/

.package-card{

    background:#fff;

    border-radius:25px;

    padding:35px 28px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    position:relative;

    overflow:hidden;

    height:100%;

}

.package-card::before{

    content:"";

    position:absolute;

    width:100%;

    height:6px;

    background:linear-gradient(90deg,#2D3691,#F27024);

    top:0;

    left:0;

}

.package-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);

}

.package-icon{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#eef3ff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:40px;

    margin-bottom:20px;

}

.package-card h3{

    font-size:24px;

    color:#2D3691;

    font-weight:700;

    margin-bottom:15px;

}

.price{

    display:inline-block;

    background:#F27024;

    color:#fff;

    padding:12px 28px;

    border-radius:50px;

    font-size:28px;

    font-weight:800;

    margin-bottom:25px;

}

.package-card ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.package-card ul li{

    padding:8px 0;

    color:#555;

    font-size:16px;

}

.package-card ul li::before{

    content:"✔";

    color:#27ae60;

    margin-right:8px;

}

/*====================================
            BUTTON
====================================*/

.view-btn{

    background:#2D3691;

    color:#fff;

    border:none;

    border-radius:40px;

    padding:12px 30px;

    font-size:15px;

    font-weight:700;

    transition:.3s;

}

.view-btn:hover{

    background:#F27024;

    transform:translateY(-3px);

}

/*====================================
            POPUP
====================================*/

.package-popup{

position:fixed;

top:0;
left:0;

width:100%;
height:100%;

background:rgba(0,0,0,.55);

backdrop-filter:blur(8px);

display:flex;

align-items:center;

justify-content:center;

z-index:9999;

opacity:0;

visibility:hidden;

transition:.4s;

}


.package-popup.active{

opacity:1;

visibility:visible;

}



.popup-box{

background:#fff;

width:90%;

max-width:500px;

max-height:85vh;

overflow-y:auto;

padding:35px;

border-radius:25px;

box-shadow:0 25px 60px rgba(0,0,0,.3);

transform:scale(.7);

transition:.4s;

position:relative;

}



.package-popup.active .popup-box{

transform:scale(1);

}



.popup-box h3{

color:#2D3691;

font-size:28px;

font-weight:800;

margin-bottom:20px;

}


.popup-box h3 i{

color:#F27024;

margin-right:8px;

}



.popup-price{

display:inline-block;

background:#F27024;

color:#fff;

padding:10px 25px;

border-radius:50px;

font-size:22px;

font-weight:700;

margin-bottom:20px;

}



.popup-box ul{

padding:0;

list-style:none;

}



.popup-box ul li{

padding:8px 0;

color:#555;

}



.popup-box ul li::before{

content:"✔";

color:#27ae60;

font-weight:bold;

margin-right:10px;

}
.popup-header{

    position:sticky;

    top:0;

    background:#fff;

    padding-bottom:15px;

    z-index:5;

}


.back-btn{

    display:flex;

    align-items:center;

    gap:8px;

    background:#2D3691;

    color:#fff;

    border:none;

    padding:10px 25px;

    border-radius:50px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}


.back-btn:hover{

    background:#F27024;

    transform:translateX(-5px);

}
/*====================================
        RESPONSIVE
====================================*/

@media(max-width:991px){

.package-heading h2{

font-size:34px;

}

}

@media(max-width:767px){

.package-heading h2{

font-size:28px;

}

.package-card{

padding:30px 22px;

}

.popup-box{

padding:25px;

}

}
/* -------------------------------------------------------*/ 
/* Insurance Card */

.insurance-section{
    width:100vw;
    margin-left:calc(-50vw + 50%);
    padding:80px 0;
    background:url("assets/img/insurance-bg.jpg") center center;
    background-size:cover;
    background-repeat:no-repeat;
    position:relative;
    overflow:hidden;
}

.insurance-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(45,54,145,.75);
}

.insurance-section .container,
.insurance-slider{
    position:relative;
    z-index:2;
}

.section-title h2{
    color:#fff;
    font-size:42px;
    font-weight:700;
}

.section-title p{
    color:#fff;
    margin-bottom:40px;
}

.insurance-slider{
    width:100%;
    overflow:hidden;
}

.insurance-track{
    display:flex;
    width:max-content;
    animation:scroll 25s linear infinite;
}

.insurance-card{
    width:180px;
    height:120px;
    margin:0 15px;
    background:#fff;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(0,0,0,.2);
}

.insurance-card img{
    width:120px;
    height:70px;
    object-fit:contain;
}


@keyframes scroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/*====================================================
            INSURANCE PARTNERS SECTION
====================================================*/

.insurance-section{
    background:#f8fbff;
    padding:90px 0;
    overflow:hidden;
    position:relative;
}

/*====================================================
                    HEADING
====================================================*/

.section-title{
    text-align:center;
    margin-bottom:60px;
    position:relative;
    z-index:10;
}

.section-title h2{
    font-size:44px;
    font-weight:800;
    color:#2D3691;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:18px;
}

.section-title h2::after{
    content:"";
    display:block;
    width:90px;
    height:4px;
    background:#F27024;
    margin:18px auto 0;
    border-radius:30px;
}

.section-title p{
    font-size:18px;
    color:#666;
    max-width:700px;
    margin:20px auto 0;
    line-height:30px;
}

/*====================================================
                    SLIDER
====================================================*/

.insurance-slider{
    width:100%;
    overflow:hidden;
    position:relative;
    padding:20px 0;
}

.insurance-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:insuranceScroll 30s linear infinite;
}

.insurance-slider:hover .insurance-track{
    animation-play-state:paused;
}

/*====================================================
                  INSURANCE CARD
====================================================*/

.insurance-card{
    width:190px;
    height:125px;
    background:#ffffff;
    border:2px solid #e5e5e5;
    border-radius:18px;
    margin:0 15px;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.4s;
    position:relative;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

/* Blue top border */

.insurance-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#2D3691;
}

/* Orange bottom line */

.insurance-card::after{
    content:"";
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    width:0;
    height:4px;
    background:#F27024;
    transition:.4s;
}

/* Hover */

.insurance-card:hover{
    border-color:#2D3691;
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(45,54,145,.18);
}

.insurance-card:hover::after{
    width:100%;
}

/*====================================================
                     LOGO
====================================================*/

.insurance-card img{
    width:145px;
    max-height:80px;
    object-fit:contain;
    transition:.4s;
}

.insurance-card:hover img{
    transform:scale(1.12);
}

/*====================================================
              LEFT & RIGHT FADE
====================================================*/

.insurance-slider::before,
.insurance-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:80px;
    height:100%;
    z-index:5;
}

.insurance-slider::before{
    left:0;
    background:linear-gradient(to right,#f8fbff,transparent);
}

.insurance-slider::after{
    right:0;
    background:linear-gradient(to left,#f8fbff,transparent);
}

/*====================================================
                  ANIMATION
====================================================*/

@keyframes insuranceScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/*====================================================
                  RESPONSIVE
====================================================*/

@media(max-width:992px){

.section-title h2{
    font-size:36px;
}

.insurance-card{
    width:170px;
    height:110px;
}

.insurance-card img{
    width:125px;
}

}

@media(max-width:768px){

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

.section-title p{
    font-size:15px;
    line-height:26px;
}

.insurance-card{
    width:150px;
    height:95px;
    margin:0 10px;
}

.insurance-card img{
    width:105px;
}

}
/*==========================
 Insurance Heading
===========================*/

.insurance-heading{
    max-width:850px;
    margin:0 auto 60px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(242,112,36,.12);
    color:#F27024;
    padding:10px 22px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:18px;
    border:1px solid rgba(242,112,36,.25);
}

.section-tag i{
    width:38px;
    height:38px;
    background:#F27024;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.insurance-heading h2{
    font-size:48px;
    font-weight:800;
    color:#2D3691;
    margin-bottom:15px;
    line-height:1.2;
}

.insurance-heading h2 span{
    color:#F27024;
    position:relative;
}

.heading-line{
    width:100px;
    height:5px;
    background:linear-gradient(to right,#2D3691,#F27024);
    margin:20px auto 25px;
    border-radius:20px;
}

.insurance-heading p{
    color:#666;
    font-size:18px;
    line-height:1.9;
    max-width:760px;
    margin:auto;
}

/* Tablet */

@media(max-width:991px){

.insurance-heading h2{
    font-size:38px;
}

.insurance-heading p{
    font-size:17px;
}

}

/* Mobile */

@media(max-width:576px){

.section-tag{
    font-size:13px;
    padding:8px 18px;
}

.section-tag i{
    width:32px;
    height:32px;
    font-size:14px;
}

.insurance-heading h2{
    font-size:30px;
}

.insurance-heading p{
    font-size:15px;
    line-height:1.8;
}

.heading-line{
    width:70px;
}

}


/*================================
        GALLERY SECTION
================================*/

/* =========================
   GALLERY SECTION
========================= */

.gallery-section{
    padding:100px 0;
    background:#f8faff;
}


/* Heading */

.gallery-tag{

    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#ffffff;
    color:#2D3691;
    padding:10px 25px;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);

}


.gallery-heading h2{

    margin-top:20px;
    font-size:42px;
    font-weight:800;
    color:#222;

}


.gallery-heading h2 span{

    color:#F27024;

}


.gallery-line{

    width:70px;
    height:4px;
    background:#2D3691;
    margin:20px auto;
    border-radius:10px;

}


.gallery-heading p{

    max-width:750px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;

}



/* =========================
   GALLERY CARD
========================= */


.gallery-card{

    position:relative;
    overflow:hidden;
    border-radius:25px;
    height:300px;
    background:white;
    box-shadow:0 15px 35px rgba(45,54,145,0.15);
    transition:.5s;

}



.gallery-card img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}



.gallery-card:hover img{

    transform:scale(1.12);

}




.gallery-card:hover{

    transform:translateY(-10px);

}






/* =========================
   OVERLAY
========================= */


.gallery-overlay{

    position:absolute;
    inset:0;
    background:linear-gradient(
    to top,
    rgba(45,54,145,.95),
    rgba(45,54,145,.15)
    );

    display:flex;
    justify-content:center;
    align-items:flex-end;
    padding:25px;
    opacity:0;
    transition:.5s;
    text-align:center;

}



.gallery-card:hover .gallery-overlay{

    opacity:1;

}



.gallery-overlay h4{

    color:white;
    font-size:20px;
    margin:15px 0 5px;
    font-weight:700;

}



.gallery-overlay p{

    color:white;
    font-size:14px;
    margin:0;
    line-height:1.5;

}





/* PLUS BUTTON */


.gallery-overlay button{

    width:55px;
    height:55px;
    border-radius:50%;
    border:none;
    background:#F27024;
    color:white;
    font-size:22px;
    cursor:pointer;
    transition:.4s;

}



.gallery-overlay button:hover{

    background:white;
    color:#2D3691;
    transform:rotate(90deg);

}





/* =========================
   POPUP IMAGE VIEW
========================= */


.gallery-popup{

    position:fixed;
    inset:0;
    background:rgba(0,0,0,.45);
    backdrop-filter:blur(12px);
    -webkit-backdrop-filter:blur(12px);

    display:none;
    justify-content:center;
    align-items:center;

    z-index:99999;

}



.popup-box{

    position:relative;
    background:white;
    width:90%;
    max-width:850px;
    padding:25px;
    border-radius:25px;
    text-align:center;

    animation:popupZoom .4s ease;

}



.popup-box img{

    width:100%;
    max-height:600px;
    object-fit:contain;
    border-radius:20px;

}



.popup-box h3{

    margin-top:20px;
    color:#2D3691;
    font-weight:800;

}




.popup-close{

    position:absolute;
    top:15px;
    left:15px;

    background:#F27024;
    color:white;

    border:none;
    padding:10px 20px;

    border-radius:30px;
    font-weight:600;
    cursor:pointer;

    z-index:2;

}



.popup-close:hover{

    background:#2D3691;

}



@keyframes popupZoom{

    from{

        transform:scale(.7);
        opacity:0;

    }

    to{

        transform:scale(1);
        opacity:1;

    }

}





/* =========================
   TABLET
========================= */


@media(max-width:991px){


.gallery-heading h2{

    font-size:34px;

}


.gallery-card{

    height:280px;

}


}





/* =========================
   MOBILE
========================= */


@media(max-width:767px){


.gallery-section{

    padding:70px 15px;

}


.gallery-heading h2{

    font-size:28px;

}


.gallery-heading p{

    font-size:14px;

}


.gallery-card{

    height:260px;

}



.popup-box{

    width:95%;
    padding:15px;

}


.popup-close{

    padding:8px 15px;
    font-size:13px;

}


}
/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
/*=========================================
        CONTACT SECTION
=========================================*/

.contact-section{
    padding:100px 0;
    background:linear-gradient(135deg,#f8fbff,#ffffff);
    position:relative;
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#2D3691;
    opacity:.05;
    border-radius:50%;
    top:-120px;
    left:-120px;
}

.contact-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#F27024;
    opacity:.05;
    border-radius:50%;
    bottom:-150px;
    right:-150px;
}

/*=========================
HEADING
==========================*/

/*=========================================
            CONTACT SECTION
=========================================*/

.contact-section{
    padding:100px 0;
    background:
    linear-gradient(rgba(45,54,145,.92),rgba(45,54,145,.92)),
    url("assets/img/Blue Color.jpg.jpeg") center center;
    background-size:cover;
    background-attachment:fixed;
    position:relative;
    overflow:hidden;
}

/*==========================
HEADING
==========================*/

.contact-heading{
    max-width:850px;
    margin:0 auto 70px;
}

.contact-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#F27024;
    color:#fff;
    padding:12px 25px;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    letter-spacing:.5px;
    box-shadow:0 10px 25px rgba(242,112,36,.35);
}

.contact-tag i{
    width:38px;
    height:38px;
    background:#fff;
    color:#F27024;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-heading h2{
    color:#fff;
    font-size:50px;
    font-weight:800;
    margin:25px 0 15px;
}

.contact-heading h2 span{
    color:#F27024;
}

.heading-line{
    width:100px;
    height:5px;
    background:#F27024;
    margin:20px auto;
    border-radius:50px;
}

.contact-heading p{
    color:#e8e8e8;
    font-size:18px;
    line-height:1.8;
}

/*==========================
LEFT CONTACT BOX
==========================*/

.contact-info-box{
    height:100%;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(12px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:30px;
    padding:40px;
    box-shadow:0 20px 45px rgba(0,0,0,.25);
}

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px 0;
    border-bottom:1px solid rgba(255,255,255,.15);
}

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

.contact-icon{
    width:65px;
    height:65px;
    background:#F27024;
    color:#fff;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
    transition:.4s;
}

.contact-item:hover .contact-icon{
    transform:rotate(8deg) scale(1.08);
}

.contact-item h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.contact-item p{
    color:#f2f2f2;
    margin:0;
    line-height:1.7;
}

/*==========================
LOCATION CARD
==========================*/

.location-card{
    height:100%;
    background:#fff;
    border-radius:30px;
    padding:35px;
    text-align:center;
    box-shadow:0 18px 45px rgba(0,0,0,.18);
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.location-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(to right,#2D3691,#F27024);
}

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

.location-icon{
    width:85px;
    height:85px;
    background:linear-gradient(135deg,#2D3691,#4454d8);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin:0 auto 25px;
    transition:.4s;
}

.location-card:hover .location-icon{
    background:#F27024;
    transform:rotate(10deg);
}

.location-card h3{
    color:#2D3691;
    font-size:28px;
    font-weight:800;
    margin-bottom:20px;
}

.location-card p{
    color:#666;
    font-size:16px;
    margin-bottom:15px;
    line-height:1.8;
}

.location-card p i{
    color:#F27024;
    margin-right:8px;
}

.map-btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:15px;
    background:#2D3691;
    color:#fff;
    text-decoration:none;
    padding:13px 30px;
    border-radius:50px;
    font-weight:700;
    transition:.4s;
}

.map-btn:hover{
    background:#F27024;
    color:#fff;
    transform:translateY(-3px);
}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

.contact-heading h2{
    font-size:40px;
}

.contact-info-box{
    margin-bottom:30px;
}

}

@media(max-width:767px){

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

.contact-heading h2{
    font-size:30px;
}

.contact-heading p{
    font-size:15px;
}

.contact-info-box{
    padding:25px;
}

.contact-item{
    flex-direction:column;
    text-align:center;
    align-items:center;
}

.location-card{
    padding:25px;
}

.location-card h3{
    font-size:24px;
}

.map-btn{
    width:100%;
    justify-content:center;
}

}
/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  background-color: var(--surface-color);
  padding: 10px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
  margin: 20px 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.service-details .services-list a.active {
  color: var(--heading-color);
  font-weight: 700;
  border-color: var(--accent-color);
}

.service-details .services-list a:hover {
  border-color: var(--accent-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
