:root {
    --primary-gwt: #090979;
    --secondary-gwt: #00d4ff;
    --dark-gwt: #020024;
    --light-gwt: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-gwt);
    font-weight: 700;
}

.text-primary-gwt {
    color: var(--primary-gwt) !important;
}

.btn-primary-gwt {
    background-color: var(--primary-gwt);
    border-color: var(--primary-gwt);
    color: white;
    font-weight: 600;
    background-color: #020024;
    padding: 0.6rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary-gwt:hover {
    background-color: var(--dark-gwt);
    border-color: var(--dark-gwt);
    color: white;
    transform: translateY(-2px);
}

.hero {
    background: linear-gradient(135deg, var(--dark-gwt) 0%, var(--primary-gwt) 50%, #1e1e9e 100%);
    color: white;
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.navbar-brand .fw-bold{
    display: contents;
    display: flex;
}
    

.img-navbar{
    height: 31%;
    width: 16%;
}
.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.section-padding {
    padding: 6rem 0;
}

.bg-light-gwt {
    background-color: var(--light-gwt);
}

.card-product {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 2.5rem;
    background: white;
    height: 100%;
    transition: all 0.3s ease;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-gwt), var(--primary-gwt));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: black;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.pricing-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    background-color: black;
    transition: all 0.3s ease;
}
.fw-bold .mb-4{
    color: white;
}
.pricing-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 2rem;
    text-align: center;
    background-color: white;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-body {
    padding: 2rem;
}

.milestone-item {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 3rem;
}

.milestone-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background-color: var(--secondary-gwt);
}

.milestone-item:last-child::before {
    display: none;
}

.milestone-dot {
    position: absolute;
    left: -6px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--primary-gwt);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--secondary-gwt);
}

.img-overlay-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.img-overlay-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-gwt);
}

@media (max-width: 991px) {
    .hero h1 {
        font-size: 2.5rem;
    }
}
