/* style.css */
body {
    font-family: 'THICCCBOI', sans-serif;
    padding-top: 40px;
}

.brand-text {
    font-size: 24px;
    color: #343F52;
}

.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.nav-link {
    color: #343F52;
    margin-left: 15px;
}

.nav-link:hover {
    color: #605DBA;
}

.navbar-toggler {
    border-color: #343F52;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(52, 63, 82, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.btn-primary {
    background-color: #605DBA;
    border-color: #605DBA;
}

.btn-primary:hover {
    background-color: #4d4a8f;
    border-color: #4d4a8f;
}

.btn-secondary {
    background-color: #343F52;
    border-color: #343F52;
}

.btn-secondary:hover {
    background-color: #4a5366;
    border-color: #4a5366;
}

.hero-section {
    background-color: #605DBA;
    color: white;
    padding: 100px 0;
}

footer {
    background-color: #343F52;
    color: white;
    padding: 40px 0;
}

footer h5 {
    margin-bottom: 20px;
}

footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

footer a:hover {
    color: rgba(255, 255, 255, 1);
}

.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    text-align: center;
    line-height: 32px;
    background-color: #605DBA;
    border-radius: 50%;
    margin-right: 10px;
}

.services-section {
    background-color: #f8f9fa;
}

.service-card {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
}

.service-icon {
    font-size: 48px;
    color: #605DBA;
    margin-bottom: 20px;
}

.about-section {
    background-color: white;
}

.contact-section {
    background-color: #605DBA;
    color: white;
}

.btn-primary {
    background-color: #605DBA;
    border-color: #605DBA;
    color: white;
}

.btn-primary:hover {
    background-color: #4a5366;
    border-color: #4a5366;
    color: white;
}

.card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}
