/* Custom logo styling for mobile screens */
@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 40px !important;
    width: auto !important;
  }
}

/* Enhanced Carousel Styling */
.home-carousel .item h1 {
    font-size: 52px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5) !important;
    margin-bottom: 25px !important;
    line-height: 1.1 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
}

.home-carousel .item .col-sm-5.right {
    color: #ffffff !important;
    font-size: 20px !important;
    font-weight: 300 !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    line-height: 1.5 !important;
}

.home-carousel .item .col-sm-5.right p,
.home-carousel .item .col-sm-5.right div,
.home-carousel .item .col-sm-5.right span {
    font-size: 20px !important;
    font-weight: 300 !important;
    color: #ffffff !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5) !important;
    line-height: 1.5 !important;
    margin-bottom: 0 !important;
    opacity: 0.95 !important;
}

@media (max-width: 768px) {
    .home-carousel .item h1 {
        font-size: 36px !important;
        letter-spacing: 1px !important;
    }
    
    .home-carousel .item .col-sm-5.right,
    .home-carousel .item .col-sm-5.right p,
    .home-carousel .item .col-sm-5.right div,
    .home-carousel .item .col-sm-5.right span {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .home-carousel .item h1 {
        font-size: 28px !important;
        letter-spacing: 0.5px !important;
    }
    
    .home-carousel .item .col-sm-5.right,
    .home-carousel .item .col-sm-5.right p,
    .home-carousel .item .col-sm-5.right div,
    .home-carousel .item .col-sm-5.right span {
        font-size: 16px !important;
    }
}

/* Products Page Styling */
.products-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
    margin-bottom: 40px;
}

.product-categories .category-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 30px 20px;
    margin-bottom: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

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

.category-icon {
    font-size: 48px;
    color: #5bc0de;
    margin-bottom: 20px;
}

.category-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 20px;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.category-card ul li {
    padding: 5px 0;
    color: #666;
    font-size: 14px;
}

.featured-products {
    margin: 60px 0;
}

.product-card {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #5bc0de;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    color: #333;
    margin-bottom: 15px;
    font-size: 18px;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-features {
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-block;
    background: #f8f9fa;
    color: #495057;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-outline {
    background: transparent;
    border: 1px solid #5bc0de;
    color: #5bc0de;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #5bc0de;
    color: white;
}

.why-choose-us {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 60px 0;
}

.feature-box {
    text-align: center;
    padding: 20px;
}

.feature-icon {
    font-size: 48px;
    color: #5bc0de;
    margin-bottom: 20px;
}

.feature-box h4 {
    color: #333;
    margin-bottom: 15px;
}

.insurance-info {
    background: #fff;
    padding: 40px 0;
}

.insurance-list {
    list-style: none;
    padding: 0;
}

.insurance-list li {
    padding: 8px 0;
    color: #666;
}

.insurance-list i {
    color: #28a745;
    margin-right: 10px;
}

.contact-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.contact-card h4 {
    color: #333;
    margin-bottom: 15px;
}

.contact-info {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.contact-info i {
    color: #5bc0de;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .products-hero {
        padding: 40px 0;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .category-card {
        margin-bottom: 20px;
    }
}
