:root {
      --yellow: #afe67f;
      --dark-green: #118442;
      --bright-green: #0f5132;
      --white: #fff;
      --black: #000;
    }

    body {
      font-family: "Radley", serif;
      margin: 0;
      padding: 0;
        -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE10+ */
  user-select: none;
    }
    
img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.logo-img
{
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
    /* navbar design */
    .navbar-custom {
      background-color: var(--dark-green);
      padding: 0.8rem 1rem;
        z-index: 1055; /* Must be higher than slider z-index */
          font-size: 18px;
  width: 100%;
    }

.dropdown-menu {
  z-index: 2000; /* Ensure it's above other sections */
}
    .navbar-brand {
      color: var(--white) !important;
      font-weight: bold;
      font-size: 1.8rem;
    }

    
    nav .navbar-nav li a 
    {
      color: var(--white) !important;                                     
    }

    /* Homepage  */
    .hedline
    {
      font-size: 28px;
      font-family: "Radley", serif;
      font-weight: 400;
      
      text-align: left;
      color: #f8c32c;
    }
    .subhedline
    {
      font-size: 22px;
       font-family: "Montserrat", sans-serif;
  font-weight: 600;
      text-align: left;
      color: var(--white);
    }
.subhedline-services
{
  font-size: 22px;
      font-family: "Radley", serif;
      font-weight: 400;
      text-align: left;
      color: var(--dark-green) !important;
}
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.2);
  transition: background-image 1s ease-in-out;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(36, 115, 54, 0.5); /* transparent green */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.hedline-about
{
  text-align: center !important;
  font-family: "Montserrat", sans-serif;                        
  font-weight: 600;
  color: var(--dark-green);
}
.section-about h3
 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #146c43;
    margin-bottom: 2rem;
    position: relative;
}
.counter
{
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
}
.hedline-count
{
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}


    .btn-yellow {
      background-color: var(--yellow);
      color: black;
      font-weight: bold;
      border-radius: 30px;
      padding: 10px 25px;
      border: none;
      transition: all 0.3s ease;
    }

    .btn-yellow:hover {
      background-color: #e0b222;
    }


    .img-tilt-left {
  transform: rotate(-5deg);
  transition: transform 0.4s ease;
}
.img-tilt-right {
  transform: rotate(5deg);
  transition: transform 0.4s ease;
}
.img-tilt-left:hover,
.img-tilt-right:hover {
  transform: rotate(0deg) scale(1.05);
}
.img-about
{
  height: 600px;
}



.service-card {
  border: 5px solid #34a853;
  border-radius: 0 0 60px 60px;
  background: white;
  transition: transform 0.4s ease;
  max-width: 340px;
}
.service-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.service-img {
  border-radius: 20px 20px 0 0;
  height: 200px;
  object-fit: cover;
}

.service-icon {
  font-size: 2rem;
  color: #f9a825;
}

.service-arrow {
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #f9a825;
  transition: transform 0.3s;
}
.service-card:hover .service-arrow {
  transform: translateX(10px);
}
.hex-card {
  border: 2px solid #2e7d32;
  border-bottom-left-radius: 20%;
  border-bottom-right-radius: 20%;
  background: white;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  min-height: 350px;
  margin: auto;
}

.hex-card:hover {
  transform: scale(1.05);
  cursor: pointer;
}

.hex-top img {
  border-radius: 0 0 30px 30px  ;
  height: 150px;
  object-fit: cover;
  width: 100%;
}

.hex-icon {
  background-color: #f9c74f;
  display: inline-block;
  padding: 0.6rem;
  border-radius: 12px;
  font-size: 1.8rem;
  margin-top: -25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hex-arrow {
  font-size: 1.5rem;
  color: #f9a825;
  transition: transform 0.3s ease;


.hex-card:hover .hex-arrow {
  transform: translateX(8px);
}

}



.section-blog
{
  background: #233f2e;
  padding: 100px 20px;

}
.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1rem;
}

.blog-slider {
  width: 90%;
  overflow: hidden;
}

.blog-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease-in-out;
}

.blog-card {
  min-width: 300px;
  max-width: 300px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  flex: 0 0 calc(100% / 3 - 1.5rem); /* for 3 at a time with gaps */
  max-width: calc(100% / 3 - 1.5rem);
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 128, 0, 0.2);
}

