body {
  font-family: Poppins, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: normal;
  font-style: normal;
  text-indent: 0px;
  font-weight: 100;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.w-nav {
  z-index: 1000;
  background: #ddd;
  position: relative;
}

.w-nav:before, .w-nav:after {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-nav:after {
  clear: both;
}

.w-nav-brand {
  float: left;
  color: #333;
  text-decoration: none;
  position: relative;
}

.w-nav-link {
  vertical-align: top;
  color: #222;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  text-decoration: none;
  display: inline-block;
  position: relative;
}

.w-nav-link.w--current {
  color: #0082f3;
}

.w-nav-menu {
  float: right;
  position: relative;
}

[data-nav-menu-open] {
  text-align: center;
  background: #000;
  min-width: 200px;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: visible;
  display: block !important;
}

.w--nav-link-open {
  display: block;
  position: relative;
}

.w-nav-overlay {
  width: 100%;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  overflow: hidden;
}

.w-nav-overlay [data-nav-menu-open] {
  top: 0;
}

.w-nav[data-animation="over-left"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-left"] .w-nav-overlay, .w-nav[data-animation="over-left"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  right: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay {
  width: auto;
}

.w-nav[data-animation="over-right"] .w-nav-overlay, .w-nav[data-animation="over-right"] [data-nav-menu-open] {
  z-index: 1;
  top: 0;
  left: auto;
}

.w-nav-button {
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: #0000;
  tap-highlight-color: #0000;
  -webkit-user-select: none;
  user-select: none;
  padding: 18px;
  font-size: 24px;
  display: none;
  position: relative;
}

.w-nav-button:focus {
  outline: 0;
}

.w-nav-button.w--open {
  color: #fff;
  background-color: #c8c8c8;
}

.w-nav[data-collapse="all"] .w-nav-menu {
  display: none;
}

.w-nav[data-collapse="all"] .w-nav-button, .w--nav-dropdown-open, .w--nav-dropdown-toggle-open {
  display: block;
}

.w--nav-dropdown-list-open {
  position: static;
}

@media screen and (max-width: 991px) {
  .w-nav[data-collapse="medium"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="medium"] .w-nav-button {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .w-nav[data-collapse="small"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="small"] .w-nav-button {
    display: block;
  }

  .w-nav-brand {
    padding-left: 10px;
  }
}

@media screen and (max-width: 479px) {
  .w-nav[data-collapse="tiny"] .w-nav-menu {
    display: none;
  }

  .w-nav[data-collapse="tiny"] .w-nav-button {
    display: block;
  }
}


.item {
  position: relative;
  margin-bottom: 30px;
  min-height: 1px;
  float: left;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  opacity: 0; /* Start hidden */
  animation: fadeInUp 0.8s ease forwards; /* Apply the animation */
  font-family: Poppins, sans-serif;
}

.item:nth-child(1) {
  animation-delay: 0.2s;
}
.item:nth-child(2) {
  animation-delay: 0.4s;
}

.item .item-in {
  background-color: var(--blue-zodiac)!important;
  padding: 40px;
  position: relative;
  height: 100%!important;
  font-family: Poppins, sans-serif;
}

.item .item-in:hover::before {
  width: 100%;
}

.item .item-in::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 2px;
  width: 0;
  background:#f39e3f;
  right: 0;
  transition: width 0.4s;
}

.item h4 {
  margin-bottom: 10px;
  color: var(--polished-cotton);
  font-size: var(--xlarge);
  line-height: 1.4;
  font-weight: 200!important;
  font-family: Poppins, sans-serif;
}

.item p {
  font-size: 1.25rem;
 color: #fff;
 font-weight: 100!important;
 font-family: Poppins, sans-serif;
 line-height: 1.5;
}

.item a {
  font-size: 12px;
  text-transform: uppercase;
  color: #666666;
  margin-top: 10px;
  font-family: Poppins, sans-serif;
}

.item a i {
  opacity: 0;
  padding-left: 0;
  transition: 0.4s;
  font-size: 24px;
  display: inline-block;
  top: 5px;
  position: relative;
  font-family: Poppins, sans-serif;
}

.item a:hover i {
  padding-left: 10px;
  opacity: 1;
  font-weight: 300;
  font-family: Poppins, sans-serif;
}

.item .icon {
  position: absolute;
  top: 27px;
  left: -16px;
  cursor: pointer;
}

.item .icon a {
  font-size: 14px;
  font-weight: 400;
  color: #999;
  text-transform: none;
}

.item .icon svg {
  width: 32px;
  height: 32px;
  float: left;
}

.item .icon .icon-topic {
  opacity: 0;
  padding-left: 0px;
  transition: 0.4s;
  display: inline-block;
  top: 0px;
  position: relative;
}

.item .icon:hover .icon-topic {
  opacity: 1;
  padding-left: 10px;
}

@media only screen and (max-width : 768px) {
  .item .icon {
    position: relative;
    top: 0;
    left: 0;
  }
}
 .size{
  margin-bottom: 10px;
  color: #fff;
  font-size: var(--xlarge);
  line-height: 1.5;
  font-weight: 200!important;
 }
 .integrations-row{
  height: 100%!important;
 }
 .integrations-row-content{
  font-size: 1.25rem;
  line-height: 1.5;
 }
 .square-text-size{
  font-size: 25px!important;
  line-height: 1.5!important;
  font-weight: 400!important;
  /*margin-top: 1rem!important;*/
 }
 .responsive-logo {
   display: block;
  margin: 0 auto;
  width: 25%;
  height: auto;
  padding-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}
.header_banner {
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
}
.bg-orange{
  background-color:#DC5533!important;
}
.mt-3{
  font-weight: 500;
}
.dark-grey{
  color:#526042!important;
  font-size: 1.25rem!important;
  font-weight: 400!important;
}

.dark-yellow{
  font-size: 2.70rem!important;
  font-weight: 700!important;
  color: #526042 !important;
}
.white{
  font-size: 2.70rem!important;
  font-weight: 700!important;
  color: #fff!important;
}

.dark-yellows{
  font-size: 2.25rem!important;
  font-weight:900!important;
  color: #526042 !important;
  font-family: Poppins, sans-serif!important;
}
.section_size{
  padding-top: 0.4rem!important;
  padding-bottom: 2rem!important;
}
.section_sizess{
/*margin-bottom: 2rem!important;*/
}
.text-white{
  text-align: center!important;
  font-weight: 600!important;
  color: #fff!important;
  font-size: 2rem;
  font-family: Poppins, sans-serif;
}
.text-whites{
  text-align: center!important;
  font-weight: 400!important;
  color: #fff!important;
  font-size: 25px!important;
  font-family: Poppins, sans-serif;
}
/* section 3 */
/* General Section Styling */
section {
   background-color: white;
   padding: 40px 0;
   font-family: Poppins, sans-serif;
}

/* Heading Section */
.heading-section {
   text-align: center;
}

.text-weight-medium {
   font-weight: 500;
}


.dark-yellow {
   color: #F1C232; /* Change to your preferred shade of yellow */
}

.divider-line {
   width: 50px;
   height: 2px;
   background-color: #fff;
   margin: 10px auto;
}

/* Image and Text Container */
.image-text-container {
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 20px;
   margin-top: 40px;
   animation: fadeIn 1s ease-in-out;
}

.image-container {
   flex: 1;
   max-width: 45%;
}

.responsive-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
}

/* Apply the hover effect directly to the .responsive-image class */
.responsive-image:hover {
  transform: scale(1.1); /* Zoom in the image */
  filter: brightness(1.2); /* Increase brightness on hover */
}



.text-container {
   flex: 1;
   font-size: 2em;
   color: #333;
   margin-bottom: 40px;
   margin: 20px;
   position: relative;
   transform: translateY(20px);
   opacity: 0;
   animation: slideUp 1s forwards ease-in-out;
}

/* Animation from bottom to top */
@keyframes slideUp {
   0% {
      transform: translateY(20px);
      opacity: 0;
   }
   100% {
      transform: translateY(0);
      opacity: 1;
   }
}

/* Responsive adjustments */
@media (max-width: 768px) {
   .text-container {
      font-size: 1.5em;
   }
   .dark-yellow{
  font-size: 1rem!important;
  font-weight: 700!important;
  color: #526042 !important;

}
.paragraph{
  font-size: 1rem!important;
}
.responsive-logo {
   display: block;
  margin: 0 auto;
  width: 50%;
  height: auto;
  padding-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}
.white{
  font-size: 2rem!important;
  font-weight: 700!important;
  color: #fff!important;
}
}

@media (max-width: 480px) {
   .text-container {
      font-size: 1.2em;
   }
   .dark-yellow{
   font-size: 1.25rem!important;
  font-weight: 700!important;
  color: #526042 !important;
}
.divider-line{
  display: none;
}
.white{
  font-size: 1rem!important;
  font-weight: 700!important;
  color: #fff!important;
  text-align: center!important;
}
.responsive-logo {
   display: block;
  margin: 0 auto;
  width: 50%;
  height: auto;
  padding-bottom: 20px;
  animation: fadeIn 1s ease-in-out;
}
}


.text-container p {
   font-size: 1.1em;
   color: #555;
}

/* Animations */
@keyframes fadeIn {
   0% {
      opacity: 0;
      transform: translateY(20px);
   }
   100% {
      opacity: 1;
      transform: translateY(0);
   }
}

/* Responsive Styling */
@media (max-width: 768px) {
   .image-text-container {
      flex-direction: column;
      text-align: center;
   }

   .image-container, .text-container {
      max-width: 100%;
   }

   .text-container h2 {
      font-size: 1.8em;
   }

   .text-container p {
      font-size: 1em;
   }
}

@media (max-width: 480px) {
   .text-container h2 {
      font-size: 1.5em;
   }

   .text-container p {
      font-size: 0.9em;
   }
   .divider-line{
  display: none;
}
}

/* Section Styling */
.section_sizes {
    padding-top: 3rem!important;
  padding-bottom: 3rem!important;
  background-color: #526042 !important;
}

/* Container Styling */
.containers {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column; /* Ensure everything inside the container is stacked */
}

/* Section Title */
h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px; /* Add space below the title */
}

