body{
    background: radial-gradient(circle at top, #0b1220, #020617);
}

.glass-nav {
    background: rgba(23, 31, 42, 0.75);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.home-page {
    min-height: 100vh;
    background-image: url(./images/techsy-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.home-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 40, 47, 0.85), rgba(30, 32, 32, 0.2));
}

.card{
    background-color: rgba(245, 209, 162, 0.73);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item:hover {
    background-color: rgb(23, 23, 23);
    color: whitesmoke;
    border: 1px solid grey;
}

.footer-color {
    background-color: beige;
    display: flex;
    align-self: flex-end;
}

.services-section {
    background: radial-gradient(circle at top, #0b1220, #020617);
}

.service-divider {
    width: 320px;
    height: 3px;
    background: linear-gradient(90deg, #0dcaf0, transparent);
    border-radius: 50px;
}

.service-card {
    background: #0f172a;
    border-radius: 18px;
    padding: 25px;
    border: 1px solid #1e293b;
    transition: all 0.35s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #0dcaf0;
    box-shadow: 0 20px 50px rgba(13, 202, 240, 0.15);
}

.service-icon {
    font-size: 34px;
    color: #0dcaf0;
}

.service-link {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 18px;
}

.service-link:hover {
    text-decoration: underline;
}

.feature-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 14px;
    padding: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: #0dcaf0;
    box-shadow: 0 15px 40px rgba(13, 202, 240, 0.15);
}

.icon-box {
    width: 42px;
    height: 42px;
    background: #020617;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-page{
    min-height: 100vh;
    background-image: url(./images/techsy-bg.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.category-page::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(39, 40, 47, 0.85), rgba(30, 32, 32, 0.2));
}

.category-card {
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.35s ease;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 255, 255, 0.15);
    border-color: #0dcaf0;
}

.category-image {
    height: 220px;
    background: #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 24px;
    color: #fff;
}

.category-badge {
    background: #ffc107;
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    display: inline-block;
}

.contact-section {
    background: radial-gradient(circle at top, #0b1220, #020617);
}

.contact-divider {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, #0dcaf0, transparent);
    border-radius: 50px;
}

.contact-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 18px;
    padding: 24px;
}

.contact-form-card {
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 22px;
    padding: 32px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: #020617;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #0dcaf0;
}

.form-dark {
    background: #020617;
    border: 1px solid #1e293b;
    color: #fff;
}

.form-dark:focus {
    background: #020617;
    border: 1px solid #1e293b;
    color: #fff;
}

.form-dark::placeholder {
    color: #6c757d;
}

.stat-card {
    background: #020617;
    border-radius: 14px;
    padding: 20px;
    text-align: center;
}

.social-icon {
    width: 42px;
    height: 42px;
    background: #020617;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0dcaf0;
    font-weight: bold;
    cursor: pointer;
}