
/* This Sentence Is True Custom Enhancements */
:root {
    --true-purple: #4b38b3;
    --true-blue: #00c6ff;
    --true-dark: #0f172a;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #334155;
}

.header-area {
    background-color: #ffffff !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    height: 80px !important;
}

@media (min-width: 992px) {
    .header-area .main-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 80px !important;
    }
    
    .header-area .main-nav .logo {
        float: none !important;
        line-height: 80px !important;
        font-size: 22px !important;
        font-weight: 800 !important;
        color: var(--true-dark) !important;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .header-area .main-nav .logo span {
        color: var(--true-purple) !important;
    }

    .header-area .main-nav .nav {
        float: none !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 5px !important;
    }

    .header-area .main-nav .nav li a {
        color: #1e293b !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        text-transform: uppercase !important;
        white-space: nowrap !important;
        height: 80px !important;
        line-height: 80px !important;
    }

    .header-area .main-nav .nav li:hover a {
        color: var(--true-purple) !important;
    }
}

@media (max-width: 991px) {
    .header-area .main-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        height: 80px !important;
    }
    .header-area .main-nav .logo {
        font-size: 18px !important;
        font-weight: 800 !important;
        line-height: 80px !important;
    }
}

.welcome-area-true {
    background: linear-gradient(135deg, rgba(15,23,42,0.90) 0%, rgba(75,56,179,0.85) 100%), url('../images/true_hero_tech.jpg') center center / cover no-repeat !important;
    padding: 180px 0 120px 0 !important;
    color: white;
}

.welcome-area-true h1 {
    font-size: 44px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
}

.welcome-area-true p {
    color: #cbd5e1 !important;
    font-size: 16px !important;
}

.true-btn {
    background: linear-gradient(90deg, #4b38b3 0%, #00c6ff 100%) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    padding: 12px 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(75,56,179,0.4) !important;
    transition: transform 0.2s ease !important;
}

.true-btn:hover {
    transform: scale(1.03) !important;
    color: #ffffff !important;
}

.card-img-true {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.service-item-box {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 30px;
    transition: transform 0.3s ease;
}

.service-item-box:hover {
    transform: translateY(-8px);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25d366;
    color: white !important;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    transition: transform 0.2s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.05);
    background-color: #20ba5a;
}

@media (max-width: 767px) {
    .whatsapp-float-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px 16px;
        font-size: 13px;
    }
}

.legal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 140px 0 60px 0;
    text-align: center;
}

.legal-box {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    margin: 40px 0 80px 0;
    line-height: 1.8;
}

footer {
    background-color: #0f172a !important;
    color: #94a3b8 !important;
    padding-top: 60px !important;
}

footer a {
    color: #cbd5e1 !important;
}

footer a:hover {
    color: var(--true-blue) !important;
}
