/* Custom styles for Hosting1337 */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 10px;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

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

.card-body {
    padding: 2rem;
}

.list-group-item {
    border: none;
    padding: 1rem 1.5rem;
}

.bg-light {
    background-color: #f8f9fa !important;
}

address {
    font-style: normal;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .navbar-brand img {
        height: 40px !important;
    }
}

/* Logo responsive adjustments */
.navbar-brand img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 40px;
    }
}

/* Services Section Styles */
.service-icon {
    transition: transform 0.3s ease;
}
.card:hover .service-icon {
    transform: scale(1.1);
}
.card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 8px;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.card-body {
    padding: 2rem;
}
#services h2 {
    position: relative;
    padding-bottom: 15px;
}
#services h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-color);
}
.list-unstyled li {
    padding: 5px 0;
    border-bottom: 1px dashed #eee;
}
