img {
  -drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}
body h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
  font-family: oxygen;
}

/* Your original working CSS with one addition */
body.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
  transition: all 0.5s ease;
}

/* Add this new class for sliding right */
body.slide-out-right {
  transform: translateX(100%);
  opacity: 0;
  transition: all 0.5s ease;
}

/* Keep your original body styles */
body {
  transform: translateX(0);
  opacity: 1;
  transition: all 0.5s ease;
}

.core {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease; /* Only transition transform, not all */
  cursor: pointer;
}

.core:hover {
  transform: translateY(-5px);
}

.core img {
  width: 60px;
  height: 60px;
}

.core:hover img {
  filter: hue-rotate(225deg) saturate(2.3) brightness(2.1);
  transform: scale(1.1);
  /* Add a very fast transition specifically for filter */
  transition: transform 0.3s ease, filter 0.1s ease;
}

.core:hover h2{
  color: #7CB342;
  
}

.core h2 {
  margin-top: 15px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.core:hover h2 {
  color: #7CB342;
}

/* Rest of the CSS remains the same */
.core::after {
  content: attr(data-message);
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  color: #79B552;
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.core::before {
  content: '';
  position: absolute;
  bottom: -42px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid #7CB342;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.core:hover::after,
.core:hover::before {
  opacity: 1;
  visibility: visible;
}

.content {
  padding-bottom: 60px;
}

/* HEADER - NAVBAR */
.header {
  position: fixed;
  width: 100%;
  z-index: 999;
  padding-top: 0;
  background: #ffffff;
  top: 0;
}
.header .navbar {
  padding-bottom: 0;
  padding-top: 0 !important;
}
.header .navbar .container {
  /* background: #fffcfc; */
  padding: 1.5em 1.5em;
  border-radius: 0 2.5em;
}
.header .navbar .logo img {
  width: 100%;
  margin-right: 0.5em;
}
.header .navbar .logo h1 {
  color: #3e2c1e;
  font-size: 36px;
  margin-left: 5px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.header .navbar .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: transparent;
  padding: 0%;
  padding-block: 3px !important;
}
.header .navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}
.header .navbar-nav {
  text-align: center;
  margin-block: 0.5em;
  display: flex;
  justify-content: center;
  flex-direction: row;
  /* background: #ffead936; */
  border-radius: 0px 20px;
  padding-block: 0px;
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
      padding-right: 1.5em !important;
      padding-left: 1.5em !important;
  }
}
.header .navbar-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 2em;
  background: #c5d8d15f;
  padding: 3px;
  border-radius: 25px;
}
.header .navbar-nav ul li {
  display: flex;
}
.header .navbar-nav ul li a {
  padding-inline: 2em;
  position: relative;
  font-size: 15px;
  color: #132B42 !important;  
  font-weight: 500;
  transition: 0.3s;
  display: inline-block;
}

.header .navbar-nav ul li a.active {
  color: #ffffff !important;
  background: #5ca62acc;
  border-radius: 50px;
}

.header .navbar-nav ul li a.active {
  background: #5ca62acc;
  border-radius: 50px;
  color: white;
}


/* .header .navbar-nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #EB5B00;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}
.header .navbar-nav ul li a.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
} */
.header .navbar-nav ul button {
  color: #000000;
  font-weight: 600;
  font-size: 16px;
  background: #FFD300;
  padding: 0 3em;
  height: 2.5em;
  border: none;
  transition: 0.2s;
}
.header .navbar-nav ul button:hover {
  scale: 1.075;
  filter: drop-shadow(#ffd5004d 0px 0px 10px);
}
.header .navbar .menu-icon {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  position: relative;
  z-index: 2;
  margin: 20px;
}
@media (max-width: 991px) {
  .header .navbar-nav ul button {
    font-size: 13px;
  }
  .header .navbar-nav ul {gap: 0.5em;}
  .header .navbar .menu-icon {display: flex;}
}
.header .navbar .menu-icon .line {
  width: 1em;
  height: 2px;
  margin-left: 5px;
  background-color: #5BA62A;
  transition: all 0.3s;
}
.header .navbar button[aria-expanded="true"] {
  transform: translateX(0);
}
.header .navbar button[aria-expanded="true"] .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.header .navbar button[aria-expanded="true"] .line:nth-child(2) {
  opacity: 0;
}
.header .navbar button[aria-expanded="true"] .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  padding: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
}

