    
   /* style.css */

/* Reset and basic setup */
:root {
    --primary: #007749;
    --secondary: white;
    --light:  #f5c715;
    --dark: #8b5c29;
}

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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}


a {
    color: #007749;
}

a:hover {
    color: var(--light);
}

/* Header */
.top-bar {
    background: #FFFFFF;
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
}

.top-bar-content {
    max-width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}


.top-bar .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.top-bar .col-4 {
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 0 10px;
}
.flag-container {
    margin-left: auto;
}


/*** Buttons ***/
.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #007749;
    border-radius: 50%;
    color: white;
    border: 2px solid #007749;
}



.hero-video {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: -1;
}

.hero-video-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding-top: 20%;
  background: rgba(0, 0, 0, 0.3);
}

.hero-video-content h1 span {
  color:  #f5c715;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-lg-square i {
    color: white !important;
}

/* Make top-bar text brown */
.top-bar .ps-3 p,
.top-bar .ps-3 h6 {
    color: black;
    margin: 0;
}

/* One-liner for Opening Hour */
.ps-3 p.mb-0 {
    margin: 0;
    font-size: 14px;
    white-space: nowrap;
}

.align-items-center {
    align-items: center;
}



.headline-container {
    position: relative;
    text-align: center;
    flex: 1;
}

.headline-container h1 {
    color: #8b5c29;
    font-size: 1.8rem;
    margin: 0;
    position: relative;
    z-index: 2;
    font-weight: 600;
}

.headline-container h1::before {
    content: 'Building a Caring Society.Together.';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    color: #8b5c29ac;
    filter: blur(3px);
    transform: scale(1.1);
    font-weight: 700;
}

/* Navigation */
nav.navbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  background: #007749;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar li {
    margin: 0;
}

.icon{
    background-color: #f5c715;
}

.navbar a {
    color:  #fff;

    text-decoration: none;
    font-weight: bold;
    padding: 5px 10px;
    display: inline-block;
}

.navbar a:hover,
.navbar a:focus {
    color: #f5c715;
    text-decoration: none;
}

.navbar .nav-link.active,
.navbar .nav-item .nav-link.active {
    color: #f5c715 !important;
}


.-menu {
    background-color: #ffffff;
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0.1rem;
    pointer-events: auto;
    z-index: 1000;
}

.dropdown-submenu .dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    color: #00703c !important;
}

.dropdown-menu a:hover {
    color: #f5c715 !important;
}

/*** Header ***/
#header-carousel .carousel-caption {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Move everything toward the top */
    background: rgba(0, 0, 0, .5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 20px; /* Push content down slightly */
    padding-bottom: 250px; /* Ensure space above indicators */
    z-index: 1;
}


#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

@media (max-width: 768px) {
  
}
#header-carousel .carousel-item {
    position: relative;
    min-height: 600px;
}

#header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


#header-carousel .carousel-indicators [data-bs-target] {
    width: 60px;
    height: 60px;
    text-indent: 0;
    margin-bottom: 15px;
    border: 2px solid #FFFFFF;
    border-radius: 60px;
    overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.carousel-item img.image {
    width: 100%;
    height: 500px; /* or whatever consistent height you want */
    object-fit: cover;
}

/*About */
.about-img-border {
    display: inline-block;
    padding: 10px;
    border: 4px solid var(--primary);
    border-radius: 12px;
    background-color: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    width: 400px;
}

.about-img-border:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.about-img-border img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}



   /*Projects start*/
  .project-card {
    position: relative;
    overflow: hidden;
  }

  .project-img {
    position: relative;
  }

  .project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark transparent background */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }

  .project-card:hover .project-overlay {
    opacity: 1;
  }

  .project-overlay a i {
    font-size: 2rem;
    color: #fff;
  }

  .project-img img {
    display: block;
    width: 100%;
    height: auto;
    z-index: 1;
  }

.icon-circle {
  background-color: #007749; /* Green background */
  border-radius: 50%;
  padding: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.icon-circle i {
  color: white;
  font-size: 20px;
}

.gallery-icon:hover .icon-circle {
  background-color: #f5c715; 
  transform: scale(1.1);
}

.carousel-img {
  min-height: 650px;
  object-fit: cover;
  object-position: top; /* show top of the image (e.g. heads) */
}


.card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
}

.btn-outline-primary {
  font-weight: 500;
  border-radius: 20px;
}

.carousel-search-form {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 600px;
    z-index: 5;
}

