/********** Template CSS **********/
:root {
    --primary: #86B817;
    --secondary: #FE8800;
    --light: #F5F5F5;
    --dark: #14141F;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 68px;
    height: 48px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Arial', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: #FFFFFF !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}


/*** Hero Header ***/
.hero-header {
    background:linear-gradient(rgba(141, 207, 160, 0.7), rgba(56, 56, 140, 0.7)), url(../img/portrait-female-pediatrician-work.jpg);
    /*background: url(../img/portrait-female-pediatrician-work.jpg);*/
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.header-bt {
    /* background: linear-gradient(rgba(96, 96, 215, 0.7), rgba(48, 48, 226, 0.7)), url(../img/bg-hero.jpg); */
    background: url(../img/2151696431.jpg);
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
} 

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
}

.service-item:hover {
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Destination ***/
.destination img {
    transition: .5s;
}

.destination a:hover img {
    transform: scale(1.1);
}


/*** Package ***/
.package-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.package-item img {
    transition: .5s;
}

.package-item:hover img {
    transform: scale(1.1);
}


/*** Booking ***/
.booking {
    background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/booking.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .btn {
    background: #FFFFFF;
    color: var(--primary);
    border-radius: 20px;
    border-bottom: 1px solid var(--primary);
}

.team-item .btn:hover {
    background: var(--primary);
    color: #FFFFFF;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item.center .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/

.footer {
    font-family: 'Arial, sans-serif'; /* Change the font family */
    font-weight: 400; /* Set a default font weight */
    background-color: #343a40; /* Change to your desired background color */
    padding: 50px 0; /* Adjust padding for top and bottom */
}

.container-fluid.bg-dark {
    background-color: #3b3b3b; /* Change to a darker or desired background color */
}


.footer h4 {
    font-family: 'Helvetica, sans-serif'; /* Change font family for headings */
    font-weight: 700; /* Make headings bold */
    font-size: 1.5rem; /* Increase heading size for more prominence */
}

.footer p {
    font-size: 1rem; /* Increase paragraph font size for better visibility */
    line-height: 1.5; /* Adjust line height for better readability */
    font-weight: 500; /* Set a medium weight for paragraph text */
}

.footer a.btn-link {
    font-weight: 600; /* Change the font weight of links */
    font-size: 1rem; /* Increase the font size of links */
    color: #f8f9fa; /* Change link color */
    text-decoration: none; /* Remove underline from links */
}

.footer a.btn-link:hover {
    text-decoration: underline; /* Add underline on hover */
}

.footer i {
    font-size: 1.5rem; /* Increase icon size */
    color: #f8f9fa; /* Change icon color */
}

.footer .btn-social {
    font-size: 1.5rem; /* Increase social media icon size */
    margin: 0 5px; /* Add some space between icons */
    transition: transform 0.3s; /* Smooth hover effect */
}

.footer .btn-social:hover {
    transform: scale(1.1); /* Slightly increase size on hover */
}

.footer .copyright {
    font-size: 0.9rem; /* Slightly larger font for copyright text */
    color: #ccc; /* Change copyright text color */
}


.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    /* content: "\f105"; */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(155, 22, 22, 0.1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.mission-section {
    background-color: #ffffff;
    padding: 60px;
    max-width: 1200px;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}
.mission-section h2 {
    color: #0056b3;
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}
.mission-section h2::after {
    content: '';
    width: 50px;
    height: 4px;
    background-color: #0056b3;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}
.mission-section p {
    color: #555;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}
.mission-section .values-list {
    list-style-type: none;
    padding: 0;
    margin-top: 30px;
}
.mission-section .values-list li {
    background-color: #e6f0ff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 6px solid #0056b3;
    border-radius: 6px;
    font-size: 18px;
    color: #333;
    display: flex;
    align-items: center;
}
.mission-section .values-list li::before {
    content: '✔';
    color: #0056b3;
    font-size: 20px;
    margin-right: 10px;
}
/* Add some hover effect */
.mission-section .values-list li:hover {
    background-color: #dceeff;
    transition: background-color 0.3s ease;
}
/* Enhance typography and layout for mobile devices */
@media (max-width: 768px) {
    .mission-section {
        padding: 40px;
    }
    .mission-section h2 {
        font-size: 28px;
    }
    .mission-section p, .mission-section .values-list li {
        font-size: 16px;
    }
}
/* Global Font Settings */

  /* Section Styling */
  #about-us {
    background-color: #fafafa;
    padding: 60px 20px;
    font-size: 1.2rem;
  }
  
  /* Container */
  #about-us .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  
  /* Headings */
  #about-us h2 {
    font-size: 2.5em;
    color: #444;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
  }
  
  /* Paragraphs */
  #about-us p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }
  
  #about-us p strong {
    color: #00796b;  /* Subtle green for emphasis */
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    #about-us h2 {
      font-size: 2em;
    }
    #about-us p {
      font-size: 1.1rem;
    }
    #about-us .container {
      padding: 20px;
    }
  }
  
/* Container Styles */
.containeru {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
     /* Light background color for contrast 
    padding: 40px 20px; /* Add padding around the container */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: center; /* Center text */
}

/* Heading Styles */
.containeru h1 {
    font-size: 2.5rem; /* Larger font size for prominence */
    color: #fff; /* Dark color for readability */
    margin-bottom: 30px; /* Space below the heading */
}

/* Core Areas Styles */
.core-areas {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    justify-content: center; /* Center items */
    margin-bottom: 30px; /* Space below core areas */
}

.core-area {
    background-color: #1abc9c; /* Vibrant background color */
    color: white; /* Text color for contrast */
    border-radius: 10px; /* Rounded corners for individual areas */
    padding: 20px; /* Padding around icons and text */
    margin: 10px; /* Space between core areas */
    flex: 0 1 150px; /* Allow flex items to shrink and grow */
    display: flex; /* Flexbox for icon and text */
    flex-direction: column; /* Stack icon above text */
    align-items: center; /* Center icon and text */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
}

/* Icon Styles */
.core-area i {
    font-size: 2rem; /* Icon size */
    margin-bottom: 10px; /* Space below icons */
}

/* Hover Effect */
.core-area:hover {
    background-color: #16a085; /* Darker shade on hover */
}

/* Paragraph Styles */
.containeru p {
    font-size: 1rem; /* Standard font size */
    color: #fff; /* Darker text for better readability */
    line-height: 1.6; /* Line height for readability */
    margin-bottom: 20px; /* Space between paragraphs */
}

@media (max-width: 768px) {
    .core-area {
        flex: 1 1 calc(45% - 20px); /* Adjust for smaller screens */
    }
}

@media (max-width: 480px) {
    .core-area {
        flex: 1 1 100%; /* Stack cards on small screens */
    }
}
  
/* Mission & Vision Section Styles */
.mission-vision {
    padding: 80px 20px;
    background-color: #FAFAFA;
}

.container {
    max-width: 1200px;
   
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.mission, .vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    animation: fadeIn 1.5s ease-in-out;
}

.mission-content, .vision-content {
    font-size: 20px;
    padding: 20px;
    animation: slideInLeft 1s ease-in-out;
}

.mission-content strong, .vision-content strong {
    color: #3498DB;
    font-weight: bold;
}

.mission-image img, .vision-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.mission-image img:hover, .vision-image img:hover {
    transform: scale(1.05);
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .mission, .vision {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .mission-content, .vision-content {
        padding: 0;
    }

    .mission-image img, .vision-image img {
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Container Styling */
.futuristic-form {
    background-color: #151515;
    padding: 40px 0;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

/* Section Titles */
.text-glow {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00FFFF;
    text-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
}

.futuristic-title {
    color: #FFF;
    text-transform: uppercase;
    font-size: 36px;
    letter-spacing: 3px;
    text-shadow: 0 0 10px #FFFFFF;
}

/* Input Styling */
.futuristic-input .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #E6E6E6;
    padding: 15px;
    box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

.futuristic-input .form-control:focus {
    box-shadow: 0 0 10px #00FFFF, 0 0 20px #00FFFF;
    border-color: #00FFFF;
}

.futuristic-input label {
    color: #E6E6E6;
}

/* Button Styling */
.futuristic-button {
    background: linear-gradient(135deg, #00FFFF, #0066FF);
    border: none;
    border-radius: 50px;
    color: #FFF;
    font-size: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.futuristic-button:hover {
    background: linear-gradient(135deg, #0066FF, #00FFFF);
    box-shadow: 0 0 20px #00FFFF, 0 0 40px #0066FF;
}

/* Contact Info Box Styling */
.futuristic-contact .icon-box {
    background-color: rgba(0, 255, 255, 0.1);
    border: 2px solid #00FFFF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    transition: transform 0.3s ease;
}

.futuristic-contact .icon-box:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px #00FFFF, 0 0 30px #0066FF;
}

/* Text Styling */
.futuristic-text {
    color: #BBBBBB;
}

/* Responsive Design */
@media (max-width: 768px) {
    .futuristic-form {
        padding: 20px;
    }

    .futuristic-button {
        font-size: 16px;
    }

    .futuristic-input .form-control {
        font-size: 16px;
    }
}



.alert {
    position: fixed;
    top: 20px;
    right: 20px;
    background-color: #5a67d8; /* Primary color */
    color: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s;
    opacity: 0;
    visibility: hidden;
}

.alert.show {
    opacity: 1;
    visibility: visible;
}

 /* Style for floating buttons */
/* Donate Now Button - Left Side */
.floating-buttons-left {
    position: fixed;
    left: 10px;
    bottom: 92px; /* Increased space from the bottom */
}

.donate-button {
    display: inline-block;
    padding: 10px 20px;
     background-color: #ff5722;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.donate-button:hover {
    background-color: #218838;
}

/* WhatsApp Icon - Right Side */
/* Floating Button Container - Right Side */
.floating-buttons-right {
    position: fixed;
    right: 10px;
    bottom: 60px; /* Space from the bottom */
    z-index: 1000; /* Ensure the button is on top */
}

/* WhatsApp Button Style */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px; /* Adjust the size */
    height: 60px; /* Adjust the size */
    background-color: #25D366; /* WhatsApp color */
    color: white; /* Icon color */
    border-radius: 50%; /* Circular shape */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Shadow effect */
    text-decoration: none; /* Remove underline */
    transition: background-color 0.3s, transform 0.3s; /* Transition effects */
}

/* WhatsApp Icon Size */
.whatsapp-button i {
    font-size: 24px; /* Icon size */
}

/* Hover Effect */
.whatsapp-button:hover {
    background-color: #128C7E; /* Darker shade on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}





/* ***********8    BLOG * ****************************** */


.futuristice-card {
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    overflow: hidden; /* Prevent overflow */
}

.futuristice-card:hover {
    transform: translateY(-5px);
}

.card-img-left {
    object-fit: cover; /* Ensure the image covers its area */
    border-top-left-radius: 10px; /* Round corners */
    border-bottom-left-radius: 10px; /* Round corners */
    max-height: 300px; /* Set a maximum height for the image */
}

.futuristic-button {
    background-color: #007bff; /* Button background color */
    color: white; /* Button text color */
    transition: background-color 0.3s;
}

.futuristic-button:hover {
    background-color: #0056b3; /* Darken on hover */
}

