/* Global Brand Color Overrides */
:root {
    --color-primary: #72B130;
    /* Trinotech Green */
    --color-secondary: #00B9F1;
    /* Trinotech Blue */
    --bg-gradient: linear-gradient(90deg, #72B130 0%, #00B9F1 100%);
    --bg-gradient-secondary: linear-gradient(0deg, #72B130 0%, #00B9F1 100%);
}

.btn.btn-theme {
    background: var(--bg-gradient) !important;
}

.btn.btn-theme::after {
    background-color: #F15A24 !important;
    /* Brand Orange for hover effect */
}

/* CEO Message Styling */
.ceo-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ceo-thumb img {
    width: 100%;
    transition: all 0.5s ease;
}

.ceo-thumb:hover img {
    transform: scale(1.05);
}

.ceo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    color: #fff;
}

.ceo-info h4 {
    margin: 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.ceo-info span {
    font-size: 14px;
    opacity: 0.9;
}

.ceo-content .sub-title {
    color: var(--primary-color, #DF0A0A);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.ceo-content h2.title {
    margin-bottom: 25px;
    font-size: 42px;
    font-weight: 800;
}

.ceo-content p {
    font-style: italic;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .ceo-thumb {
        margin-bottom: 40px;
    }

    .ceo-content h2.title {
        font-size: 32px;
    }

    .partner-map h2 {
        font-size: 150px;
    }
}

@media (max-width: 767px) {
    .partner-map h2 {
        font-size: 80px;
    }

    .partner-map h4 {
        font-size: 24px;
    }
}

/* Text Preloader Styling */
.tranzi-loader {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 0 !important;
    /* Reset theme margin */
}

.tranzi-loader-item {
    position: relative !important;
    width: auto !important;
    height: auto !important;
    margin: 0 2px !important;
    font-size: 54px;
    font-weight: 900;
    color: #72B130;
    /* Default Green */
    background-color: transparent !important;
    animation: textFade 1s infinite alternate !important;
    letter-spacing: 2px;
}

/* Logo Color Theme Split */
.tranzi-loader-item:nth-child(-n+4) {
    color: #72B130;
}

/* TRiN - Green */

.tranzi-loader-item.logo-o-tick {
    position: relative !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    color: #00B9F1;
    /* Blue O (Ring color) */
}

.tranzi-loader-item.logo-o-tick i {
    position: absolute;
    font-size: 0.5em;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #F15A24;
    /* Orange tick */
    animation: tickInternalPulse 1s infinite alternate !important;
}

.tranzi-loader-item:nth-child(n+6) {
    color: #00B9F1;
}

/* TECH - Blue */

/* Staggered Delay for TRiNOTECH */
.tranzi-loader-item:nth-child(1) {
    animation-delay: 0.1s !important;
}

.tranzi-loader-item:nth-child(2) {
    animation-delay: 0.2s !important;
}

.tranzi-loader-item:nth-child(3) {
    animation-delay: 0.3s !important;
}

.tranzi-loader-item:nth-child(4) {
    animation-delay: 0.4s !important;
}

.tranzi-loader-item.logo-o-tick {
    animation-delay: 0.5s !important;
}

.tranzi-loader-item:nth-child(6) {
    animation-delay: 0.6s !important;
}

.tranzi-loader-item:nth-child(7) {
    animation-delay: 0.7s !important;
}

.tranzi-loader-item:nth-child(8) {
    animation-delay: 0.8s !important;
}

.tranzi-loader-item:nth-child(9) {
    animation-delay: 0.9s !important;
}

@keyframes textFade {
    0% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}

@keyframes tickInternalPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8) rotate(-5deg);
    }

    100% {
        transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    }
}

@media (max-width: 767px) {
    .partner-map h2 {
        font-size: 80px;
    }

    .partner-map h4 {
        font-size: 24px;
    }

    .tranzi-loader-item {
        font-size: 32px;
    }

    .tranzi-loader-item.logo-o-tick i {
        font-size: 0.5em;
    }
}