

.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-container img {
  transition: transform 0.3s ease;
}

/* .image-container:hover img {
  transform: scale(1.1);
} */

.readmore-link{
  color: #e12121;
  font-weight: 600;
}
.readmore-link:hover{
  color: #e12121;
  font-weight: 600;
}

.text-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 255, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  font-size: 14px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

h2 {
  font-weight: bold;
  color: #333;
}

hr {
  margin-bottom: 20px;
}

a.btn-link {
  font-weight: bold;
  text-decoration: none;
}

a.btn-link:hover {
  text-decoration: underline;
}

/* loan  */

h2 {
  font-weight: bold;
  color: #333;
}

hr {
  margin-bottom: 20px;
}

.loan-card {
  border: none;
  border-radius: 8px;
}

.loancard-title {
  font-weight: bold;
}

a.btn-link {
  font-weight: bold;
  text-decoration: none;
}

a.btn-link:hover {
  text-decoration: underline;
}
.loancard-body{
  border: 1px solid black;
  /* border-radius: 10px; */
  padding: 10px;
}


/* service section */
        .services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            position: relative;
        }

        .services-title {
            font-size: 2rem;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }

        .services-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 3px;
            background-color: #0066cc;
        }

        .services-wrapper {
            position: relative;
            overflow: hidden;
            padding: 40px 40px;
        }

        .services-grid {
            display: flex;
            transition: transform 0.5s ease;
            gap: 20px;
        }

        .service-item {
            flex: 0 0 calc(33.333% - 14px);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .service-item:hover {
            transform: translateY(-5px);
        }

        .service-item .imgss{
            width: 100%;
            /* height: 200px; */
            object-fit: cover;
        }

        .service-item h3 {
            padding: 15px;
            margin: 0;
            text-align: center;
            background: #fff;
        }

        /* Service Navigation Buttons */
        .service-nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 15px;
            cursor: pointer;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10;
            transition: background 0.3s ease;
        }

        .service-nav-button:hover {
            background: rgba(0, 0, 0, 0.8);
        }

        .service-prev {
            left: 0;
        }

        .service-next {
            right: 0;
        }

        /* Lightbox Styles */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            z-index: 1000;
        }

        .lightbox.active {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .lightbox-content {
            position: relative;
            max-width: 90%;
            max-height: 90%;
        }

        .lightbox-content .imgss {
            max-width: 100%;
            max-height: 90vh;
            object-fit: contain;
        }

        .close-lightbox {
            position: absolute;
            top: -40px;
            right: 0;
            color: white;
            font-size: 30px;
            cursor: pointer;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.1);
            color: white;
            padding: 10px 15px;
            cursor: pointer;
            border: none;
            border-radius: 4px;
        }

        .prev-button {
            left: 20px;
        }

        .next-button {
            right: 20px;
        }

        @media (max-width: 1024px) {
            .service-item {
                flex: 0 0 calc(50% - 10px);
            }
        }

        @media (max-width: 768px) {
            .service-item {
                flex: 0 0 calc(100% - 0px);
            }
        }
    
/* deposite section */
.deposit-card {
  transition: all 0.3s ease;
  border: none;
  border-radius: 15px;
}

.deposit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.deposit-icon {
  font-size: 2.5rem;
  color: #2c3e50;
  transition: all 0.5s ease;
  display: inline-block;
}

.deposit-card:hover .deposit-icon {
  transform: rotate(360deg);
  color: #3498db;
}

.depositcard-body {
  text-align: center;
  padding: 2rem 1rem;
}
/* .carousel-inner{
  height: 100vh;
} */