/* Grid Container */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
    padding: 20px;
    justify-content: center; /* Ensure the grid is centered */
}

/* Box Styling */
.box {
    background-color:transparent!important;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    overflow: hidden;
    text-align: center; /* Center the content inside the box */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.box:hover {
    background-color:#F39E3F!important;
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Icon Styling */
.icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    width: 15%; /* Maintain this width for larger screens */
    display: flex;
    justify-content: center; /* Horizontally center */
    align-items: center; /* Vertically center */
    margin: 0 auto; /* Center align within parent */
}

/* Ensure responsiveness */
@media (max-width: 768px) {
    .icon {
        width: 35%; /* Adjust width for smaller screens */
    }
}

@media (max-width: 480px) {
    .icon {
        width: 35%; /* Further adjust width for mobile devices */
        font-size: 2rem; /* Reduce font size for mobile */
    }
}


/* Box Heading */
h3 {
    font-size: 1.50rem;
    color: #fff!important;
}

/* Box Description */
.description {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    opacity: 0;
    visibility: hidden;
    font-family: Poppins, sans-serif;
    max-height: 0;
    overflow: hidden; /* Ensure content doesn't overflow */
    transition: opacity 0.5s ease, max-height 0.5s ease;
}

.description.show {
    opacity: 1;
    visibility: visible;
    max-height: 100px; /* Set a value that fits your content */
}


.box:hover .description {
    opacity: 1;
    visibility: visible;
    max-height: 300px;
    color: #fff;
    text-align: center!important;
    font-size: 1rem!important;
    font-weight: 400;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
}
/* General Styles */
.bg-orange {
  background-color: #FFA500;
}

.bg-red {
  background-color: #FF5733;
}

.pt-5, .pb-5 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading-section {
  margin-bottom: 10px;
}

.text-weight-medium {
  font-weight: 500;
}

.caps {
  text-transform: uppercase;
}

/* List Items */
.square-text-size ul {
  list-style-type: none;
  padding: 0;
}

.square-text-size ul li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  font-size: 25px;
  line-height: 1.5;
  position: relative;
  font-weight: 400!important;
}