.carousel-search-form .input-group {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.carousel-search-form input.form-control {
    border: none;
    padding: 10px 20px;
    border-radius: 50px 0 0 50px;
}

.carousel-search-form .btn {
    border: none;
    padding: 10px 20px;
    border-radius: 0 50px 50px 0;
}

.search-toggle-btn {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background-color: #f5c715;
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    z-index: 20;
    transition: background-color 0.3s ease;
}

.search-toggle-btn:hover {
    background-color: #c99b00;
}



.carousel-search-form {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.carousel-search-form.d-none {
    opacity: 0;
}


.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--secondary);
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** 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: 4px;
    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;
}



/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
    border-radius: 6px;
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
    border-radius: 6px;
}
.carousel-icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #198754 !important; /* Bootstrap green or any custom green */
    opacity: 0.9;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 70% 70%;
}



/*Calender*/

 .calendar-icon-link {
        text-decoration: none;
        display: inline-block;
    }
    .calendar-icon-link:hover .fa-calendar-alt {
        transform: scale(1.1);
        color: #218838; /* Darker green on hover to match theme */
    }
    .calendar-icon-link:hover p {
        color: #218838; /* Darker green for text on hover */
    }

/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item .team-text {
    position: relative;
    height: 65px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-item:hover .team-title {
    top: -65px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 65px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}
.team-section {
    background-color: #007749; 
    color: white; 
}

.team-section h1,
.team-section h5,
.team-section span,
.team-section .section-title {
    color: white;
}
/* Green icon buttons */
.team-icon {
    background-color: #007749;
    border: 2px solid #007749;
    color: white;
}

.team-icon i {
    color: white;
}


/*wEATHER*/
 #ww_2e9799746e3e4 {
    height: 100px !important; 
     padding-top: 20px !important; 
  }

  /* Optional: You can also try controlling the internal iframe */
  #ww_2e9799746e3e4 iframe {
    height: 100% !important;
  }
    
   
.tile {
    background: #007749;
    color: #fff;
    padding: 20px;
    width: 200px;
    text-align: center;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.tile:hover {
    background: #f5e1c0;
}

/* News Section */
.news {
    padding: 20px;
    background: #ecf0f1;
}

.news h2 {
    margin-bottom: 10px;
}

/* Programs Section */
.programs {
    padding: 20px;
    background: #fff;
}

.programs .program {
    margin-bottom: 15px;
}

.programs a {
    color: #007749;
    text-decoration: none;
}

.programs a:hover {
    text-decoration: underline;
}
.socials a {
    display: inline-block;
    color: white;
    border: 2px solid  #f5c715;
    border-radius: 50%;
    padding: 10px;
    margin: 5px;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .socials a:hover {
    background-color: yellow;
    color: white;
  }
  
  .socials i {
    font-size: 16px;
  }
  section.client {
	padding:4em 0em;
	background-color: #eee;

}
section.client .section-title {
	margin-bottom: 6em;
}
.bx-controls {
	position: relative;
}
.bx-wrapper .bx-pager {
    text-align: center;
    padding-top: 30px;
}
.bx-wrapper .bx-pager .bx-pager-item, .bx-wrapper .bx-controls-auto .bx-controls-auto-item {
    display: inline-block;
    zoom: 1;
    display: inline;
}
.bx-wrapper .bx-pager.bx-default-pager a {
    background: #666;
    text-indent: -9999px;
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 5px;
    outline: 0;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
}
/*** Project ***/
.project-item a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(0, 0, 0, .5);
    border-radius: 6px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover a {
    opacity: 1;
}

.project-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.project-carousel .owl-dot {
    width: 35px;
    height: 35px;
    margin: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #DEE2E6;
    border-radius: 35px;
    transition: .5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
    color: #FFFFFF;
    border-color: var(--primary);
    background: var(--primary);
}

/*** photo gallery Start ***/
.destination .tab-class .tab-content .tab-pane .destination-img {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    z-index: 1;
}

.destination .tab-class .tab-content .tab-pane .destination-img .destination-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    z-index: 3;
    transition: 0.5s;
}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    display: flex;
    justify-content: end;
    padding: 20px 20px 0 0;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: 0.5s;

}

.destination .tab-class .tab-content .tab-pane .destination-img .search-icon a i {
    opacity: 0;
    transition: 0.5s;
}

.destination .tab-class .nav-item {
    padding: 0 0 20px 0;

    
}
.destination .tab-class .nav-item a.active {
    background: var(--primary) !important;
}

