/* Image Box */
.about-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;

    /* Light Premium Border */
    border: 2px solid rgba(0, 0, 0, 0.08);

    /* Soft Shadow */
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image */
.about-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 15px;
    transition: transform 0.6s ease;
}

/* Hover Zoom */
.about-img-box:hover .about-img {
    transform: scale(1.06);
}

/* Optional Overlay Shine Effect */
.about-img-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: 0.5s;
}

.about-img-box:hover::after {
    opacity: 1;
}
/* Image Container */
.img-hover-scale {
    overflow: hidden;
    border-radius: 12px;
}

/* Image */
.img-hover-scale img {
    width: 100%;
    transition: transform 0.5s ease;
}

/* Hover Zoom */
.img-hover-scale:hover img {
    transform: scale(1.1);
}
/* Add shadow + lift */
.card-1:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

/* Zoom + slight brightness */
.img-hover-scale:hover img {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/* SECTION */
.business-portfolio {
    background: #f5f7f9;
    padding: 70px 0 40px;
    text-align: center;
}

/* TITLE */
.sub-title {
    color: #088178 ;
    font-weight: 600;
    margin-bottom: 5px;
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* GRID FIX */
.portfolio-grid {
    row-gap: 20px;
}

/* CARD */
.portfolio-card {
    background: #ffffff;
    padding: 20px 10px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

/* ICON */
.portfolio-card i {
    font-size: 28px;
    color: #088178 ;
    margin-bottom: 8px;
    display: block;
    transition: 0.3s;
}

/* TEXT */
.portfolio-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

/* HOVER EFFECT */
.portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* ICON HOVER */
.portfolio-card:hover i {
    transform: scale(1.2);
    color: #000;
}

/* MOBILE */
@media (max-width: 768px) {
    .main-title {
        font-size: 22px;
    }
}
/* SECTION */
.big-value-section {
    background: #f8f9fa;
    padding: 80px 0;
}

/* TEXT */
.big-value-content .sub-title {
    color: #088178 ;
    font-weight: 600;
    margin-bottom: 10px;
}

.big-value-content .main-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.3;
}

.big-value-content p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}

/* BUTTON */
.big-value-content .btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.big-value-content .btn:hover {
    background: #088178 ;
}

/* IMAGE */
.big-value-img {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.big-value-img img {
    width: 100%;
    transition: 0.6s ease;
}

/* HOVER ZOOM */
.big-value-img:hover img {
    transform: scale(1.05);
}
/* Dropdown list */
.categori-dropdown-wrap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each item */
.categori-dropdown-wrap ul li {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

/* Link */
.categori-dropdown-wrap ul li a {
    display: flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

/* Icon */
.categori-dropdown-wrap ul li a i {
    font-size: 16px;
    margin-right: 10px;
    color: #088178 ;
    width: 20px;
    text-align: center;
}

/* Hover */
.categori-dropdown-wrap ul li:hover {
    background: #f8f9fa;
}

.categori-dropdown-wrap ul li:hover a {
    color: #088178 ;
}
.single-slider-img {
    height: 500px;
}

@media (max-width: 992px) {
    .single-slider-img {
        height: 400px;
    }
}

@media (max-width: 576px) {
    .single-slider-img {
        height: 300px;
    }
}
.login {
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #088178;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s ease;
}

.login-btn i {
  font-size: 14px;
}

.login-btn:hover {
  background: #088178;
  transform: translateY(-2px);
  color: #fff;
}