
/* Top navbar overall */
.top-navbar {
  padding: 0;
  background-color: transparent !important; /* remove default dark background */
  background-image: none !important;        /* remove Bootstrap gradient */
}

/* Brand section transparent */
.top-navbar .brand-section {
  background-color: transparent !important;
  padding: 5px 15px;
}

.top-navbar .navbar-brand img {
  height: 100px;
  width: 100px;
  border-radius: 5px;
}

/* Nav section with solid background */
.top-navbar .nav-section {
  background-color: #67a282 !important;
  padding: 0 15px;
  width: 100%; /* full width */
}

/* Make nav items stretch evenly */
.top-navbar .navbar-nav {
  display: flex;
  justify-content: space-between; /* distribute items */
  width: 100%;
}



/* Nav links */
.top-navbar .navbar-nav .nav-link {
  color: #ffffff !important;
  font-size: 1rem;
  padding: 10px 20px;
  text-align: center;
}

.top-navbar .navbar-nav .nav-link:hover {
  background-color: #eff1f0;
  border-radius: 5px;
  color: #67a282 !important;
}



/* Container styling */
.container-fluid.mt-3 {
  text-align: left;
  padding: 15px 5px;
  background: linear-gradient(135deg, #67a282, #f9fdfa); /* gradient background */
  color: #fff;
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* Main heading */
.container-fluid.mt-3 h1 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.0rem;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
  animation: fadeInDown 1s ease-in-out;

  -webkit-text-stroke: 1px  #4c986f; /* thickness + color */
  color: white; /* fill color inside the stroke */
}



/* Subheading */
.container-fluid.mt-3 h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  color: #0e0d0d;
  animation: fadeInUp 1.2s ease-in-out;
}

/* Simple fade animations */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


.container-fluid.mt-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5px;
  background: linear-gradient(135deg, #67a282, #f9fdfa);
  border-radius: 5px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}



@media (max-width: 768px) {
  .container-fluid.mt-3 {
    flex-direction: column;
    text-align: center;
  }

}









/* Give the carousel a shadow and rounded corners */
#carouselExampleControls {
  border-radius: 15px;
  overflow: hidden; /* ensures rounded corners apply to images */
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Dark overlay effect on images */
.carousel-item img {
  filter: brightness(85%); /* slightly darkens images */
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Zoom effect on hover */
.carousel-item img:hover {
  transform: scale(1.05);
  filter: brightness(100%);
}

/* Style the carousel controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 15px;
}

/* Add custom captions */
.carousel-caption {
  background: rgba(0,0,0,0.5);
  padding: 15px;
  border-radius: 10px;
  font-size: 1.2rem;
}

.carousel-item img {
  height: 500px;       /* adjust as needed */
  object-fit: cover;  /* fills area without distortion */
}

@media (max-width: 768px) {
  .carousel-item img {
    height: 250px;
  }
}

@media (min-width: 769px) {
  .carousel-item img {
    height: 500px;
  }
}


/* Gradient background for the section */
.custom-gradient {
  background: linear-gradient(to right, #67a282, #fefcea); 
  padding: 50px 0;
}










h1 {
color: #67a282;
}

h2 {
  padding-left: 5px;
  -webkit-text-stroke-color: #ffffff;
  -webkit-text-stroke-width: thin;
}









/* Gradient background for the section */
.custom-gradient {
  background: linear-gradient(to right, #67a282, #fefcea); 
  padding: 50px 0;
}

/* Card styling */
.card {
  border-radius: 12px;              /* Rounded corners */
  overflow: hidden;                 /* Ensures images respect rounded corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;            /* Slight transparency for elegance */
  align-items: center;
}


.card-img-top {
    border: 5px solid #ffffff;
}



.card-img, .card-img-bottom, .card-img-top {
    width: 75%;
}



/* Card hover effect */
.card:hover {
  transform: translateY(-8px);      /* Lift effect */
  box-shadow: 0 12px 24px rgba(0,0,0,0.15); /* Stronger shadow */
}


/* Card body text */
.card-body {
  background: #ffffffcc;            /* Slight transparency for elegance */
  backdrop-filter: blur(4px);       /* Soft blur effect */
  padding: 25px;
}

/* Headings inside cards */
.card-body h5 {
  color: #000000;;                   /* Deep green for contrast */
}

/* Paragraph text */
.card-body p {
  font-size: 0.95rem;
  line-height: 1.6;
}
















.bottom-navbar{
 background-color: #67a282 !important;
}

.navbar-brand img {
  height: 100px;   /* adjust height */
  width: 100px;    /* keep aspect ratio */
  border-radius: 5px; /* optional rounded corners */
}


/* Make nav items stretch across the screen */
.navbar-nav {
  display: flex;
  justify-content: space-between; /* distributes items evenly */
  width: 100%; /* full width of navbar */
}

/* Style each nav item */
.navbar-nav .nav-item {
  flex: 1; /* each item takes equal space */
  text-align: center; /* center the text inside */
}