.destination .tab-class .nav-item a.active span {
    color: white !important;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon {
    background: rgba(19, 53, 123, 0.4);
}

.destination .tab-class .tab-content .destination-img:hover .destination-overlay {
    bottom: 0;
}

.destination .tab-class .tab-content .destination-img:hover .search-icon a i {
    opacity: 1;
}

.destination .tab-class .tab-content .destination-img img {
    transition: 0.5s;
}

.destination .tab-class .tab-content .destination-img:hover img {
    transform: scale(1.2);
}
/*** photo gallery End ***/
/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgb(67, 103, 56), rgba(230, 250, 245, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map {
    background: #007749;
}

.contact-form {
    background: #007749;
}

/* Custom color overrides */
.text-success {
    color: #007749 !important;
}

.text-warning {
    color:  #f5c715;
    
}

.text-warning:hover {
    color: darkgoldenrod !important;
}

.project-overlay a i {
  font-size: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 10px;
  border-radius: 50%;
  color: #007749; /* Green icon color */
  transition: all 0.3s ease;
}

.project-overlay a:hover i {
  background:  #f5c715;
  color: #fff;
}

#weather {
  flex: 1;
  max-width: 500px;
}

.weather-forecast {
  list-style: none;
  padding: 0;
  margin: 0;
}

.weather-forecast li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.weather-day {
  width: 80px;
  font-weight: 600;
}

.weather-icon {
  font-size: 2.8rem;         
  width: 60px;               
  text-align: center;
  animation: pulse 1.5s infinite alternate ease-in-out;
}


.weather-temp {
  font-weight: bold;
  width: 120px;
  text-align: right;
}

.weather-forecast li {
  display: flex;
  align-items: center;
  gap: 15px;
}


/* Simple icon animation */
@keyframes pulse {
  from { transform: scale(1); }
  to { transform: scale(1.35); }  /* Increased from 1.2 */
}


 .chat-user, .chat-bot {
        margin-bottom: 10px;
        padding: 8px 12px;
        border-radius: 10px;
        max-width: 80%;
        word-wrap: break-word;
    }

    .chat-user {
        background-color: #e0f7fa;
        align-self: flex-end;
        text-align: right;
        margin-left: auto;
    }

    .chat-bot {
        background-color: #ffffff;
        color: #212529;
        margin-right: auto;
    }

/* Override button primary */
.btn.bg-primary,
button.btn {
    background-color:  #198754;
    color: white;
    border: none;
}

/* Make icon containers light */
.btn-square.bg-light {
    background-color: #e9ecef !important;
}
/*** Contact End ***/

  /*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: white;
    border: 0;
}


.text-brown {
    color: var(--secondary);
}
.icon-style {
    background-color: green;
    color:  #f5c715;
    padding: 8px;
    border-radius: 50%;
    border: 1px solid white;
}

.bg-custom-green {
    background-color: #007749 !important; 
}

.text-gold {
    color:  #f5c715 !important;
}

.border-gold {
    border-color:  #f5c715 !important;
}
.btn-gold {
    background-color:  #f5c715 !important;
    border: none;
}

.back-to-top {
    bottom: 20px;
    right: 20px;
    z-index: 999;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}


  
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
    }

    .quick-access {
        flex-direction: column;
        align-items: center;
    }

    .tile {
        width: 90%;
    }
}

.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.footer a,
.footer a:hover {
    text-decoration: none !important;
}
.footer h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.footer h1::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px; /* Bold underline */
    width: 100%;
    background-color:  #fff; /* Same yellow color */
}
 #chatContent {
    display: flex;
    flex-direction: column;
}

.chat-user, .chat-bot {
    position: relative;
    padding: 10px 15px;
    border-radius: 15px;
    margin-bottom: 10px;
    max-width: 80%;
    font-size: 0.9rem;
}

.chat-user {
    background-color: #007749;
    color: #ffffff;
    align-self: flex-end;
    margin-left: auto;
    text-align: right;
}

.chat-bot {
    background-color: #f5c715;
    color: #000;
    border: 1px solid #c8e6c9;
    align-self: flex-start;
    margin-right: auto;
    text-align: left;
}


.typing-indicator {
    font-style: italic;
    font-size: 0.85rem;
    color: #000000;
    margin-left: 5px;
}

/* Optional avatars */
.chat-bot::before {
    content: "";
    position: absolute;
    left: -25px;
    top: 0;
    font-size: 1.2rem;
}

.chat-user::after {
    content: "";
    position: absolute;
    right: -25px;
    top: 0;
    font-size: 1.2rem;
}