.blog-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.slider-btn {
  background-color: #2e7d32;
  color: var(--white);
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: #1b5e20;
}

.slider-container {
  position: relative;
  padding: 1rem;
}

.blog-slider {
  width: 100%;
  overflow: hidden;
}

.blog-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s ease-in-out;
}

.blog-card {
  flex: 0 0 calc(100% / 3 - 1.33rem); /* 3 cards with 2rem total gap */
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 128, 0, 0.1);
  padding: 1.5rem;
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 35px rgba(0, 128, 0, 0.2);
}

.slider-btn {
  background-color: #2e8d45;
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  font-size: 1.4rem;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-btn:hover {
  background-color: #247336;
}

.slider-controls {
  text-align: right;
}
#blog
{
      position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

 .img-arrow
 {
  width: 35px;
  height: 35px;
 }


/* contact us page */

  .contact-section {
        display: flex;
        max-width: 1200px;
      margin: 40px auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }

    .left-column {
      width: 45%;
      background-color: #dad7cd;
      padding: 30px;
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .left-column img {
      width: 100%;
      border-radius: 12px;
      margin-bottom: 20px;
    }
    .info-box{
        line-height: 25px !important;
        margin-top: 15px !important;
        
    }
    .info-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
    }

    .info-item .icon {
      font-size: 24px;
      margin-right: 15px;
    }

    .info-item h5 {
      margin: 0;
      font-size: 16px;
      font-weight: 600;
    }

    .info-item p {
      margin: 4px 0 0 0;
      font-size: 14px;
    }

    .right-column {
      width: 55%;
      background-color: var(--white);
      padding: 40px;
      color: var(--dark-green);
      box-sizing: border-box;
    }

    .right-column h2 {
      font-size: 30px;
      margin: 0 0 10px;
    }

    .right-column .subtitle {
      color: #f8c03e;
      font-weight: 600;
    }

    .right-column .description {
      font-size: 14px;
      margin-bottom: 25px;
      opacity: 0.9;
    }

    

    .input-field, .textarea-field, select {
      width: 100%;
      padding: 12px 15px;
      border-radius: 25px;
      border: none;
      outline: none;
      border: 1px solid var(--dark-green);
      /* background-color: var(--dark-green); */
      color: var(--bright-green);
    }

    .textarea-field {
      border-radius: 15px;
      height: 120px;
      resize: none;
      margin-bottom: 15px;
    }

    .form-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }

    .checkbox {
      display: flex;
      align-items: center;
      font-size: 14px;
    }

    .checkbox input {
      margin-right: 8px;
      accent-color: #f8c03e;
    }

    .send-btn {
      background-color: var(--yellow);
      color: #10491d;
      border: none;
      border-radius: 25px;
      padding: 10px 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      align-items: center;
      transition: background 0.3s;
    }

    .send-btn:hover {
      background-color: #f8c03e;
      color: #10491d;
    }

    .arrow {
      margin-left: 8px;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

.page-hedline
    {
      font-family: "Montserrat", sans-serif;
      margin-top: 180px !important;
      font-size: 52px !important;
      font-weight: 900;
      color: #F47621;
      text-align: center;
       -webkit-text-stroke: 1px #10491d; /* Stroke width and color */
    }
      .left-column, .right-column {
        width: 100%;
      }

      .form-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .contact-form .row {
        flex-direction: column;
      }
      
    }


/* every page headwer with heading */
    .page-header
    {
      background-image: url("../image/history-img-4.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      height: 300px;
      opacity: 0.8;
    }
    .page-hedline
    {
      font-family: "Montserrat", sans-serif;
      margin-top: 180px;
      font-size: 82px;
      font-weight: 900;
      color: #F47621;
      text-align: center;
       -webkit-text-stroke: 1px #10491d; /* Stroke width and color */
    }


/* FAQ section */
    #faq h2 {
  color: #198754;
}

.accordion-button {
  font-family: 'Radley', serif;
  font-weight: bold;
  background-color: var(--white);
  color: #000;
  transition: background-color 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #198754;
  color: white;
}

.accordion-body {
  font-size: 16px;
  background-color: #f9f9f9;
  border-top: 1px solid #ccc;
}


/* careers page */



#careers h2 {
  color: #1b5e20;
}

