/* custom.css */

/* Community Preview */
.community-section { background:; }
.community-section .section-title h2 { font-size: ; margin-bottom: .5rem; }
.community-section p { color: #555; margin-bottom: 2rem; }
.community-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: .5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 1.5rem;
}
.community-item i {
  font-size: 2rem;
  color: #ff6f61;
  margin-bottom: .75rem;
}
.community-item h5 { font-weight: 600; margin-bottom: .5rem; }
.community-item p { font-size: .9rem; color: #666; }


/* Premium Services Section */
.services-section {
    background: linear-gradient(135deg, #0a183d 0%, #1a2a57 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-intro {
    color: rgba(255,255,255,0.85);
    font-size: 1.125rem;
    line-height: 1.6;
    max-width: 480px;
}

.service-grid {
    justify-content: center;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.2);
    background: rgba(255,255,255,0.08);
}

.card-image {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 aspect ratio */
}

.card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-content p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 3rem 0;
    }
    
    .section-header .row {
        flex-direction: column;
        text-align: center;
    }
    
    .section-intro {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.875rem;
    }
}