/*
  Theme Name: BizPage
  Theme URL: https://bootstrapmade.com/bizpage-bootstrap-business-template/
  Author: BootstrapMade.com
  License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/






body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

a {
  color: #2794e4;
  transition: 0.5s;
}

a:hover,
a:active,
a:focus {
  color: #fff;
  outline: none;
  text-decoration: none;
}

p {
  padding: 30;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #2794e4;
  color: #fff;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  border-radius: 50%;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
  z-index: 11;
}

.back-to-top i {
  padding-top: 12px;
  color: #fff;
}

/* Prelaoder */

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #2794e4;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}




/* Small Top Info Bar */
#top-info-bar {
  position: fixed;        /* stays on top when scrolling */
  top: 0;
  left: 0;
  width: 100%;
  background: #111;       /* dark background */
  color: #fff;
  font-size: 13px;
  padding: 5px 0;
  z-index: 1000;          /* above everything else */
}

#top-info-bar .contact-info i {
  color: #2794e4;
  margin-right: 5px;
}

#top-info-bar .contact-info a {
  color: #fff;
  text-decoration: none;
}

#top-info-bar .contact-info a:hover {
  color: #2794e4;
}

#top-info-bar .contact-info span {
  color: #fff;
}

/* Push the menu/header down so it�s not hidden behind top bar */
header#header {
  margin-top: 28px;  /* height of the top info bar */
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  #top-info-bar .container {
    flex-direction: column;
    text-align: center;
  }
  #top-info-bar .contact-info {
    margin: 3px 0;
  }
  header#header {
    margin-top: 55px; /* adjust if needed on small screens */
  }
}







/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 30px 0;
  height: 92px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  transition: all 0.5s;
  z-index: 997;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px 0;
  height: 72px;
  transition: all 0.5s;
}

#header #logo {
  float: left;
}

#header #logo h1 {
  font-size: 34px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
  padding-left: 10px;
  border-left: 4px solid #2794e4;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/



/* --- Section Layout --- */
#intro {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* --- Video Wrapper --- */
.carousel-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.carousel-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

/* --- Dark Overlay --- */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* --- Text Content --- */
.carousel-container {
  position: relative;
  z-index: 3;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 15px;
}

.carousel-content h2 {
  font-size: 2.5rem;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.carousel-content h2 span {
  color: #2794e4; /* gold highlight */
}

.carousel-content p {
  color: #eee;
  font-size: 1.1rem;
  margin: 15px 0 25px;
}

.btn-get-started {
  background: #f8c102;
  color: #000;
  padding: 10px 25px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 600;
  transition: 0.4s;
}

.btn-get-started:hover {
  background: #fff;
  color: #000;
}

/* --- Animation Effects --- */
.animated {
  opacity: 0;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
}

.fadeInDown {
  animation-name: fadeInDown;
}
.fadeInUp {
  animation-name: fadeInUp;
}
.delay-1s {
  animation-delay: 1s;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
  .carousel-content h2 {
    font-size: 1.7rem;
  }
  .carousel-content p {
    font-size: 1rem;
  }
}



/* Video Background */
.carousel-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the container */
  z-index: -1;       /* behind the content */
}

.carousel-background {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Ensure carousel item takes full height */
#intro .carousel-item {
  position: relative;
  width: 100%;
  height: 100vh;  /* full viewport height */
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .carousel-background video {
    object-fit: cover;  /* scales properly on mobile */
  }

  #intro h2 {
    font-size: 32px;  /* smaller font on mobile */
  }

  #intro p {
    width: 90%;        /* fit content better */
  }
}



#intro {
  display: table;
  width: 100%;
  height: 100vh;
  background: #000;
}

#intro .carousel-item {
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#intro .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#intro .carousel-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#intro .carousel-background img {
  max-width: 100%;
}

#intro .carousel-content {
  text-align: center;
}

#intro h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#intro p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
}

#intro .carousel-fade {
  overflow: hidden;
}

#intro .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}

#intro .carousel-fade .carousel-inner .carousel-item,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  opacity: 0;
}

#intro .carousel-fade .carousel-inner .active,
#intro .carousel-fade .carousel-inner .carousel-item-next.carousel-item-left,
#intro .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-right {
  opacity: 1;
  transition: 0.5s;
}

#intro .carousel-fade .carousel-inner .carousel-item-next,
#intro .carousel-fade .carousel-inner .carousel-item-prev,
#intro .carousel-fade .carousel-inner .active.carousel-item-left,
#intro .carousel-fade .carousel-inner .active.carousel-item-right {
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

#intro .carousel-control-prev,
#intro .carousel-control-next {
  width: 10%;
}

#intro .carousel-control-next-icon,
#intro .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}

#intro .carousel-indicators li {
  cursor: pointer;
}

#intro .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  background: #2794e4;
}

#intro .btn-get-started:hover {
  background: #fff;
  color: #2794e4;
}

