/* index.css */
.hero-section {
    position: relative;
    overflow: hidden
}

.carousel-item {
    height: 85vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative
}

.carousel-item::before {
    display: none !important;
    content: none !important;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    z-index: 2;
    text-align: left
}

.carousel-caption h1 {
    font-size: 3.2rem;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 1rem
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95
}

.why-us-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%
}

.why-us-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15)
}

.why-us-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #fff
}

.why-us-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px
}

.why-us-card p {
    color: #666;
    line-height: 1.7
}

.business-section {
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1)
}

.business-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%
}

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

.business-card img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.business-card .card-body {
    padding: 30px
}

.business-card h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 15px
}

.business-card p {
    color: #666;
    line-height: 1.7
}

.business-card .learn-more {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s
}

.business-card .learn-more:hover {
    color: var(--secondary)
}

.reviews-section {
    background: linear-gradient(135deg, var(--dark), #16213e);
    color: #fff
}

.reviews-section .section-title h2 {
    color: #fff
}

.reviews-section .section-title h2::after {
    background: var(--secondary)
}

.reviews-section .section-title p {
    color: rgba(255, 255, 255, 0.7)
}

.review-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    height: 100%
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px)
}

.review-card .stars {
    color: var(--secondary);
    margin-bottom: 15px
}

.review-card p {
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9)
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 15px
}

.review-card .reviewer img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover
}

.review-card .reviewer h5 {
    margin: 0;
    font-weight: 600
}

.review-card .reviewer span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6)
}

@media(max-width:768px) {
    .carousel-caption h1 { font-size: 2rem }
}
