
        body {
            padding-top: 70px;
        }

        .logo {
            height: 40px;
            width: auto;
        }

        @media (max-width: 576px) {
            .logo {
                height: 35px;
            }
        }


        /* Slider Section*/

        .slider-section {
          position: relative;
          width: 100%;
          overflow: hidden;
        }
        
        .slider-wrapper {
          position: relative;
          width: 100%;
        }
        
        .slider-track {
          display: flex;
          transition: transform 0.5s ease-in-out;
          width: 300%; /* 3 slides */
        }
        
        .slider-item {
          flex: 0 0 100%;
          position: relative;
        }
        
        .slider-item img {
          width: 35%;
          height: 400px;
          display: block;
        }
        
        .slider-content {
          position: absolute;
          top: 50%;
          left: 23%;
          transform: translateY(-50%);
          color: #fff;
          background: rgba(0, 0, 0, 0.5);
          padding: 25px;
          border-radius: 8px;
          text-align: center;
        }
        
        .slider-content a {
          display: inline-block;
          margin-top: 10px;
          padding: 10px 20px;
          background: #00bcd4;
          color: white;
          text-decoration: none;
          border-radius: 5px;
        }
        
        .slider-arrow {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          background: rgba(0,0,0,0.5);
          color: #fff;
          font-size: 30px;
          padding: 10px;
          cursor: pointer;
          z-index: 10;
        }
        
        .left-arrow { left: 10px; }
        .right-arrow { right: 10px; }
        
        .slider-dots {
          position: absolute;
          bottom: 15px;
          width: 100%;
          text-align: center;
        }
        
        .slider-dots span {
          display: inline-block;
          width: 12px;
          height: 12px;
          margin: 0 5px;
          background: #bbb;
          border-radius: 50%;
          cursor: pointer;
        }
        
        .slider-dots span.active {
          background: #00bcd4;
        }


        
        /* Tablets (width: ≤ 991px) */
@media (max-width: 991px) {
  .slider-content {
    left: 5%;
    padding: 20px;
    max-width: 90%;
  }

  .slider-content h2 {
    font-size: 2rem;
  }

  .slider-content p {
    font-size: 1rem;
  }

  .slider-item img {
    height: 70vh;
  }
}

/* Mobiles (width: ≤ 600px) */
@media (max-width: 600px) {
  .slider-content {
    left: 20%;
    right: 5%;
    padding: 7px;
    max-width: 10%;
    text-align: center;
  }

  .slider-content h2 {
    font-size: 15px;
    margin: 0px;
  }

  .slider-content p {
    font-size: 10px;
    margin: 0px;
  }

  .slider-content a {
    padding: 8px 16px;
    font-size: 10px;
  }

  .slider-item img {
    height: 20vh;
  }

  .slider-arrow {
    font-size: 24px;
    padding: 8px;
  }
}


        /*gradient-border*/

        .gradient-border {
            padding: 2px;
            background: linear-gradient(45deg, #fadcdd, #f9d423,rgb(79, 254, 178),rgb(229, 233, 228));
            border-radius: 0, 10, 0, 20, ;
            display: inline-block;
            width: 305px;
            height: 305px;
        }
        
        .inner-image {
            width: 300px;
            height: 300px;
            border-radius: 0, 10, 0, 20, !important;
            background-color: white;
            display: block;
        }


        .circular-gallery {
          position: relative;
          width: 500px;
          height: 500px;
          margin: 0 auto;
        }
        
        .circular-item {
          position: absolute;
          top: 50%;
          left: 50%;
          width: 100px;
          height: 100px;
          object-fit: cover;
          border-radius: 10px;
          transform-origin: center 200px;
          transform: rotate(0deg) translateY(-200px) rotate(0deg);
          transition: transform 0.3s ease;
          cursor: pointer;
          box-shadow: 0 4px 8px rgba(0,0,0,0.2);
          margin-left: -50px;
          margin-top: -50px;
        }
        
        @media (max-width: 768px) {
          .circular-gallery {
            width: 300px;
            height: 300px;
          }
        
          .circular-item {
            width: 60px;
            height: 60px;
            transform-origin: center 130px;
            margin-left: -30px;
            margin-top: -30px;
          }
        }
        
        @media (max-width: 480px) {
          .circular-gallery {
            width: 220px;
            height: 220px;
          }
        
          .circular-item {
            width: 45px;
            height: 45px;
            transform-origin: center 100px;
            margin-left: -22.5px;
            margin-top: -22.5px;
          }
        }
        



  /*FOOTER*/


  .site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    font-size: 14px;
    background-color: #198754;
    color: #ffffff;
    flex-wrap: wrap;
  }
  
  .site-footer .footer-left {
    text-align: left;
    flex: 1;
  }
  
  .site-footer .footer-right {
    text-align: right;
    flex: 1;
  }
  
  .site-footer .social-links {
    text-align: center;
    flex: 1;
  }
  
  .site-footer .footer-right strong,
  .site-footer .footer-left strong {
    color: #00ccff;
  }
  
  .site-footer a {
    color: #00ccff;
    text-decoration: none;
  }
  
  .site-footer .social-links a {
    margin: 0 10px;
  }
  
  @media (max-width: 768px) {
    .site-footer .footer-content {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-left, .footer-right, .social-links {
      text-align: left;
      flex: none;
    }
  
    .footer-right, .footer-left {
      width: 100%;
      text-align: center !important;
    }
  
    .social-links {
      width: 100%;
      text-align: center;
    }
  }
  
  .image-text-tooltip {
    position: relative;
    cursor: pointer;
  }
  
  .tooltip-box {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: #fff;
    color: #000;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    transition: opacity 0.3s ease;
    text-align: left;
  }
  
  .tooltip-box img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 8px;
  }
  
  .tooltip-text {
    font-size: 14px;
    line-height: 1.4;
  }
  
  .image-text-tooltip:hover .tooltip-box {
    visibility: visible;
    opacity: 1;
  }
  
  