.carousel-background video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.carousel-background {
  position: relative;
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .carousel-background video {
    object-fit: cover; /* ensures proper mobile scaling */
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/* Nav Menu Essentials */

.nav-menu,
.nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
}

.nav-menu > li {
  float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */

.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */

#nav-menu-container {
  float: right;
  margin: 0;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu > .menu-active > a {
  color: #2794e4;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 13px;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #2794e4;
}

.nav-menu ul ul {
  margin: 0;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle i {
  color: #fff;
}

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.8);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li a {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a:hover {
  color: #2794e4;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul li.menu-active a {
  color: #2794e4;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #2794e4;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #2794e4;
}

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

/* Mobile Nav body classes */

body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}



/* Donate Button Highlight in Menu */
.nav-menu .donate-btn a {
  background: #2794e4;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 700;
  transition: 0.3s;
  border: 2px solid #2794e4;
}

.nav-menu .donate-btn a:hover {
  background: transparent;
  color: #2794e4 !important;
  border-color: #2794e4;
}

/* Mobile View Styling */
#mobile-nav .donate-btn a {
  background: #2794e4;
  color: #fff !important;
  border-radius: 25px;
  margin: 8px 15px;
  padding: 10px;
  display: block;
  text-align: center;
}



/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/* Sections Header
--------------------------------*/

.section-header h3 {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.section-header h3::before {
  content: '';
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-header h3::after {
  content: '';
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #2794e4;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-header p {
  text-align: center;
  padding-bottom: 30px;
  color: #333;
}

/* Section with background
--------------------------------*/

.section-bg {
  background: #f7f7f7;
}

/* Featured Services Section
--------------------------------*/

#featured-services {
  background: #000;
}

#featured-services .box {
  padding: 30px 20px;
}

#featured-services .box-bg {
  background-image: linear-gradient(0deg, #000000 0%, #242323 50%, #000000 100%);
}

#featured-services i {
  color: #2794e4;
  font-size: 48px;
  display: inline-block;
  line-height: 1;
}

#featured-services h4 {
  font-weight: 400;
  margin: 15px 0;
  font-size: 18px;
}

#featured-services h4 a {
  color: #fff;
}

#featured-services h4 a:hover {
  color: #2794e4;
}

#featured-services p {
  font-size: 14px;
  line-height: 24px;
  color: #fff;
  margin-bottom: 0;
}

/* About Us Section
--------------------------------*/

#about {
  background: url("../img/about-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 40px 0;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  z-index: 9;
}

#about .container {
  position: relative;
  z-index: 10;
}

#about .about-col {
  background: #fff;
  border-radius: 0 0 4px 4px;
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

#about .about-col .img {
  position: relative;
}

#about .about-col .img img {
  border-radius: 4px 4px 0 0;
}

#about .about-col .icon {
  width: 64px;
  height: 64px;
  padding-top: 8px;
  text-align: center;
  position: absolute;
  background-color: #2794e4;
  border-radius: 50%;
  text-align: center;
  border: 4px solid #fff;
  left: calc( 50% - 32px);
  bottom: -30px;
  transition: 0.3s;
}

#about .about-col i {
  font-size: 36px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}

#about .about-col:hover .icon {
  background-color: #fff;
}

#about .about-col:hover i {
  color: #2794e4;
}

#about .about-col h2 {
  color: #000;
  text-align: center;
  font-weight: 700;
  font-size: 20px;
  padding: 0;
  margin: 40px 0 12px 0;
}

#about .about-col h2 a {
  color: #000;
}

#about .about-col h2 a:hover {
  color: #2794e4;
}

#about .about-col p {
  font-size: 14px;
  line-height: 24px;
  color: #333;
  margin-bottom: 0;
  padding: 0 20px 20px 20px;
}

/* Services Section
--------------------------------*/

#services {
  background: #fff;
  background-size: cover;
  padding: 60px 0 40px 0;
}

#services .box {
  margin-bottom: 30px;
}

#services .icon {
  float: left;
}

#services .icon i {
  color: #2794e4;
  font-size: 36px;
  line-height: 1;
  transition: 0.5s;
}

#services .title {
  margin-left: 60px;
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

#services .title a {
  color: #111;
}

#services .box:hover .title a {
  color: #2794e4;
}

#services .description {
  font-size: 14px;
  margin-left: 60px;
  line-height: 24px;
  margin-bottom: 0;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
  background: linear-gradient(rgba(0, 142, 99, 0.1), rgba(0, 0, 0, 0.1)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 60px 0;
}

#call-to-action h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action p {
  color: #fff;
}

#call-to-action .cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #2794e4; 
  border: 2px solid #2794e4;
}

/* Call To Action Section
--------------------------------*/

#skills {
  padding: 60px 0;
}

#skills .progress {
  height: 35px;
  margin-bottom: 10px;
}

#skills .progress .skill {
  font-family: "Open Sans", sans-serif;
  line-height: 35px;
  padding: 0;
  margin: 0 0 0 20px;
  text-transform: uppercase;
}

#skills .progress .skill .val {
  float: right;
  font-style: normal;
  margin: 0 20px 0 0;
}

#skills .progress-bar {
  width: 1px;
  text-align: left;
  transition: .9s;
}


/* Centered Call To Action Button */
.call-to-action-container {
  text-align: center;
  margin-top: 40px;
}
.cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  padding: 12px 36px;
  border-radius: 50px;
  transition: 0.5s;
  background: #2794e4;
  color: #fff;
}

.cta-btn:hover {
  background: #fff;
  color: #2794e4;
  border: 2px solid #2794e4;
  text-decoration: none;
}


/* Facts Section
--------------------------------*/

#facts {
  background: url("../img/facts-bg.jpg") center top no-repeat fixed;
  background-size: cover;
  padding: 60px 0 0 0;
  position: relative;
}

#facts::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.88);
  z-index: 9;
}

#facts .container {
  position: relative;
  z-index: 10;
}

#facts .counters span {
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  font-size: 48px;
  display: block;
  color: #2794e4;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #111;
}

#facts .facts-img {
  text-align: center;
  padding-top: 30px;
}






/* Portfolio info styling */
#portfolio .portfolio-info {
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 20px;
  border-radius: 10px;
  min-height: 220px; /* ensures consistent height */
}

/* Call To Action Button Outside Card */
.portfolio-button-container {
  text-align: center;
  margin-top: 15px;   /* space below card */
  margin-bottom: 40px; /* space at bottom */
}

.cta-btn {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 13px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  background: #3075c9;
  color: #fff;
}

.cta-btn:hover {
  background: #fff;
  color: #2794e4;
  text-decoration: none;
}

