/* General Helper Classes */

:root {
    --thm-black: #121315;
    --card-dark-bg: #1c1f24;
    --accent-yellow: #ffb400;
    --accent-orange: #ff9800;
    --text-muted-color: #999b9f;
    --text-dark-contrast: #121315;
}
.letter-spacing {
    letter-spacing: 2px;
}

.divider {
    width: 60px;
    height: 4px;
    border-radius: 2px;
}

/* Background Patterns for Sections */
.bg-light-pattern {
    background-color: #f4f6f9;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 180, 0, 0.12) 0%, transparent 50%),
        linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 40px 40px, 40px 40px;
}
.bg-dark-about-page{
    position: relative;
    padding: 120px 0px 90px;
    background-color: var(--thm-black);
    background-image: url('../img/service_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-muted-color);
    margin: 0;
}
.bg-gradient-dark {
    background: linear-gradient(145deg, #1f242d, #14171c);
}

.bg-secondary-dark {
    background-color: #2b303a;
    transition: background-color 0.3s ease;
}

.bg-secondary-dark:hover {
    background-color: #353b47;
}

.bg-soft-primary {
    background-color: rgba(255, 193, 7, 0.15);
}

/* Hero Badge Overlay */
.badge-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    border-left: 5px solid #212529;
}

/* Image Hover Zoom */
.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

/* Mission & Vision Card Styling */
.mission-vision-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-8px);
    border-color: #ffc107 !important;
}

.icon-box {
    width: 60px;
    height: 60px;
}

/* Capability Card Hover Effects */
.capability-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.capability-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12) !important;
    border-top-color: #fd7e14 !important; /* Orange accent on hover */
}

.capability-card i {
    transition: transform 0.3s ease;
}

.capability-card:hover i {
    transform: scale(1.15);
}

/* Background surface to contrast surrounding sections */
.bg-presence-surface {
    background-color: #f1f3f7 !important;
}

/* Map Image Box Styling */
.presence-image-wrapper {
    padding-right: 15px;
    padding-bottom: 15px;
}

.map-card {
    border: 4px solid #ffffff;
    transition: transform 0.5s ease;
}

.map-img {
    transition: transform 0.6s ease;
    min-height: 380px;
    object-fit: cover;
}

.map-card:hover .map-img {
    transform: scale(1.05);
}

.map-floating-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #111111;
    border-left: 5px solid #fd7e14;
    z-index: 3;
}

.map-badge-icon {
    width: 45px;
    height: 45px;
    background-color: #fd7e14;
    color: #ffffff;
    font-size: 20px;
}

.presence-bg-shape {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, #fd7e14, #ffc107);
    border-radius: 1rem;
    z-index: -1;
    opacity: 0.25;
}

/* State Card Hover Effects */
.presence-card {
    position: relative;
    top: 0;
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.presence-card:hover {
    top: -5px;
    box-shadow: 0 10px 20px rgba(253, 126, 20, 0.2) !important;
    background-color: #ffffff !important;
}

.presence-card:hover h6 {
    color: #fd7e14 !important;
}

.presence-card:hover p {
    color: #111111 !important;
}

/* Action Button */
.btn-presence-action {
    background: linear-gradient(135deg, #fd7e14 0%, #ffc107 100%);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
}

.btn-presence-action:hover {
    background: linear-gradient(135deg, #e06b0b 0%, #e0a800 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(253, 126, 20, 0.35) !important;
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .badge-overlay {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 15px;
    }
}