/* Icons */
.unique-icon {
  width: 35px;
  height: 35px; /* Ensures the icon's height remains fixed */
  border-radius: 50%;
  margin-right: 10px;
  display: inline-block;
  transition: transform 0.3s ease-in-out;
  flex-shrink: 0; /* Prevents shrinking */
}


.square-text-size ul li:hover .unique-icon {
  transform: scale(1.2);
}

/* Divider Line */


/* Responsive Design */
@media (max-width: 767px) {
  .col-md-6 {
    width: 100%;
  }

  .square-text-size ul li {
    font-size: 14px;
  }

  .unique-icon {
    width: 18px;
    height: 18px;
  }
}
.bg-white {
  background-color: #ffff!important;
}
/* Section styling */
.infographic-section {
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-height: 100vh;*/
  background-color: #ffffff;
  animation: fadeIn 2s ease-in-out;
  overflow: hidden; /* Prevent any overflow */
}

/* Container for the infographic */
.infographic-container {
  width: 100%; /* Allow container to take up full width */
  max-width: 1200px; /* Max width for larger screens */
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
}

/* Infographic image styling */
.infographic-image {
  width: 100%; /* Image takes full width */
  height: auto; /* Maintain aspect ratio */
  max-width: 100%; /* Prevent stretching beyond its container */
  animation: slideIn 3s ease-in-out;
}