/* Ensure portfolio-wrap doesn't clip button */
.portfolio-wrap {
  overflow: visible;  /* important */
}








/* Portfolio Section
--------------------------------*/

#portfolio {
  padding: 60px 0;
}

#portfolio #portfolio-flters {
  padding: 0;
  margin: 5px 0 35px 0;
  list-style: none;
  text-align: center;
}

#portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 15px 15px 15px 0;
  display: inline-block;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
  color: #666666;
  border-radius: 4px;
  text-transform: uppercase;
  background: #fff;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

#portfolio #portfolio-flters li:hover,
#portfolio #portfolio-flters li.filter-active {
  background: #2794e4;
  color: #fff;
}

#portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

#portfolio .portfolio-wrap {
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

#portfolio .portfolio-wrap:hover {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.16);
}

#portfolio .portfolio-item {
  position: relative;
  height: 580px;
  overflow: hidden;
}

#portfolio .portfolio-item figure {
  background: #000;
  overflow: hidden;
  height: 240px;
  position: relative;
  border-radius: 4px 4px 0 0;
  margin: 0;
}

#portfolio .portfolio-item figure:hover img {
  opacity: 0.4;
  transition: 0.3s;
}

#portfolio .portfolio-item figure .link-preview,
#portfolio .portfolio-item figure .link-details {
  position: absolute;
  display: inline-block;
  opacity: 0;
  line-height: 1;
  text-align: center;
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s linear;
}

#portfolio .portfolio-item figure .link-preview i,
#portfolio .portfolio-item figure .link-details i {
  padding-top: 6px;
  font-size: 22px;
  color: #333;
}

#portfolio .portfolio-item figure .link-preview:hover,
#portfolio .portfolio-item figure .link-details:hover {
  background: #2794e4;
}

#portfolio .portfolio-item figure .link-preview:hover i,
#portfolio .portfolio-item figure .link-details:hover i {
  color: #fff;
}

#portfolio .portfolio-item figure .link-preview {
  left: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure .link-details {
  right: calc(50% - 38px);
  top: calc(50% - 18px);
}

#portfolio .portfolio-item figure:hover .link-preview {
  opacity: 1;
  left: calc(50% - 44px);
}

#portfolio .portfolio-item figure:hover .link-details {
  opacity: 1;
  right: calc(50% - 44px);
}

#portfolio .portfolio-item .portfolio-info {
  background: #fff;
  text-align: center;
  padding: 30px;
  height: 90px;
  border-radius: 0 0 3px 3px;
}

#portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  line-height: 1px;
  font-weight: 700;
  margin-bottom: 18px;
  padding-bottom: 0;
}

#portfolio .portfolio-item .portfolio-info h4 a {
  color: #333;
}

#portfolio .portfolio-item .portfolio-info h4 a:hover {
  color: #2794e4;
}

#portfolio .portfolio-item .portfolio-info p {
  padding: 0;
  margin: 0;
  color: #b8b8b8;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #2794e4;
}

/* Testimonials Section
--------------------------------*/

#testimonials {
  padding: 60px 0;
}

#testimonials .section-header {
  margin-bottom: 40px;
}

#testimonials .testimonial-item {
  text-align: center;
}

#testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

#testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

#testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}

#testimonials .testimonial-item .quote-sign-left {
  margin-top: -15px;
  padding-right: 10px;
  display: inline-block;
  width: 37px;
}

#testimonials .testimonial-item .quote-sign-right {
  margin-bottom: -15px;
  padding-left: 10px;
  display: inline-block;
  max-width: 100%;
  width: 37px;
}

#testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

#testimonials .owl-nav,
#testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#testimonials .owl-dot.active {
  background-color: #2794e4;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 60px 0;
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}

#team .member .member-info {
  opacity: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  transition: 0.2s;
}

#team .member .member-info-content {
  margin-top: -50px;
  transition: margin 0.2s;
}

#team .member:hover .member-info {
  background: rgba(0, 0, 0, 0.7);
  opacity: 1;
  transition: 0.4s;
}

#team .member:hover .member-info-content {
  margin-top: 0;
  transition: margin 0.4s;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
  color: #fff;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
  color: #fff;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  transition: none;
  color: #fff;
}

#team .member .social a:hover {
  color: #2794e4;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 48px;
  display: inline-block;
  margin-bottom: 10px;
  color: #2794e4;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #000;
}

#contact .contact-info h3 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #999;
}

#contact .contact-info a {
  color: #000;
}

#contact .contact-info a:hover {
  color: #2794e4;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 20px;
}

#contact .form #sendmessage {
  color: #2794e4;
  border: 1px solid #2794e4;
  display: none;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #errormessage {
  color: red;
  display: none;
  border: 1px solid red;
  text-align: center;
  padding: 15px;
  font-weight: 600;
  margin-bottom: 15px;
}

#contact .form #sendmessage.show,
#contact .form #errormessage.show,
#contact .form .show {
  display: block;
}

#contact .form .validation {
  color: red;
  display: none;
  margin: 0 0 20px;
  font-weight: 400;
  font-size: 13px;
}

#contact .form input,
#contact .form textarea {
  padding: 10px 14px;
  border-radius: 0;
  box-shadow: none;
  font-size: 15px;
}

#contact .form button[type="submit"] {
  background: #2794e4;
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  cursor: pointer;
}

#contact .form button[type="submit"]:hover {
  background: #3075c9;

}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #000;
  padding: 0 0 30px 0;
  color: #eee;
  font-size: 14px;
}

#footer .footer-top {
  background: #111;
  padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
  margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
  font-size: 34px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 10px;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  border-left: 4px solid #2794e4;
}

#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Montserrat", sans-serif;
  color: #eee;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #eee;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
  background: #2794e4;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top h4::before,
#footer .footer-top h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
}

