:root {
    --primary-color: #f26522; /* Orange from logo */
    --secondary-color: #92278f; /* Purple from logo */
    --accent-color: #ed1e79; /* Pink/Magenta from logo */
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gradient: linear-gradient(45deg, #f26522, #ed1e79, #92278f);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand img {
    height: 50px;
}

.bg-gradient-custom {
    background: var(--gradient);
    color: white;
}

.text-primary-custom {
    color: var(--primary-color);
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary-custom:hover {
    background-color: #d4561d;
    border-color: #d4561d;
    color: white;
}

.carousel-item {
    height: 600px;
    min-height: 400px;
    background: no-repeat center center scroll;
    background-size: cover;
}

.carousel-caption {
    bottom: 20%;
    z-index: 2;
}

.carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: none;
    position: relative;
}

.testimonial-card i.quote-icon {
    font-size: 40px;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}

.product-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
}

.service-card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: bold;
}

/* Blog, Event, and News Styles */
.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .card-img-wrapper img,
.event-card:hover .card-img-wrapper img {
    transform: scale(1.1);
}

.date-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient);
    color: white;
    padding: 5px 12px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.category-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(242, 101, 34, 0.1);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.event-meta {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.news-item {
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.news-item:hover {
    border-left-color: var(--secondary-color);
    transform: translateX(5px);
}

.sidebar-widget {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-title {
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}
