@import url('main.css');

.navbarCustom {
      background-color: #fff; 
}
.logo {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.navLogo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-link{
    font-weight: bolder !important;
    color: var(--blue) ;
    cursor: pointer !important;
}

.nav-link:hover{
    color: var(--green) !important;
}
.nav-active{
  color: var(--green) !important;
}


/* Wrapper that fits within table cell */
.customCheckBoxHolder {
  margin: 0;
  padding: 0;
  display: flex;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

/* Hide the native checkbox */
.customCheckBoxInput {
  display: none;
}

/* Label acts as the clickable wrapper */
.customCheckBoxWrapper {
  display: flex;
  width: 100%;
  height: 100%;
}

/* The main visual part of the checkbox */
.customCheckBox {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  user-select: none;
  padding: 2px 8px;
  background-color: white;
  border-radius: 0;
  transition: color 300ms cubic-bezier(0.25, 0.8, 0.25, 1),
              background-color 300ms cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  
  box-sizing: border-box;
}

/* Text inside the checkbox */
.customCheckBox .inner {
  font-size: 18px;
  font-weight: 900;
  pointer-events: none;
  transform: translateY(0px);
  transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Hover state */
.customCheckBox:hover {
  background-color: #2c2c2c;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset,
              rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
              rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
}

.customCheckBox:hover .inner {
  transform: translateY(-2px);
}

/* Checked state */
.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox {
  background-color: #2d6737;
  color: white;
  box-shadow: rgba(0, 0, 0, 0.23) 0px -4px 1px 0px inset,
              rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
              rgba(0, 0, 0, 0.17) 0px 2px 4px 1px;
}

.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox .inner {
  transform: translateY(-2px);
}

.customCheckBoxInput:checked + .customCheckBoxWrapper .customCheckBox:hover {
  background-color: #34723f;
  box-shadow: rgba(0, 0, 0, 0.26) 0px -4px 1px 0px inset,
              rgba(255, 255, 255, 0.17) 0px -1px 1px 0px,
              rgba(0, 0, 0, 0.15) 0px 3px 6px 2px;
}

/* Disabled state */
.customCheckBoxInput:disabled + .customCheckBoxWrapper .customCheckBox {
  background-color: #ccc;
  color: #888;
  cursor: not-allowed;
  box-shadow: none;
}

.customCheckBoxInput:disabled + .customCheckBoxWrapper .customCheckBox .inner {
  transform: none;
  color: #888;
}

.customCheckBoxInput:disabled + .customCheckBoxWrapper .customCheckBox:hover {
  background-color: #ccc;
  box-shadow: none;
}

/* Optional chained style (radio group feel) */
.customCheckBoxWrapper:first-of-type .customCheckBox {
  border-bottom-left-radius: 5px;
  border-top-left-radius: 5px;
  border-right: 0;
}

.customCheckBoxWrapper:last-of-type .customCheckBox {
  border-bottom-right-radius: 5px;
  border-top-right-radius: 5px;
  border-left: 0;
}

.download-btn {
  font-family: inherit;
  font-size: 20px;
  background: var(--green); /* Use CSS variable for background */
  color: white;
  fill: rgb(155, 153, 153);
  padding: 0.7em 1em;
  padding-left: 0.9em;
  display: flex;
  align-items: center;
  cursor: pointer;
  border: none;
  border-radius: 15px;
  font-weight: 1000;
}

.download-btn span {
  display: block;
  margin-left: 0.3em;
  transition: all 0.3s ease-in-out;
}

.download-btn svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.download-btn:hover {
  background: var(--blue);
}

.download-btn:hover .svg-wrapper {
  transform: scale(1.25);
  transition: 0.5s linear;
}

.download-btn:hover svg {
  transform: translateX(2.2em) scale(1.1);
  fill: #fff;
}

.download-btn:hover span {
  opacity: 0;
  transition: 0.5s linear;
}

.download-btn:active {
  transform: scale(0.95);
}




.footer {
    background-color: var(--blue);
    color: #fff;
    padding-left: 40px !important;    
    padding-right: 40px !important;    
}

.footerLogo {
    max-width: 150px;
    height: auto;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #f0f0f0;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00bcd4;
    text-decoration: underline;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
    transition: transform 0.2s ease;
}

.social-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-icons a:hover .social-logo {
    transform: scale(1.1);
    opacity: 0.85;
}


.footer-bottom {
    background-color: var(--blue);
    font-size: 0.9rem;
    border-top: 1px solid #444;
}