#footer .footer-top h4::before {
  right: 0;
  background: #555;
}

#footer .footer-top h4::after {
  background: #2794e4;
  width: 60px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 8px;
  color: #ddd;
}

#footer .footer-top .footer-links ul li {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #eee;
}

#footer .footer-top .footer-links ul a:hover {
  color: #2794e4;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact p {
  line-height: 26px;
}

#footer .footer-top .footer-newsletter {
  margin-bottom: 30px;
}

#footer .footer-top .footer-newsletter input[type="email"] {
  border: 0;
  padding: 6px 8px;
  width: 65%;
}

#footer .footer-top .footer-newsletter input[type="submit"] {
  background: #2794e4;
  border: 0;
  width: 35%;
  padding: 6px 0;
  text-align: center;
  color: #fff;
  transition: 0.3s;
  cursor: pointer;
}

#footer .footer-top .footer-newsletter input[type="submit"]:hover {
  background: #3075c9;
}

#footer .copyright {
  text-align: center;
  padding-top: 30px;
}

#footer .credits {
  text-align: center;
  font-size: 13px;
  color: #ddd;
}

/*--------------------------------------------------------------
# Responsive Media Queries
--------------------------------------------------------------*/

@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email {
    padding: 20px 0;
  }

  #contact .contact-phone {
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
  }
}

@media (min-width: 992px) {
  #testimonials .testimonial-item p {
    width: 80%;
  }
}

@media (min-width: 1024px) {
  #header #logo {
    padding-left: 60px;
  }

  #intro p {
    width: 60%;
  }

  #intro .carousel-control-prev,
  #intro .carousel-control-next {
    width: 5%;
  }

  #nav-menu-container {
    padding-right: 60px;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 15px;
  }

  #header #logo h1 {
    font-size: 28px;
  }

  #header #logo img {
    max-height: 40px;
  }

  #intro h2 {
    font-size: 28px;
  }

  #nav-menu-container {
    display: none;
  }

  #mobile-nav-toggle {
    display: inline;
  }
}




#header {
  position: fixed;
  top: 30px; /* try 30 or 25 depending on your top bar height */
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: all 0.3s ease;
}


#top-info-bar {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  z-index: 9997;
  position: relative;
}

#mobile-nav-toggle {
  display: block !important;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 99999;
  font-size: 28px;
  color: #fff;
  background: none;
  border: none;
}


#intro {
  margin-top: 0px; /* adjust as needed */
}


/* Hide mobile menu toggle on desktop */
#mobile-nav-toggle {
  display: none !important;
}

/* Show only on screens smaller than 992px (Bootstrap breakpoint) */
@media (max-width: 991px) {
  #mobile-nav-toggle {
    display: block !important;
  }
}


#top-info-bar {
  background: #111;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9997;
}

#header {
  position: fixed;
  top: 35px; /* height of your top bar */
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: all 0.3s ease;
}

/* Push page content down so it doesn�t hide behind header */
#intro {
  margin-top: 120px; /* adjust if needed */
}


/* Keep both top bar + header fixed together */
#top-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999; /* stay above everything */
}

/* Top info bar */
#top-info-bar {
  background: #111; /* solid black background */
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
  line-height: 1.6;
  z-index: 10000;
  position: relative;
}

/* Header (logo + nav) */
#header {
  background: #000; /* solid black ensures no transparent overlay */
  width: 100%;
  position: relative;
  z-index: 10001;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


#top-info-bar,
#header {
  margin: 0;
  padding: 0;
}

#top-info-bar .container,
#header .container-fluid {
  margin: 0;
  padding: 5px 15px;
}


/* === FIX TOP INFO BAR + HEADER ALIGNMENT === */

/* Ensure top info bar stays on top */
#top-info-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #111;
  color: #fff;
  z-index: 1001;
  padding: 5px 0;
}

/* Place main header just below top info bar */
#header {
  position: fixed;
  top: 28px; /* height of top info bar */
  left: 0;
  width: 100%;
  background: transparent;
  transition: all 0.5s;
  z-index: 1000;
}

/* Remove margin so no white gap */
header#header {
  margin-top: 0 !important;
}

/* Keep header aligned properly */
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Fix nav alignment to the right */
#nav-menu-container {
  margin-left: auto;
  float: none;
}

/* Responsive adjustment */
@media (max-width: 768px) {
  #header {
    top: 55px; /* slightly more space for taller top bar on mobile */
  }
}


/* === FINAL ALIGNMENT FIX FOR HEADER & TOP BAR === */

/* Center top info content inside container */
#top-info-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Make sure contact info is inline and centered */
#top-info-bar .contact-info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  color: #fff;
  font-size: 13px;
}

/* Icons alignment fix */
#top-info-bar .contact-info i {
  margin-right: 5px;
  color: #f8c146;
}

/* Fix header layout */
#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo stays on left, menu on right */
#logo {
  flex: 0 0 auto;
}

#nav-menu-container {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

/* Optional: make top bar text a bit smaller and cleaner */
#top-info-bar span,
#top-info-bar a {
  color: #fff;
  text-decoration: none;
}


/* === SHOW ONLY HAMBURGER MENU ON MOBILE === */
@media (max-width: 991px) {
  #nav-menu-container {
    display: none !important; /* Hide full desktop nav */
  }

  #mobile-nav-toggle {
    display: block !important; /* Show hamburger */
    position: fixed;
    right: 15px;
    top: 60px; /* adjust depending on top info height */
    z-index: 1002;
    background: none;
    border: none;
    font-size: 24px;
    color: #fff;
  }
}

/* Ensure desktop keeps normal layout */
@media (min-width: 992px) {
  #mobile-nav,
  #mobile-nav-toggle {
    display: none !important;
  }
}


/* === HEADER APPEARANCE FIX === */

