/* Company Overview Styles */
.company-overview-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.company-content-wrapper {
    padding: 2rem;
}

.content-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #008eae, #369e12);
    color: white;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.title-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 1.5rem 0;
}

.title-separator .dot {
    width: 10px;
    height: 10px;
    background: #008eae;
    border-radius: 50%;
}

.title-separator .line {
    width: 60px;
    height: 2px;
    background: #008eae;
}

.overview-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.achievement-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.achievement-box {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.achievement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.achievement-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,142,174,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008eae;
}

.achievement-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #008eae;
    margin: 0;
}

.achievement-details p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.company-image-wrapper {
    position: relative;
    padding: 2rem;
}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-box img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-box:hover img {
    transform: scale(1.05);
}

.experience-tag {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #008eae, #369e12);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.experience-tag .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-tag .text {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

.shape-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: rgba(54,158,18,0.1);
    border-radius: 20px;
    transform: rotate(45deg);
    z-index: -1;
}

/* About Page Styles */
.about-hero {
    background: url('../images/about-bg.jpg') center/cover no-repeat;
    padding: 120px 0 160px;
    position: relative;
    overflow: hidden;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,142,174,0.9) 0%, rgba(54,158,18,0.9) 100%);
}

.about-hero .hero-stats {
    margin-top: 3rem;
}

.stat-box {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.2);
}

.stat-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-box p {
    color: rgba(255,255,255,0.8);
    margin: 0;
    font-size: 1.1rem;
}

.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.our-story-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.story-wrapper {
    position: relative;
}

.story-badge {
    background: linear-gradient(135deg, #008eae, #369e12);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

.story-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 1rem 0;
}

.story-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 1.5rem 0;
}

.separator-dot {
    width: 10px;
    height: 10px;
    background: #008eae;
    border-radius: 50%;
}

.separator-line {
    width: 60px;
    height: 2px;
    background: #008eae;
}

.story-image-box {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -25px;
    right: -25px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #008eae, #369e12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.badge-content {
    text-align: center;
    color: white;
}

