.home2-about-section {
    background: white;
}

/* About Content */
.about-content .section-title h2 {
    font-size: 2rem;
    color: var(--dark);
    line-height: 1.3;
}

.about-content .section-title p strong {
    font-size: 1.05rem;
}

/* Stats Container */
.stats-container {
    margin-top: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-number sup {
    font-size: 1.25rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
    line-height: 1.3;
}

/* About Images Grid */
.about-images-grid {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.about-image-wrapper.primary {
    margin-top: 2rem;
}

.about-image-wrapper.secondary {
    margin-bottom: 2rem;
}

.about-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/5;
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(2, 49, 111, 0.8) 0%, rgba(11, 94, 215, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image-wrapper:hover .image-overlay {
    opacity: 1;
}

.image-overlay i {
    color: white;
    font-size: 3rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.about-image-wrapper:hover .image-overlay i {
    transform: scale(1);
}

/* Floating Badge */
.floating-badge {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.badge-content {
    background: white;
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border: 3px solid var(--primary);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-content i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
}

.badge-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.badge-subtext {
    font-size: 0.85rem;
    color: #6c757d;
    font-weight: 600;
}

/* Rating Banner */
.rating-banner {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin-top: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.rating-badge {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
}

.rating-label {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.25rem;
}

.rating-text {
    font-size: 0.95rem;
    color: #6c757d;
}

.rating-text strong {
    color: var(--dark);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-content .section-title h2 {
        font-size: 1.75rem;
    }
    
    .about-image-wrapper.primary {
        margin-top: 0;
    }
    
    .about-image-wrapper.secondary {
        margin-bottom: 0;
    }
    
    .floating-badge {
        position: static;
        transform: none;
        margin-top: 1rem;
        display: inline-block;
    }
    
    .stats-container {
        margin-top: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .rating-banner {
        padding: 1.25rem 1.5rem;
        text-align: center;
    }
    
    .rating-badge {
        margin-bottom: 1rem;
    }
    
    .rating-stars {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper img {
        aspect-ratio: 16/10;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .badge-content {
        padding: 1rem 1.25rem;
    }
    
    .badge-content i {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 1.1rem;
    }
}

.home2-gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
    background: #e9ecef;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 49, 111, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 2.5rem;
    transform: scale(0.5);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

@media (max-width: 768px) {
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .gallery-overlay i {
        font-size: 2rem;
    }
}
.home2-offer-banner-section {
    background: linear-gradient(135deg, #02316f 0%, #0b5ed7 100%);
    position: relative;
    overflow: hidden;
}
.home2-offer-banner-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    z-index: 0;
}
.home2-offer-banner-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.03);
    border-radius: 50%;
    z-index: 0;
}
.offer-banner-compact {
    position: relative;
    z-index: 1;
}
.offer-content {
    color: white;
}
.offer-content h2 {
    color: white;
    font-size: 2rem;
    line-height: 1.3;
}
.offer-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}
.offer-content .btn-primary {
    color: var(--primary);
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
}
.offer-image-wrapper {
    position: relative;
}
.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255,152,0,0.4);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}
.discount-number {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.discount-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    letter-spacing: 1px;
}
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
@media (max-width: 991px) {
    .offer-content h2 {
        font-size: 1.5rem;
    }
    .offer-image-wrapper {
        text-align: center;
    }
    .offer-image-wrapper img {
        max-width: 80%;
        margin: 0 auto;
    }
    .discount-badge {
        width: 80px;
        height: 80px;
        top: 0;
        right: 10%;
    }
    .discount-number {
        font-size: 1.5rem;
    }
    .discount-text {
        font-size: 0.75rem;
    }
}
.home5-service-section {
    background: #f8f9fa;
}
.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    height: 100%;
    border: 1px solid transparent;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: var(--primary);
}
.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}
.service-card:hover .service-icon {
    transform: scale(1.1);
}
.service-icon i {
    font-size: 24px;
}
.service-card h6 {
    font-size: 0.95rem;
    color: var(--dark);
}
.service-card p {
    font-size: 0.85rem;
    line-height: 1.4;
}
@media (max-width: 768px) {
    .service-card {
        padding: 1.25rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
    }
    
    .service-icon i {
        font-size: 20px;
    }
}

.home2-testimonial-section {
    background: white;
}

.testimonial-card-compact {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.testimonial-card-compact:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.testimonial-header {
    margin-bottom: 1rem;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #0b5ed7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-avatar i {
    font-size: 1.25rem;
}

.author-info h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

.author-info small {
    font-size: 0.75rem;
}

@media (max-width: 991px) {
    .testimonial-card-compact {
        padding: 1.25rem;
    }
    
    .author-avatar {
        width: 40px;
        height: 40px;
    }
    
    .author-avatar i {
        font-size: 1.1rem;
    }
}