/* Make header transparent again and keep below top bar */
#header {
  position: fixed;
  top: 28px; /* equal to top bar height */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.8); /* semi-transparent dark */
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 1000;
}

/* Keep nav centered vertically */
#header .container {
  display: flex;
  align-items: center;
}

/* Adjust nav link vertical alignment */
#nav-menu-container ul li a {
  padding: 10px 15px;
  color: #fff;
}

/* Fix white gap or white overlay */
body {
  background: #000; /* if your intro video or hero has dark overlay */
}


/* === FIX MOBILE NAV TOGGLE CLICK === */
#mobile-nav {
  z-index: 9999 !important;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.95);
  width: 260px;
  height: 100%;
  overflow-y: auto;
  display: none;
}

#mobile-nav-toggle {
  z-index: 10000 !important;
  position: fixed;
  top: 55px; /* just below top info bar */
  right: 20px;
  font-size: 26px;
  color: #fff;
  background: none;
  border: none;
}

.mobile-nav-active #mobile-nav {
  display: block !important;
}


/* === FIX LOGO VISIBILITY ON MOBILE === */
#logo img {
  max-height: 45px;
  transition: all 0.3s ease;
}

/* On smaller screens, ensure logo stays visible */
@media (max-width: 991px) {
  #logo img {
    max-height: 40px;
  }

  #logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-left: 15px;
    z-index: 1001;
  }

  #header .container {
    justify-content: space-between;
  }

  #mobile-nav-toggle {
    position: fixed;
    right: 20px;
    top: 55px; /* slightly below the top info bar */
  }
}

#logo img {
  position: relative;
  z-index: 1002;
}

/* === FIX LOGO OVERLAP UNDER TOP INFO BAR === */

/* Ensure header sits fully below the top info bar */
#header {
  position: fixed;
  top: 32px; /* slightly more than top info bar height */
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  padding: 10px 0;
  z-index: 1000;
  transition: all 0.4s ease;
}

/* Make sure logo is fully visible and not under overlay */
#logo {
  position: relative;
  z-index: 1002;
  margin-top: 0;
}

#logo img {
  display: block;
  max-height: 50px;
  width: auto;
}

/* In mobile view, push header slightly more down */
@media (max-width: 991px) {
  #header {
    top: 55px; /* height of top info bar */
  }
  #logo img {
    max-height: 42px;
  }
}

/* === FINAL LOGO ALIGNMENT TWEAK === */
#logo {
  position: relative;
  top: 5px; /* move logo slightly down */
}

@media (max-width: 991px) {
  #logo {
    top: 8px; /* move a little more down on mobile for balance */
  }
}


/* Donate Button Glow Heart Effect */
#nav-menu-container ul li.donate a {
  background: #007bff;
  color: #fff !important;
  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 600;
  animation: donatePulse 1.5s infinite;
  transition: all 0.3s ease;
}

#nav-menu-container ul li.donate a:hover {
  background: #0056b3;
  color: #fff !important;
}

@keyframes donatePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
  }
}



/* Fix portfolio image cropping */
.portfolio-wrap figure {
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.portfolio-wrap figure img {
  width: 100%;
  height: auto; /* keeps original image ratio */
  object-fit: contain; /* shows the full image */
  transition: transform 0.3s ease;
}

/* Optional: smooth zoom on hover */
.portfolio-wrap:hover figure img {
  transform: scale(1.05);
}

.portfolio-wrap {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-info {
  padding: 20px;
  flex-grow: 1;
}

.portfolio-cta {
  padding-bottom: 15px;
}

.btn.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 25px;
  padding: 8px 20px;
  transition: 0.3s;
}

.btn.btn-primary:hover {
  background-color: #0056b3;
}


.portfolio-wrap figure img {
  width: 100%;
  height: 250px; /* fixed uniform height for all */
  object-fit: cover; /* fills nicely, may crop slightly */
}



/* ===== Portfolio Image Fix ===== */
.portfolio-wrap {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-wrap figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.portfolio-wrap figure img {
  width: 100%;
  height: auto;
  object-fit: contain; /* ensures full image is visible, not cropped */
  transition: transform 0.3s ease;
}

/* optional zoom on hover */
.portfolio-wrap:hover figure img {
  transform: scale(1.05);
}

/* make all cards the same height */
.portfolio-item {
  display: flex;
}

.portfolio-wrap {
  flex: 1;
}


/* Dropdown visibility fix */
#nav-menu-container ul li {
  position: relative;
}

/* Dropdown menu container */
#nav-menu-container ul li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  padding: 8px 0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 9999;
}

/* Show dropdown on hover */
#nav-menu-container ul li:hover > ul {
  display: block;
}

/* Dropdown list items */
#nav-menu-container ul li ul li {
  min-width: 200px;
}

/* Dropdown links */
#nav-menu-container ul li ul li a {
  color: #333 !important;
  padding: 10px 20px;
  display: block;
  font-weight: 500;
  background: transparent;
}

/* Hover effect */
#nav-menu-container ul li ul li a:hover {
  background: #007bff;
  color: #fff !important;
  text-decoration: none;
}


#nav-menu-container ul li.menu-has-children > a i {
  font-size: 13px;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

#nav-menu-container ul li.menu-has-children:hover > a i {
  transform: rotate(180deg);
}


/* Remove the default dropdown arrow */
#nav-menu-container ul li.menu-has-children > a:after {
  content: none !important;
}


/* Style for chevron-down icon */
#nav-menu-container ul li.menu-has-children > a i {
  font-size: 13px;
  margin-left: 6px;
  vertical-align: middle;
  color: #fff; /* default color to match your menu text */
  transition: transform 0.3s ease, color 0.3s ease;
}

/* Rotate and color change on hover */
#nav-menu-container ul li.menu-has-children:hover > a i {
  transform: rotate(180deg);
  color: #007bff; /* your theme blue color */
}


