/* Custom styles for SYJACATA Consulting */

body {
    padding-top: 4.5rem;
    background-color: #ffffff !important;
}

body, h1, h2, h3, h4, h5, h6, .btn, .form-control, .navbar-brand, .nav-link, .dropdown-item {
    font-family: 'Open Sans', sans-serif;
}

.hero-bg {
    background-color: #f8f9fa;
    padding: 3rem 1rem;
    border-radius: 0.3rem;
    margin-bottom: 2rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .hero-bg {
        padding: 5rem 4rem;
    }
}

/* Header / Navbar Customization */
.navbar.navbar-light .navbar-brand,
.navbar.navbar-light .navbar-brand span,
.navbar.navbar-light .navbar-nav .nav-link,
.navbar.navbar-light .navbar-nav .nav-link.active,
.navbar.navbar-light .navbar-nav .nav-link:hover,
.navbar.navbar-light .dropdown-item,
.footer-text,
.logo-replacement .main-text,
.logo-replacement .sub-text {
    color: #105635 !important; /* Matches Bootstrap 'success' green */
}

.logo-replacement {
    height: 120px; /* Increased height to accommodate larger titles */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(16, 86, 53, 0.1);
    margin-bottom: 20px !important;
}

.logo-replacement .main-text {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.card-text {
    text-align: justify;
    text-justify: inter-word;
    text-transform: normalizecase;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    line-height: 1.6;
    hyphens: auto;
    overflow-wrap: break-word;
}

.logo-replacement .sub-text {
    font-size: 26px;
}

.platform-tags {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    border-top: 1px solid rgba(16, 86, 53, 0.1);
    padding-top: 10px;
}

/* Customizing the Mobile Hamburger Icon color */
.navbar-toggler {
    border-color: #105635 !important;
}

.navbar-toggler-icon {
    /* This replaces the default black SVG icon with a green one */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(16, 86, 53, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* Card Slider Logic */
.slider-view {
    overflow: hidden;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.slider-pane {
    width: 100%;
    flex: 0 0 100%;
}

.slider-active .slider-wrapper {
    transform: translateX(-100%);
}

.pagination-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.pagination-line {
    width: 30px;
    height: 3px;
    background-color: rgba(16, 86, 53, 0.2);
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

.card:not(.slider-active) .pagination-line:first-child,
.card.slider-active .pagination-line:last-child {
    background-color: #105635;
}

/* Custom HR style for card content */
.card-text hr {
    margin: 12px 0;
    border-top: 1px solid rgba(16, 86, 53, 0.1);
    opacity: 1;
}