/* Animation for fading in the section */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Animation for sliding in the infographic */
@keyframes slideIn {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive design for smaller screens */
@media (max-width: 1024px) {
  .infographic-image {
    width: 100%;
    max-width: 100%; /* Image width adjusts with screen size */
  }
}

@media (max-width: 768px) {
  .infographic-container {
    padding: 10px; /* Adjust padding for smaller screens */
  }

  .infographic-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .infographic-container {
    padding: 5px; /* Less padding for very small screens */
  }

  .infographic-image {
    width: 100%; /* Full width on smaller devices */
    height: auto;
  }
}
.bg-whitegray{
  background-color: #f3f4f6!important;
}
.dark-black {
  font-size: 1.50rem !important;
  font-weight: 900!important;
  color: #000 !important;
}

.slide{ 
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.card{
  width: 90vmin;
  height: 55vmin;
  display: flex;
  box-shadow: 0 30px 40px -15px rgba(0,0,0,0.35);
  background-color: #fff;
}

.card__img{
  background-position: center;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;  
}

#img01{
  background-image: url("https://images.unsplash.com/photo-1477865634015-0b232c1dd56a?dpr=1&auto=format&fit=crop&w=1500&h=2109&q=80&cs=tinysrgb&crop=");
}

#img02{
  background-image: url("https://images.unsplash.com/photo-1495041405835-b4702187b514?dpr=1&auto=format&fit=crop&w=1500&h=2250&q=80&cs=tinysrgb&crop=");
}

#img03{
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?dpr=1&auto=compress,format&fit=crop&w=2734&h=&q=80&cs=tinysrgb&crop=");
}

.card__content{
  padding: 10% 5%;
  box-sizing: border-box;
  width: 50%;
}

.card__content-theme{
  font-weight: 900;
  font-size: 1.7vmin; 
}

.card__content-header{
  font-weight: 900;
  font-size: 54px;
  font-size: 7vmin;
  text-transform: capitalize;
  letter-spacing: 0.01em;
  line-height: 0.91;
  margin: 3vmin 0 3.5vmin;  
}

.card__content-paragraph{
  font-size: 1.6vmin;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 2.5vmin;
}

.card__content-link{
  color: #BA3428;
  font-size: 1.8vmin;
  display: block;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;

  &:hover{
    opacity: 1;
  }

  &:after{
    content: ' →'
  }
}

.prevnext{
  position: absolute;
  width: 4vmin;
  height: 8vmin;
  right: 2%;
  bottom: 0;
  top: 0;
  margin: auto 0;
}

.prevnext-button{
  width: 100%;
  height: 50%;
  border: 0;
  background-color: transparent;
  font-size: 20px;
}

#prev, #next{
  position: relative;
  cursor: pointer;
  
  &:hover{
  
    &:after, &:after{
      opacity: 1;
    }
  }
}

#prev:after, #next:after{
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

#prev:after{
  content: '↑';
}

#next:after{
  content: '↓';
}
.colors{
  color:#f39e3f!important;
  font-weight: 400;
}


.icon-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.icon-card {
    background-color: #526042!important;
    border-radius: 10px;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s;
    cursor: pointer;
}

.icon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;
}

.icon-title {
    font-size: 1.25rem;
    margin: 10px 0;
    cursor: pointer;
    font-weight: 700;
}

.icon-paragraph {
    display: none;
    font-size: 1rem;
    color:#fff!important;
    margin-top: 10px;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .icon-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .icon-container {
        grid-template-columns: 1fr;
    }
}
/* Coming Soon Section Styling */
.coming-soon { 
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Animated Overlay */
.coming-soon::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    animation: fadeIn 3s ease-in-out infinite alternate;
    z-index: 1;
}