.footer-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.footer-links .social-icons a img {
  transition: transform 0.3s ease;
}

.footer-links .social-icons a:hover img {
  transform: scale(1.2);
}

.container-card {
            background-color: white;
            padding: 2rem; /* p-8 */
            border-radius: 0.5rem; /* rounded-lg */
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
            max-width: 48rem; /* max-w-2xl */
            margin: auto;
        }

        .description p {
            color: #4a5568; /* text-gray-700 */
            line-height: 1.625; /* leading-relaxed */
            margin-bottom: 1rem;
        }

        /* Styling for the hidden content area */
        .more-details-content {
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transition: max-height 0.7s ease-in-out, opacity 0.5s ease-in-out 0.2s;
            margin-top: 1rem; /* mt-4 */
        }

        .more-details-content.expanded {
            max-height: 1000px; /* Adjust based on your content's max height */
            opacity: 1;
        }
        
        .message-box-custom {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #48bb78; /* bg-green-500 */
            color: white;
            padding: 1rem; /* p-4 */
            border-radius: 0.375rem; /* rounded-md */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-lg */
            z-index: 1000;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .message-box-custom.show {
            opacity: 1;
        }

        /* Transition behavior */
#moreContent {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}

#moreContent.expanded {
  max-height: 1000px; /* enough to reveal content */
}

#readMoreBtn {
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #2eb006;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



@media (max-width: 992px) {
  .header .navbar .container {
    width: 90%;
    padding: 0.5em 0.75em;
  }
  .header .navbar .logo {
    width: 70%;
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 2em;
  }
  .header .navbar .menu-icon {
    width: 20px;
  }
  .header .navbar-nav ul {
    flex-direction: column;
    padding-left: 0;
    width: 100%;
  }
  .header .navbar-nav ul li {
    padding-block: 1px;
    flex-direction: column;
  }
  .header .navbar-nav ul li a {
    font-size: 14px;
    border-radius: 10px;
    padding-top: 10px;
  }
  .header .navbar-nav ul li a::after {
    display: none;
  }
  .header .navbar-nav ul li a:hover::after {
    display: none;
  }
}
@media (max-width: 767px) {
  .header .navbar .logo {
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 1em;
  }
}
@media (max-width: 500px) {
  .header .navbar .logo {
    justify-content: space-between;
  }
  .header .navbar .logo h1 {
    margin-right: 0;
    margin-left: 15px;
  }
}

#emailPopup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.popup-content {
  background: white;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  border-radius: 10px;
  text-align: center;
  position: relative;
}

.popup-content h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #224B73;
}

.popup-content p {
  margin-bottom: 20px;
}

.popup-content input[type="email"] {
  padding: 10px;
  width: 90%;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup-content button {
  padding: 10px 20px;
  background-color: #79B552;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}
/* Popup background */
/* Popup background (full screen and centered content) */
/* Hide popup by default */
#cornerPopup {
  display: none;
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

/* Popup content */
.corner-popup-content {
  background: white;
  padding: 20px;
  width: 90vw;
  max-width: 300px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  border-radius: 10px;
  font-family: sans-serif;
}

/* Close button */
.close-btn {
  float: right;
  font-size: 20px;
  cursor: pointer;
}

/* Form elements */
.corner-popup-content input[type="email"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.corner-popup-content button {
  background-color: #79B552;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.nav-link {
  padding: 10px 20px;
  text-decoration: none;
  color: #0e2a47;
  border-radius: 25px;
  transition: background 0.3s;
}

.nav-link.active {
  background-color: #79B552;
  color: white !important;
}
#whatsapp-float-wrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 99999;
}

#whatsapp-float-wrapper img {
  width: 32px;
  height: 32px;
}

#whatsapp-float-wrapper:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}