.job-card {
  transition: transform 0.3s ease;
}

.job-card:hover {
  background: #afe67f;
  transform: translateY(-5px);
}

.apply-btn {
  font-weight: bold;
}



/* Knowledge center page / Gov. schema page */


#knowledge-centre h2 {
  color: #198754;
}

.nav-pills .nav-link {
  border: 1px solid #198754;
  color: #198754;
  margin-bottom: 10px;
}

.nav-pills .nav-link.active {
  background-color: #198754;
  color: var(--white);
}

.card h5 {
  color: #1a4e2c;
}

.section-title {
   font-family: "Montserrat", sans-serif;
      border-left: 5px solid #007849;
      padding-left: 15px;
      font-weight: 600;
      margin-top: 40px;
      font-size: 24px;
      margin-bottom: 10px ;
      
    }

 .reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }


/* News and media page  */
.gallery-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      grid-auto-rows: 250px;
      gap: 16px;
      padding: 40px 20px;
      max-width: 1200px;
      margin: auto;
    }

    .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: pointer;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

   .caption-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 14px;
  line-height: 1.2; /* smaller line height for multiple lines */
  padding: 10px;
  box-sizing: border-box;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;  /* limit lines */
  -webkit-box-orient: vertical;
  word-wrap: break-word;
  text-overflow: ellipsis;
  white-space: normal;  /* allow wrapping */
}

    .gallery-item:hover img {
      transform: scale(1.05);
    }

    .gallery-item.wide {
      grid-column: span 2;
    }

    .gallery-item.tall {
      grid-row: span 2;
    }

    @media (max-width: 768px) {
      .gallery-item.wide,
      .gallery-item.tall {
        grid-column: span 1;
        grid-row: span 1;
      }
    }

    /* Lightbox */
    .lightbox-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.9);
      justify-content: center;
      align-items: center;
      z-index: 9999;
      flex-direction: column;
    }

    .lightbox-content img {
      max-width: 90%;
      max-height: 80vh;
      border-radius: 10px;
    }

    .lightbox-controls {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 30px;
    }

    .lightbox-arrow {
      color: white;
      font-size: 3rem;
      cursor: pointer;
      user-select: none;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: var(--white);
      cursor: pointer;
    }




    /* Download Page  */

    
    .download-section {
      padding: 60px 20px;
    }
    .download-card {
      border: 1px solid #dee2e6;
      border-radius: 12px;
      padding: 24px;
      background: var(--white)fff;
      box-shadow: 0 6px 12px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    .download-card:hover {
      transform: translateY(-4px);
    }
    .download-card i {
      font-size: 2rem;
      color: #198754;
    }
    .download-title {
      font-weight: 600;
      margin-top: 10px;
      font-size: 1.1rem;
    }
    .btn-download {
      background-color: #198754;
      color: var(--white);
      border-radius: 8px;
      padding: 6px 16px;
    }
    .btn-download:hover {
      background-color: #157347;
    }


/* our services page */


     .service-card1 {
      min-height: 220px;
      border: 1px solid #AFE67F;
      border-left: 7px solid #AFE67F;
      background-color: #f8f9fa;
      padding: 2rem;
      margin-bottom: 2rem;
      color: #000;
      position: relative;
      overflow: hidden;
      z-index: 1;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
border-bottom-right-radius: 20px;
border-top-right-radius: 20px;
    }

    .service-card1 h5 {
      font-family: "Montserrat", sans-serif;
      font-weight: bold;
    }

    .service-card1::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 0%;
      height: 100%;
      background-color: #AFE67F;
      z-index: -1;
      transition: width 2s ease;
    }

    .service-card1:hover::before {
      width: 100%;
    }

    .service-card1:hover {
      color: #10491d;
    }
    .modal-title-services
    {
      font-family: "Montserrat", sans-serif;
      font-weight: bold;
    }

     .social-links {
      display: flex;
      gap: 2rem;
      padding-left: 0;
    }
    .social-links li {
      list-style: none;
    }
    .social-links a {
      font-size: 1.5rem;
      color: #233F2E;
      transition: color 0.3s ease, transform 0.3s ease;
    }
    .social-links a:hover {
      color: #28b173;
      transform: scale(1.2);
    }
    .reveal {
      opacity: 0;
      transform: translateY(50px);
    }


    section.why-choose {
    background: linear-gradient(145deg, #f4fff7, #e6f8ed);
    border-radius: 16px;
    padding: 4rem 2rem;
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.1);
  }

  section.why-choose h2 {
    font-weight: 700;
    font-size: 2.2rem;
    color: #146c43;
    margin-bottom: 2rem;
    position: relative;
  }

  section.why-choose h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #198754;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    border-radius: 2px;
  }

  section.why-choose ul.list-group li {
    background: var(--white)fff;
    margin-bottom: 12px;
    border: none;
    border-left: 5px solid #198754;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
  }

  section.why-choose ul.list-group li:hover {
    background: #d1e7dd;
    transform: scale(1.02);
    cursor: default;
  }