.badge-content .years {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-content .text {
    font-size: 0.8rem;
    opacity: 0.9;
}

.floating-card {
    position: absolute;
    left: -30px;
    top: 30px;
    background: white;
    padding: 15px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(0,142,174,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008eae;
}

.card-text h4 {
    font-size: 0.9rem;
    margin: 0;
    color: #333;
}

.card-text p {
    font-size: 0.8rem;
    margin: 0;
    color: #666;
}

.story-content {
    padding-left: 2rem;
}

.content-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.story-description {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,142,174,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #008eae;
}

.stat-details h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #008eae;
    margin: 0;
}

.stat-details p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.story-image-main {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: all 0.5s ease;
}

.story-image-main:hover {
    transform: translateY(-10px);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,151,251,0.85);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-main:hover .story-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.story-image-main:hover .overlay-content {
    transform: translateY(0);
}

.experience-pill {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, #0097FB, #0058e6);
    color: white;
    padding: 1.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out infinite;
}

.experience-pill .years {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-pill .text {
    font-size: 1rem;
    text-align: center;
}

.badge-modern {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0,151,251,0.1);
    color: #0097FB;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.story-subtitle {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    line-height: 1.3;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.achievement-icon {
    width: 60px;
    height: 60px;
    background: rgba(0,151,251,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.achievement-icon i {
    font-size: 1.5rem;
    color: #0097FB;
}

.achievement-info h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.achievement-info p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.story-image img {
    transition: transform 0.5s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, #0097FB, #0058e6);
    color: white;
    padding: 20px;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.experience-badge .years {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-align: center;
}

.story-content {
    padding-left: 2rem;
}

.stat-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0,151,251,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #0097FB;
}

.stat-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: #0097FB;
}

.stat-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.vision-card {
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 80px;
    height: 80px;
    background: rgba(0, 142, 174, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #008eae 0%, #369e12 100%);
    margin: 20px 0;
}

.title-underline.mx-auto {
    margin: 20px auto;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.team-img-wrapper {
    width: 180px;
    height: 180px;
    margin: 0 auto;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #008eae !important;
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(54, 158, 18, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.team-img-wrapper {
    width: 150px;
    height: 150px;
    margin: 0 auto;
    overflow: hidden;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card {
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(54, 158, 18, 0.1);
    border-radius: 50%;
}

/* Custom styles */
.top-header {
    background-color: #f8f9fa;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.top-info {
    color: #666;
    display: inline-flex;
    align-items: center;
}

.top-info i {
    color: #008eae;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
}

@media (max-width: 991px) {
    .social-icons {
        justify-content: center;
        margin-top: 10px;
    }
}

.social-icon {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
}

.social-icon:hover {
    color: #fff;
    background: #008eae;
    transform: translateY(-3px);
}

.navbar-custom {
    background: linear-gradient(135deg, #008eae 0%, #369e12 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-custom {
  background: linear-gradient(135deg, #008eae 0%, #369e12 100%);
  padding: 15px 0;
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 99999;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

body {
  padding-top: 0;
}

.page-header {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/page-header-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  margin-bottom: 60px;
  position: relative;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}

.page-section {
  padding: 80px 0;
  position: relative;
}

.section-divider {
  margin: 60px 0;
  border-bottom: 1px solid #eee;
}

.content-image {
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  margin: 30px 0;
  overflow: hidden;
}

.content-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.content-image:hover img {
  transform: scale(1.05);
}

.page-content {
  margin: 40px 0;
}

.content-box {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.content-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.navbar-nav .nav-item {
  margin: 0 10px;
  perspective: 1000px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 8px 15px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: white !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background: #f9fbfb;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-nav .nav-link:hover {
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255,255,255,0.4);
  color: #e3f2fd !important;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99999;
    position: absolute;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    pointer-events: none;
    visibility: hidden;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
    visibility: visible;
    background: #f8f9fa;
}

.nav-item .dropdown-toggle::after {
    display: none;
}

.nav-item .dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.nav-item:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
  border: none;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  padding: 10px;
  margin-top: 10px;
  background: #fff;
  animation: dropdownFade 0.3s ease;
}

.dropdown-item {
    color: #008eae;
    transition: all 0.3s ease;
    padding: 10px 20px;
}

.dropdown-item:hover {
    background: #008eae;
    color: white;
    transform: translateX(5px);
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.hero-section {
  min-height: 80vh;
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
}

.carousel-item {
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-item:nth-child(1) {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/portfolio.jpg');
}

.carousel-item:nth-child(2) {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/collection.jpg');
}

.carousel-item:nth-child(3) {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/legal.jpg');
}

.carousel-item:nth-child(4) {
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/npa.jpg');
}

.slide-content {
  min-height: 80vh;
  padding: 100px 0;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6));
}

.carousel-item.active .animate__animated {
  animation-duration: 1s;
  animation-delay: 0.2s;
}

.carousel-indicators {
  bottom: 40px;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.service-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
    padding: 2rem;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #369e12, #008eae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 28px;
    color: white;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
}

.service-card h4 {
    color: #008eae;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.service-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(54, 158, 18, 0.1);
}

.experience-badge {
  transition: transform 0.3s ease;
}

.experience-badge:hover {
  transform: scale(1.05);
}

.expertise-section {
  padding: 40px 0;
}

.expertise-card {
  background: #f9fbfb;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  height: 250px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
}

.expertise-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: #369e12;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.expertise-icon i {
  font-size: 30px;
  color: white;
  transition: all 0.4s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(360deg);
  background: #008eae;
}

.expertise-card h5 {
  color: #369e12;
  margin-bottom: 10px;
  font-weight: 600;
}

.expertise-card p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.expertise-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(54, 158, 18, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
  transform: translateY(100%);
  border-radius: 15px;
}

.expertise-card:hover .expertise-hover {
  opacity: 1;
  transform: translateY(0);
}

.expertise-hover ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: white;
}

.expertise-hover ul li {
  margin: 10px 0;
  font-size: 0.95rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.expertise-card:hover .expertise-hover ul li {
  opacity: 1;
  transform: translateY(0);
}

.expertise-card:hover .expertise-hover ul li:nth-child(1) {
  transition-delay: 0.1s;
}

.expertise-card:hover .expertise-hover ul li:nth-child(2) {
  transition-delay: 0.2s;
}

.expertise-card:hover .expertise-hover ul li:nth-child(3) {
  transition-delay: 0.3s;
}

.testimonial-card {
  border: none;
  border-radius: 10px;
  background: #f8f9fa;
  margin: 10px;
}

.testimonial-card .card-body {
  padding: 2rem;
}

.contact-cta {
  background: linear-gradient(45deg, #369e12, #008eae);
}

.contact-cta .btn-light:hover {
  background-color: #f8f9fa;
  color: #369e12;
}

.about-section {
    background-color: #fff;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #369e12;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: #369e12;
    margin: 0 auto;
    position: relative;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background: #008eae;
    right: -20px;
    animation: slideRight 2s infinite;
}

@keyframes slideRight {
    0% { right: -20px; }
    50% { right: 60px; }
    100% { right: -20px; }
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.experience-counter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.counter-box {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #369e12, #008eae);
    border-radius: 15px;
    color: white;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.6s ease;
    box-shadow: 0 10px 20px rgba(26, 35, 126, 0.2);
}

.counter-box:hover {
    transform: perspective(1000px) rotateY(10deg);
}

.counter-number {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.counter-number span {
    font-size: 2.5rem;
    vertical-align: super;
}

.counter-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.expertise-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(54, 158, 18, 0.15);
}

.expertise-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: #369e12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.expertise-icon i {
    font-size: 28px;
    color: white;
    transition: all 0.3s ease;
}

.expertise-item:hover .expertise-icon {
    transform: rotateY(360deg);
    background: #008eae;
}

.expertise-item h4 {
    font-size: 1.1rem;
    color: #1a237e;
    margin: 0;
    font-weight: 600;
}

.expertise-card-new {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.expertise-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(54, 158, 18, 0.2);
}

.expertise-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.expertise-card-new:hover .expertise-image img {
    transform: scale(1.1);
}

.expertise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(54, 158, 18, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.expertise-card-new:hover .expertise-overlay {
    opacity: 1;
}

.expertise-overlay i {
    color: white;
    font-size: 40px;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.expertise-card-new:hover .expertise-overlay i {
    transform: scale(1);
}

.expertise-content {
    padding: 20px;
    text-align: center;
}

.expertise-content h4 {
    color: #1a237e;
    margin-bottom: 10px;
    font-weight: 600;
}

.expertise-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Who We Are Section Styles */
.who-we-are-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.who-we-are-content {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.who-we-are-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.who-we-are-content .lead {
    color: #008eae;
    font-size: 1.25rem;
    line-height: 1.8;
}

.expertise-highlight {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.expertise-highlight:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.expertise-highlight i {
    font-size: 1.5rem;
    color: #369e12;
}

.expertise-highlight span {
    color: #333;
    font-size: 1.1rem;
}

.tech-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border: 8px solid white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.tech-illustration img:hover {
    transform: scale(1.02) translateY(-20px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    animation: float 3s ease-in-out;
}

.tech-illustration {
    height: 100%;
    min-height: 400px;
}

.pulse-animation {
    animation: pulse 2s ease-in-out infinite !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Logo Carousel Styles */
.logo-carousel {
    background: #fff;
    padding: 40px 0;
    overflow: hidden;
    position: relative;
}

.logo-slide {
    display: flex;
    animation: logoSlide 20s linear infinite;
    gap: 40px;
}

.logo-slide img {
    height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.logo-slide img:hover {
    filter: grayscale(0%);
}

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

/* Footer Styles */
.footer-links a {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #369e12;
    transform: translateX(5px);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 20px 0;
}

/* Why Choose Us Section Styles */
.why-choose-us {
    background: #f8f9fa;
}

.choose-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #369e12, #008eae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.choose-icon i {
    font-size: 28px;
    color: white;
}

.choose-card:hover .choose-icon {
    transform: rotateY(180deg);
}

.choose-card h4 {
    color: #008eae;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.choose-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Collection Services Page Styles */
.page-hero {
    background: linear-gradient(135deg, #008eae 0%, #369e12 100%);
    padding: 80px 0;
    position: relative;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #1a76d2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.left .timeline-icon {
    right: -65px;
}

.right .timeline-icon {
    left: -65px;
}

.content-box {
    padding: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    top: 45px;
    border: 4px solid #1a76d2;
}

.left::before {
    right: 30px;
}

.right::before {
    left: 30px;
}

@media (max-width: 767px) {
    .process-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 20px;
    }

    .left .timeline-icon,
    .right .timeline-icon {
        left: -20px;
    }
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #369e12;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #369e12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -73px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -73px;
}

.timeline-icon i {
    color: white;
    font-size: 20px;
}

/* Enhanced Collection Services Page Styles */
.shape-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #fff;
    clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.feature-box {
    transition: all 0.3s ease;
    border: none;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.process-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #008eae, #369e12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon .step-number {
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.key-features .feature-card {
    height: 100%;
    transition: all 0.3s ease;
}

.key-features .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Recovery Process Steps */
.recovery-process {
    background-color: #f8f9fa;
}

.process-step {
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    animation: pulse-border 1.5s ease-in-out infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(0,142,174,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,142,174,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,142,174,0);
    }
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    transform: rotateY(360deg);
    transition: transform 0.8s ease;
}

.step-number {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.step-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 1.5rem;
    z-index: 1;
}

@media (max-width: 992px) {
    .step-arrow {
        display: none;
    }
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.process-step p {
    color: #6c757d;
    margin-bottom: 0;
}

/* Legal Services Page Styles */
.process-card {
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.step-number {
    width: 35px;
    height: 35px;
    background: #008eae;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.service-process .process-card {
    position: relative;
    z-index: 1;
}

.service-process .row > div:nth-child(even) .process-card {
    transform: translateY(20px);
}

.service-process .row > div:nth-child(even) .process-card:hover {
    transform: translateY(15px);
}

.service-link {
    transition: all 0.3s ease;
}

.service-link:hover {
    transform: translateX(10px);
}

.service-link i {
    transition: all 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.contact-card {
    background: linear-gradient(135deg, #008eae 0%, #369e12 100%);
}

/* Credit Underwriting Page Styles */
.page-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}

.service-features li:hover {
    transform: translateX(10px);
}

.service-menu li a {
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.service-menu li a:hover {
    background-color: #f8f9fa;
    color: #008eae;
}

.service-menu li.active a {
    background-color: #008eae;
    color: white;
}

.widget-content {
    transition: all 0.3s ease;
}

.widget-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.contact-info a:hover {
    opacity: 0.9;
}

/* Portfolio Risk Management Page Styles */
.portfolio-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/portfolio-bg.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.floating-animation {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.risk-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.risk-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.risk-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #369e12, #008eae);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.risk-icon i {
    font-size: 32px;
    color: white;
}

.risk-card:hover .risk-icon {
    transform: rotateY(180deg);
}

.risk-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.risk-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.risk-features li i {
    color: #369e12;
    margin-right: 10px;
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #369e12;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 2rem;
    position: relative;
    width: 50%;
    padding: 0 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: #369e12;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -73px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -73px;
}

.timeline-icon i {
    color: white;
    font-size: 20px;
}

/* Modern Process Cards */
.modern-process-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 100%;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.process-card-icon {
    position: relative;
    margin-bottom: 25px;
}

.icon-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #008eae, #369e12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 28px;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #369e12;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    border: 3px solid white;
}

.process-card-content h4 {
    color: #008eae;
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.process-card-content p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.process-card-arrow {
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    color: #369e12;
    font-size: 24px;
    z-index: 1;
}

@media (max-width: 991px) {
    .process-card-arrow {
        display: none;
    }
}

.modern-process-card:hover .icon-circle {
    transform: rotateY(180deg);
}

/* Process Timeline */
.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: #1a76d2;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    margin-bottom: 30px;
}

.timeline-item.left {
    left: 0;
}

.timeline-item.right {
    left: 50%;
}

.timeline-content {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0,0,0,0.1);
    position: relative;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.left .timeline-icon {
    right: -65px;
}

.right .timeline-icon {
    left: -65px;
}

.content-box {
    padding: 20px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background: white;
    border-radius: 50%;
    top: 45px;
    border: 4px solid #1a76d2;
}

.left::before {
    right: 30px;
}

.right::before {
    left: 30px;
}

@media (max-width: 767px) {
    .process-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item::before {
        left: 20px;
    }

    .left .timeline-icon,
    .right .timeline-icon {
        left: -20px;
    }
}

/* Bank Logo Slider Styles */
.bank-section {
    padding: 50px 0;
}

.bank-logo-parents {
    text-align: center;
    padding: 15px;
}

.bank-slide-logo {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.bank-slide-logo:hover {
    transform: scale(1.1);
}

/* Slick slider custom styles */
.slick-slide {
    margin: 0 10px;
}

.slick-prev, .slick-next {
    background: #007bff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev:before, .slick-next:before {
    color: white;
}

.slick-track {
    display: flex;
    align-items: center;
}

.title-1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.underline {
    width: 60px;
    height: 3px;
    background: #e74c3c;
    margin: 0 auto 30px;
}

.bank-logo-parents {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bank-logo-parents:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.bank-slide-logo {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
}