/* Prevent duplicate dropdown arrows on all pages */
#nav-menu-container ul li.menu-has-children > a:after {
  content: none !important;
}


/* ===== FIX DUPLICATE DROPDOWN ARROWS ===== */
#nav-menu-container ul li.menu-has-children > a:after {
  content: none !important; /* remove theme-added arrow */
}

#nav-menu-container ul li.menu-has-children i.bi-chevron-down {
  margin-left: 6px;
  font-size: 13px;
  color: #fff; /* adjust color if needed */
  vertical-align: middle;
}

/* Ensure no hidden pseudo arrows reappear */
#header .menu-has-children > a::before,
#header .menu-has-children > a::after {
  display: none !important;
  content: none !important;
}


/* Remove duplicate dropdown arrow in mobile menu */
#mobile-nav ul li.menu-has-children > a:after {
  content: none !important;
}

/* Optional: style your chosen arrow */
#mobile-nav ul li.menu-has-children i.bi-chevron-down {
  font-size: 14px;
  margin-left: 6px;
  color: #fff;
}


/* Smooth arrow rotation for dropdown toggle */
.bi-chevron-down {
  transition: transform 0.3s ease;
}
.bi-chevron-down.rotate {
  transform: rotate(180deg);
}


.bi-chevron-down {
  transition: transform 0.3s ease;
}
.bi-chevron-down.rotate {
  transform: rotate(180deg);
}





/* Floating WhatsApp Button */
#whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 999999;
}
#whatsapp-btn img { width: 35px; height: 35px; }

/* Popup Box */
#whatsapp-popup {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 6px 25px rgba(0,0,0,0.2);
    display: none;
    z-index: 999999;
    animation: fadeIn 0.2s ease-in-out;
}

/* Header */
#whatsapp-popup .popup-header {
    background: #25D366;
    padding: 12px 18px;
    color: #fff;
    font-weight: 700;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close Button */
#whatsapp-popup .close-btn {
    font-size: 20px;
    cursor: pointer;
}

/* Body */
#whatsapp-popup .popup-body {
    padding: 20px;
    background: #f7f7f7;
    border-radius: 0 0 15px 15px;
}

.chat-bubble {
    background: #fff;
    padding: 12px 15px;
    border-radius: 20px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    font-size: 14px;
}




/* WhatsApp Outline Icon */
.open-chat-btn .wa-icon {
    width: 22px;
    height: 22px;
    animation: pulse 1.6s infinite ease-in-out;
    filter: brightness(100%);
}

/* Forward Arrow Animation */
.open-chat-btn .arrow {
    font-size: 20px;
    display: inline-block;
    animation: moveArrow 1.4s infinite ease-in-out;
}

/* Pulsing Icon Animation */
@keyframes pulse {
    0%   { transform: scale(1); opacity: 1; }
    50%  { transform: scale(1.12); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Arrow Slide Animation */
@keyframes moveArrow {
    0%   { transform: translateX(0); }
    50%  { transform: translateX(5px); }
    100% { transform: translateX(0); }
}


/* Small Open Chat Button */
.open-chat-small {
    display: flex;
     align-items:left;
    gap: 16px;
    background: #25D366;
    color: #fff;
    padding: 8px 1px;
    font-size: 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: .3s;
}

.open-chat-small:hover {
    background: #1ebe5a;
}

.open-chat-small .wa-icon {
    width: 25px;
    height: 25px;
}

/* Chat bubble */
.chat-bubble {
    max-width: 80%;
    background: #ffffff;
    padding: 12px 18px;
    margin-bottom: 18px;
    font-size: 15px;
    border-radius: 15px;
    position: relative;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

/* Left pointing "tail" */
.chat-bubble::after {
    content: "";
    position: absolute;
    top: 10px;
    left: -8px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #ffffff;
}


<style>
/* Animate the arrow */
.open-chat-small strong {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* On hover, make the arrow slide slightly to the right */
.open-chat-small:hover strong {
    transform: translateX(5px);
}

/* Optional: add a subtle bounce effect */
@keyframes bounce-arrow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(8px); }
}

/* Trigger bounce animation on hover */
.open-chat-small:hover strong {
    animation: bounce-arrow 0.6s ease infinite;
}
</style>

/* ===== Portfolio Image Fix (ONLY for index.html) ===== */
.home-portfolio .portfolio-wrap {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.home-portfolio .portfolio-wrap figure {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-portfolio .portfolio-wrap figure img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.home-portfolio .portfolio-wrap:hover figure img {
  transform: scale(1.05);
}

.home-portfolio .portfolio-item {
  display: flex;
}

.home-portfolio .portfolio-wrap {
  flex: 1;
}


/* Make portfolio text visible */
.portfolio-info {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-top: 1px solid #eee;
}

.portfolio-info h4 a {
  color: #333;
  font-weight: 600;
  text-decoration: none;
}

.portfolio-info p {
  margin: 0;
  color: #777;
}


/* Fix portfolio item layout */
.portfolio-wrap {
  background: #fff;
  overflow: hidden;
  border: 1px solid #eee;
  border-radius: 4px;
}

.portfolio-wrap figure {
  margin: 0;
  padding: 0;
  position: relative;
}

.portfolio-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure text is always visible below the image */
.portfolio-info {
  background: #fff;
  padding: 15px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.portfolio-info h4 a {
  color: #333 !important;
  font-weight: 600;
  text-decoration: none;
}

.portfolio-info p {


.portfolio-item {
  padding: 10px;
}

.portfolio-wrap {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #eee;
}

.portfolio-wrap img {
  width: 100%;
  display: block;
}

.portfolio-info {
  background: #fff;
  padding: 12px;
  text-align: center;
}

.portfolio-info h4 a {
  color: #222;
  font-weight: 600;
}

.portfolio-info p {
  color: #777;
  margin: 0;
}


#whatsapp-btn {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 999999;
}

#whatsapp-btn img {
    width: 100%;
    height: 100%;
}

#waBadge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
}


/* ===== WHATSAPP NOTIFICATION BADGE (FORCE FIX) ===== */

#whatsapp-btn {
  position: fixed !important;
  bottom: 80px !important;
  right: 20px !important;
  width: 60px !important;
  height: 60px !important;
  z-index: 10050 !important; /* higher than everything */
}

#whatsapp-btn img {
  width: 100% !important;
  height: 100% !important;
}

#waBadge {
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  width: 22px !important;
  height: 22px !important;
  background: #ff0000 !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 12px !important;
  font-weight: bold !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  z-index: 10051 !important;
  border: 2px solid #ffffff !important;
}