/* Content Styling */
.content {
    position: relative;
    z-index: 2;
    animation: slideUp 2s ease-out;
}

.content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.content p {
    font-size: 1.2rem;
}

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.8;
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .content h1 {
        font-size: 2.5rem;
    }
    .content p {
        font-size: 1rem;
    }
  }

  .accordion-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f5f5f5;
    padding: 20px;
}

.accordion-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 columns */
    gap: 20px;
    max-width: 1200px;
    width: 100%;
}

.accordion-box {
    background-color:#DC5533!important;
    border: 6px solid transparent; /* Makes room for animated border */
    border-radius: 12px!important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 18px 0;
    text-align: center;
    transition: transform 0.3s ease;
    animation: border-animation 3s linear infinite; /* Continuous animation */
}

.accordion-box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 40px;
    margin-bottom: 10px;   
}
.accordion-title {
    text-align: center;
    margin: 0;
    font-size: 1.15rem!important;
}

.accordion-title .title-text {
    font-weight: bold;
    cursor: pointer;
    display: inline-block;
    position: relative;
    color: 1.50!important;
    font-weight: 500!important;
}

.accordion-title .symbol {
    margin-left: 8px;
    font-weight: bold;
    color: #fff;
    transition: transform 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    margin-bottom: 10px;
    opacity: 0;
    font-size: 16px;
    color: #fff!important;
    padding: 15px!important;
    font-weight: 400!important;
}

.accordion-toggle {
    display: none;
}

.accordion-toggle:checked + label .symbol {
    content: "-";
    transform: rotate(180deg); /* Animate symbol */
}

.accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
    padding: 10px 0;
    color: #000;
    opacity: 1;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .accordion-container {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for smaller screens */
    }
    .accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
    padding: 10px 0;
    color: #000;
    opacity: 1;
    font-weight: 400;
}
.icon {
    font-size: 40px;
    margin-bottom: 10px;
    width: 40%;
}
}

@media (max-width: 480px) {
    .accordion-container {
        grid-template-columns: 1fr; /* 1 column for very small screens */
    }
    .accordion-toggle:checked ~ .accordion-content {
    max-height: 500px;
    padding: 10px 0;
    color: #000;
    opacity: 1;
    font-weight: 400;
}
.icon {
    font-size: 40px;
    margin-bottom: 10px;
    width: 40%;
}
}

/* Overlay Effect */
/* Content Styles */
.content {
  z-index: 2;
  animation: fadeInUp 2s ease-out;
  margin-bottom: 2rem!important;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.description {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  margin-bottom: 2rem!important;
  font-weight: 600!important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .description {
    font-size: 1rem;
  }
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.objectives-section {
  padding: 50px 20px;
  text-align: center;
}

.section-title h1 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
}

.objectives-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 20px;
}

.objective-card {
  background: white; /* Set background to white */
  color: #333; /* Optional: Update text color for contrast */
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: scale(1);
  transition: transform 0.3s, box-shadow 0.3s, opacity 0.5s ease, border 0.3s;
  opacity: 1; /* Default visible */
  height: 120px !important;
  position: relative;
  overflow: hidden;
  border: 3px solid transparent; /* Default transparent border */
}

.objective-card {
  position: relative; /* Ensure pseudo-elements are positioned relative to the card */
  overflow: hidden; /* Hide overflow for smooth effects */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover transitions */
}

/* Hover Transformation */
.objective-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Slightly softer shadow */
}

/* Green Overlay Effect */
.objective-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(82, 96, 66, 0.85); /* Green overlay */
  opacity: 0;
  transition: opacity 0.3s ease; /* Smooth fade-in effect */
  z-index: 1;
}

/* Hover State for Overlay */
.objective-card:hover::before {
  opacity: 1;
}

/* Text Styling Adjustments */
.objective-card h2,
.objective-card p {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #526042; /* Default text color */
  font-weight: 600;
  z-index: 2; /* Ensure content appears above overlay */
  position: relative;
  transition: color 0.3s ease; /* Smooth color transition */
}

/* Change all text color on hover */
.objective-card:hover h2,
.objective-card:hover p {
  color: #fff; /* White text when hovering over the card */
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-title h1 {
    font-size: 2rem;
  }

  .objective-card h2 {
    font-size: 1.25rem;
  }

  .objective-card p {
    font-size: 0.9rem;
  }
}