/* CSR activity */

  .csr-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .csr-card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #f8f9fa;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
  }

  .csr-card:hover {
    transform: translateY(-5px);
  }

  .csr-card.reverse {
    flex-direction: row-reverse;
  }

  .csr-img {
    flex: 1 1 50%;
    min-width: 300px;
  }

  .csr-img img {
    width: 100%;
    height: 300px;
    display: block;
    object-fit: cover;
  }

  .csr-text {
    flex: 1 1 50%;
    padding: 2rem;
  }

  .csr-text h5 {
    margin-bottom: 1rem;
    color: #146c43;
  }

  .csr-text ul {
    padding-left: 1.5rem;
  }

  .csr-text li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: #444;
  }

  .csr-footer h5 {
    font-size: 1.3rem;
    margin-top: 2rem;
    color: var(--dark-green);
  }

  .csr-footer ul {
    padding-left: 1.5rem;
  }

  .csr-footer li {
    margin-bottom: 0.5rem;
    color: #555;
  }



    .card-content {
      opacity: 0;
      transform: translateY(50px);
      transition: all 0.8s ease;
    }

    .card-content.in-view {
      opacity: 1;
      transform: translateY(0);
    }

    .img-hover {
      transition: transform 0.4s ease;
    }

    .img-hover:hover {
      transform: scale(1.03);
    }



/* our partner section */


.partner-section {
  background: #f9fff8;
  padding: 100px 0;
}

.section-title {
  font-weight: 700;
  color: var(--dark-green);
  position: relative;

}

.partner-box {
  background-color: var(--white);
  border-left: 5px solid #16a34a;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  min-height: 100px;
  min-width: 400px;
  display: flex;                /* Flexbox enables vertical centering */
  align-items: center;          /* Vertical center */
  justify-content: center;      /* Optional: horizontal center */

}

.partner-box:hover {
  transform: translateY(-5px);
  border-left: 5px solid #22c55e;
  background-color: #e9fce9;
}



  .section-about .section-title {
    color: #2c7a7b;
    font-weight: 600;
  }
  .img-hover {
    transition: transform 0.3s ease-in-out;
  }
  .img-hover:hover {
    transform: scale(1.05);
  }


  .crd{
    padding: 7px;
    background-color: #e5fff5;
    border-radius: 10px;
    border: 1px solid #007849;
    margin: 10px;
  }
  .crd-img
  {
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }
  .crd-heding
  {
    text-align: center;
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    font-size: 14px;
    color: var(--dark-green);
  }
  .crd-sub
  {
    text-align: center;
  }









  #mediaTabsSection {
  background: #f9f9f9;
}


/* this is faq sidebar navbar design */


.nav-tabs .nav-link {
  background: var(--white);
  border: none;
  font-weight: 600;
  color: #198754;
  transition: 0.3s;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-link:hover {
  background-color: #198754;
  color: var(--white);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}





/* Modern card design for media and news page*/

/* Glass card effect */
.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  border-top: 5px solid var(--dark-green);
  padding: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  margin: 10px 0;
}

.glass-card:hover {
  transform: translateY(-5px);
}

/* Image styling */
.glass-img img {
  border-radius: 8px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Content section */
.glass-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-left: 10px;
}

.glass-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.glass-text {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 15px;
}