.promise-card {
  display: block;
  background: rgba(255,255,255,0.92);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: #333;
  transition: all 0.3s ease;
  height: 100%;
}

.promise-card i {
  font-size: 28px;
  color: #007bff;
  margin-bottom: 10px;
}

.promise-card h4 {
  font-weight: 700;
  margin-bottom: 5px;
}

.promise-card p {
  font-size: 14px;
  margin: 0;
}

.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  text-decoration: none;
}


.promise-card {
  display: block;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.85),
    rgba(0, 80, 180, 0.85)
  );
  color: #fff;
  padding: 22px 18px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
}

.promise-card i {
  font-size: 30px;
  color: #fff;
  margin-bottom: 10px;
}

.promise-card h4 {
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.promise-card p {
  font-size: 14px;
  margin: 0;
  color: rgba(255,255,255,0.9);
}

.promise-card:hover {
  transform: translateY(-8px) scale(1.03);
  background: linear-gradient(
    135deg,
    rgba(0, 100, 220, 0.95),
    rgba(0, 60, 150, 0.95)
  );
  box-shadow: 0 15px 30px rgba(0,0,0,0.35);
  text-decoration: none;
}


.promise-card:hover h4,
.promise-card:hover p,
.promise-card:hover i {
  color: #fff;
}


/* ===== PROMISE CARDS (INTRO SECTION) ===== */
#intro .promise-card {
  display: block !important;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.9),
    rgba(0, 80, 180, 0.9)
  ) !important;
  color: #fff !important;
  padding: 22px 18px !important;
  border-radius: 12px !important;
  text-align: center !important;
  transition: all 0.35s ease !important;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.25) !important;
  backdrop-filter: blur(6px);
}

#intro .promise-card i,
#intro .promise-card h4,
#intro .promise-card p {
  color: #fff !important;
}

#intro .promise-card:hover {
  transform: translateY(-8px) scale(1.03) !important;
  background: linear-gradient(
    135deg,
    rgba(0, 100, 220, 0.98),
    rgba(0, 60, 150, 0.98)
  ) !important;
  box-shadow: 0 15px 30px rgba(0,0,0,0.4) !important;
  text-decoration: none !important;
}



#yearly-promise {
  position: relative;
  padding: 80px 0;
  background: url("../img/promise-bg.jpg") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay */
#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Bring content above overlay */
#yearly-promise .container {
  position: relative;
  z-index: 2;
  background: transparent !important;
}



#yearly-promise {
  position: relative;
  padding: 80px 0;
  background: url("../img/promise-bg.jpg") center center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Dark overlay */
#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Bring content above overlay */
#yearly-promise .container {
  position: relative;
  z-index: 2;
  background: transparent !important;
}




/* FORCE Yearly Promise Background */
section#yearly-promise {
  position: relative;
  padding: 90px 0 !important;
  background-image: url("../img/promise-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
}

/* Overlay */
section#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Bring content above overlay */
section#yearly-promise > .container {
  position: relative;
  z-index: 2;
  background: transparent !important;
}



section#yearly-promise .promise-card {
  background: rgba(255, 255, 255, 0.15) !important;
  border-radius: 12px;
  padding: 25px;
  color: #fff !important;
  transition: 0.3s ease;
}

section#yearly-promise .promise-card:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  transform: translateY(-6px);
}


section#yearly-promise h4,
section#yearly-promise p,
section#yearly-promise i {
  color: #ffffff !important;
}




/* ================================
   YEARLY PROMISE SECTION FIX
================================ */

section#yearly-promise {
  position: relative;
  padding: 80px 0;
  background: url("../img/promise-bg.jpg") center center / cover no-repeat fixed !important;
  color: #fff;
}

/* Dark overlay */
section#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Keep content above overlay */
section#yearly-promise .container {
  position: relative;
  z-index: 2;
}

/* Remove white backgrounds from theme */
section#yearly-promise,
section#yearly-promise.section-bg {
  background-color: transparent !important;
}



section#yearly-promise .promise-card {
  background: rgba(255,255,255,0.15) !important;
  color: #fff;
  border-radius: 12px;
  padding: 25px;
  transition: 0.3s ease;
}

section#yearly-promise .promise-card:hover {
  background: rgba(255,255,255,0.25) !important;
  transform: translateY(-6px);
}



/* ================================
   YEARLY PROMISE SECTION (FINAL)
================================ */

body section#yearly-promise {
  position: relative;
  padding: 100px 0 !important;
  background-image: url("../img/promise-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #ffffff !important;
}

/* Dark overlay */
body section#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

/* Keep content above overlay */
body section#yearly-promise .container {
  position: relative;
  z-index: 2;
  background: transparent !important;
}



<style>
/* FORCE Yearly Promise Background – FINAL */
#yearly-promise {
  position: relative !important;
  padding: 100px 0 !important;
  background: url("https://images.unsplash.com/photo-1504052434569-70ad5836ab65") center center / cover no-repeat !important;
  color: #fff !important;
}

/* Overlay */
#yearly-promise::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* Content above overlay */
#yearly-promise .container {
  position: relative;
  z-index: 2;
  background: transparent !important;
}
</style>



/* Smooth card hover */
#yearly-promise .promise-card {
  background: rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 28px 22px;
  transition: all 0.35s ease;
  text-decoration: none;
}

#yearly-promise .promise-card:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-8px);
}

/* Icon size */
#yearly-promise i {
  font-size: 34px;
  margin-bottom: 12px;
}







#promise-section iframe {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}


#call-to-action .cta-btn {
  display: inline-block;
  width: 100%;
  padding: 15px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  background: #007bff;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.3s ease;
}

#call-to-action .cta-btn:hover {
  background: #0056b3;
  color: #fff;
  transform: translateY(-3px);
}



#promise-section {
  padding: 60px 0;
}

.promise-image {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}



.promise-image {
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

#daily-gallery .gallery-img {
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#daily-gallery .gallery-img:hover {
  transform: scale(1.05);
}




/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.lightbox-date {
  margin-top: 15px;
  color: #fff;
  font-size: 18px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}


/* --------------------------------------------------
   MOBILE FIX: Logo hiding behind top info bar
-------------------------------------------------- */
@media (max-width: 767px) {

  /* Ensure top bar stays above everything */
  #top-info-bar {
    padding: 6px 0;
    position: relative;
    z-index: 9999;
  }

  /* Push header below top bar */
  #header {
    margin-top: 45px !important;
    z-index: 9998 !important;
  }

  /* Make logo fit properly on mobile */
  #logo img {
    max-height: 45px !important;
    width: auto !important;
  }

  /* Fix alignment */
  #header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}


/* FIX: Mobile logo hidden behind info bar */
@media (max-width: 767px) {

  /* Bring header above the info bar */
  #header {
    position: relative !important;
    z-index: 99999 !important;
    margin-top: 50px !important; /* space for info bar */
    padding: 10px 0 !important;
    background: #fff !important; /* ensure visible */
  }

  /* Adjust top info bar */
  #top-info-bar {
    z-index: 999999 !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  /* Ensure logo displays correctly */
  #logo img {
    max-height: 45px !important;
    height: auto !important;
    width: auto !important;
    display: block;
  }

  /* Fix header container alignment */
  #header .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}



/* FINAL FIX — FORCE SHOW LOGO ON MOBILE */
@media (max-width: 767px) {

  /* Make sure nothing sits on top of the logo */
  #top-wrapper,
  #top-info-bar,
  #header,
  #logo,
  #logo img {
    position: relative !important;
    z-index: 999999999 !important;
  }

  /* Info bar stays fixed on top */
  #top-info-bar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    right: 0;
    height: 40px;
  }

  /* Push header DOWN below the info bar */
  #header {
    margin-top: 40px !important;
    background: #ffffff !important;
    padding: 10px 0 !important;
  }

  /* Make logo visible and correctly sized */
  #logo img {
    max-height: 50px !important;
    width: auto !important;
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
  }
}



/* --- MOBILE HEADER OPTIMIZATION --- */
@media (max-width: 767px) {

  /* Hide old long info bar text */
  #top-info-bar .container,
  #top-info-bar .row {
    display: none !important;
  }

  /* Replace with compact icon bar */
  #top-info-bar {
    height: 32px !important;
    padding: 0 10px !important;
    background: #000; /* You can change color */
    display: flex !important;
    justify-content: flex-end;
    align-items: center;
    gap: 14px;
  }

  #top-info-bar .mobile-icons {
    display: flex !important;
    gap: 16px;
    align-items: center;
  }

  #top-info-bar .mobile-icons i {
    font-size: 15px !important;
    color: #fff;
  }

  /* Header logo left, burger right */
  #header {
    margin-top: 32px !important; /* push below info bar */
    padding: 6px 12px !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    height: 60px !important;
  }

  #header .logo img {
    max-height: 45px !important; /* visible logo */
    width: auto !important;
  }

  /* Burger menu */
  .mobile-nav-toggle {
    font-size: 28px !important;
    color: #000 !important;
  }
}



/* --- MOBILE ICONS BIGGER & SPACED --- */
@media (max-width: 767px) {
  #top-info-bar .mobile-icons a i {
    font-size: 80px !important;   /* make icons bigger */
    margin-right: 80px !important; /* more space between icons */
    color: #fff !important;
  }
}





/* --- MOBILE ICONS BIGGER, GOLDEN, SPACED --- */
@media (max-width: 767px) {
  .mobile-icons a {
    display: inline-block;
    margin-right: 15px; /* space between icons */
    color: #FFD700;     /* golden color */
    font-size: 24px;    /* bigger icons */
    transition: transform 0.3s; /* optional hover effect */
  }

  .mobile-icons a:last-child {
    margin-right: 0; /* remove extra space after last icon */
  }

  .mobile-icons a:hover {
    transform: scale(1.2); /* small pop effect on hover */
    color: #FFA500;         /* slightly darker gold on hover */
  }
}




/* ===== MOBILE ICONS BIGGER, GOLDEN, SPACED ===== */
@media (max-width: 767px) {
  #top-wrapper .mobile-icons a i {
    font-size: 28px !important;   /* make icons bigger */
    color: #FFD700 !important;     /* golden color */
    margin-right: 20px !important; /* space between icons */
    vertical-align: middle;        /* align nicely */
    transition: transform 0.3s;
  }

  #top-wrapper .mobile-icons a:last-child i {
    margin-right: 0 !important; /* remove space after last icon */
  }

  #top-wrapper .mobile-icons a:hover i {
    transform: scale(1.2);
    color: #FFA500 !important;  /* slightly darker gold on hover */
  }
}