/* Button */
.glass-content .btn {
  align-self: start;
}



 .main-img {
      height: 400px;
      object-fit: cover;
      border-radius: 10px;
      width: 100%;
    }
    .thumb-img {
      height: 100px;
      object-fit: cover;
      border-radius: 5px;
      cursor: pointer;
      transition: transform 0.3s;
    }
    .thumb-img:hover {
      transform: scale(1.05);
    }
    .carousel-thumbs {
      overflow-x: auto;
      display: flex;
      gap: 10px;
    }
    .news-heading {
      font-size: 2rem;
      font-family: "Montserrat", sans-serif;
      font-weight: 600;
      margin-top: 30px;
      color: var(--dark-green);
    }
    .news-desc {
      font-size: 1.1rem;
      line-height: 1.7;
       font-family: "Radley", serif;
      color: #111827;
    }


/* Login page */
.login-box {
  background: white;
  padding: 30px 25px;
  border-top:  5px solid var(--dark-green);
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

.login-box h2 {
  margin-bottom: 20px;
  font-weight: normal;
  color: #222;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
}

.login-box button {
  width: 100%;
  padding: 10px 0;
  background-color: #333;
  border: none;
  border-radius: 4px;
  color: white;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.login-box button:hover {
  background-color: #555;
}






/* company credit */


  .footer-credit {
    font-size: 16px;
    color: #e6f9f1;
    text-align: center;
    margin-top: 30px;
    font-family: 'Poppins', sans-serif;
    animation: fadeIn 1.5s ease-in-out;
    letter-spacing: 1px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  .footer-credit .wizard-name {
    font-weight: bold;
    color: #8ef4b4;
    text-shadow: 0 0 10px rgba(142, 244, 180, 0.7);
    position: relative;
  }
  
  .footer-credit .heart {
    color: #ff7a7a;
    animation: beat 1.2s infinite;
  }
  
  .footer-credit .sparkle,
  .footer-credit .wand {
    animation: twinkle 2s infinite alternate;
  }
  
  @keyframes beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
  }
  
  @keyframes twinkle {
    from { opacity: 0.6; transform: scale(1); }
    to { opacity: 1; transform: scale(1.2); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }






  .switch {
    position: relative;
    display: inline-block;
    margin: 0 5px;
  }

 .switch > span {
    position: absolute;
    top: 9px;
    width: 50%;
    text-align: center;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
    pointer-events: none;
    z-index: 2;
  }

  .switch > .on {
    left: 0;
    padding-left: 2px;
    color: #F36F25;
  }

  .switch > .off {
    right: 0;
    padding-right: 4px;
    color: var(--white);
  }

  input.check-toggle-round-flat:checked ~ .on {
    color: var(--white);
  }

  input.check-toggle-round-flat:checked ~ .off {
    color: #F36F25;
  }

  .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
  }

  .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 97px;
    height: 35px;
    background-color: #F36F25;
    border-radius: 60px;
    padding: 2px;
    z-index: 1;
  }

  .check-toggle-round-flat + label:before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: #F36F25;
    border-radius: 60px;
  }

  .check-toggle-round-flat + label:after {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: var(--white);
    border-radius: 52px;
    transition: margin 0.2s;
    z-index: 3;
  }

  .check-toggle-round-flat:checked + label:after {
    margin-left: 44px;
  }






  .custom-footer {
  background-color: var(--bright-green);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.custom-footer a {
  color: #fff;
  text-decoration: none;
}

.custom-footer a:hover {
  color: #ffc107;
}

.custom-footer .social-icons a {
  font-size: 1.2rem;
  margin-right: 15px;
  color: #fff;
  transition: 0.3s;
}

.custom-footer .social-icons a:hover {
  color: #ffc107;
}

.custom-footer .footer-bg-left {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 350px;
  z-index: 0;
  opacity: 0.3;
}

.custom-footer .footer-bg-right {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 300px;
  z-index: 0;
  opacity: 0.3;
}




 .floating-buttons1 {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
  }

  .floating-buttons1 a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
  }

  .floating-buttons1 a:hover {
    transform: scale(1.05);
  }

  .whatsapp1 {
    background-color: #25D366;
  }

  .call1 {
    background-color: #007bff;
  }




.marquee-container {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  animation: scroll-left 30s linear infinite;
}

.marquee-item {
  flex: 0 0 auto;
  white-space: nowrap;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}                       