/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.divider {
    height: 3px;
    width: 80px;
    background-color: #EE0E82;
    margin: 1rem 0 2rem;
}

.divider-center {
    height: 3px;
    width: 80px;
    background-color: #EE0E82;
    margin: 1rem auto 2rem;
}

/* Top Bar Styles */
.top-bar {
    background-color: #EE0E82;
    color: white;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar a {
    color: #FE9900;
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar a:hover {
    color: white;
}

.top-bar i {
    margin-right: 8px;
}

.btn-register {
    background-color: #7a0eee;
    color: white !important;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-register:hover {
    background-color: #eeea0e;
    color: white !important;
}

/* Carousel */
.carousel {
    margin-bottom: 30px;
}

.carousel-item {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 5px;
    bottom: 100px;
}

.carousel-caption h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Welcome Section */
.welcome-section {
    padding: 60px 0;
}

.welcome-content h2 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.welcome-content p {
    margin-bottom: 1.5rem;
}

.welcome-banner img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats-section {
    padding: 50px 0;
}

.stat-item {
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item i {
    color: #EE0E82;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 10px 0;
}

.stat-item p {
    font-weight: 600;
    color: #7f8c8d;
}

/* Features Section */
.features-section {
    padding: 60px 0;
}

.feature-card {
    background-image:linear-gradient(pink,white,orange);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(238, 14, 130, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: #EE0E82;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.feature-card p {
    margin-bottom: 20px;
    color: #7f8c8d;
}

/* CEO Section */
.ceo-section {
    padding: 60px 0;
}

.ceo-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ceo-message {
    padding: 20px;
}

.ceo-message p.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #EE0E82;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.testimonial-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating {
    color: #FFD700;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-author h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

/* Blog Section */
.blog-section {
    padding: 60px 0;
}

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-meta {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 10px;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .carousel-item {
        height: 400px;
    }
    
    .carousel-caption {
        bottom: 50px;
    }
    
    .carousel-caption h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 15px 0;
        text-align: center;
    }
    
    .top-bar .container > div {
        flex-direction: column;
    }
    
    .top-contact-info, .top-auth-links {
        margin-bottom: 10px;
    }
    
    .top-bar a {
        display: inline-block;
        margin: 5px 10px;
    }
    
    .carousel-item {
        height: 300px;
    }
    
    .carousel-caption {
        bottom: 20px;
        padding: 10px;
    }
    
    .carousel-caption h2 {
        font-size: 1.5rem;
    }
    
    .carousel-caption p {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .carousel-caption .btn {
        padding: 5px 10px;
        font-size: 0.9rem;
    }
    
    .feature-card, .testimonial-card, .blog-card {
        margin-bottom: 20px;
    }
    
    .welcome-content, .ceo-message {
        text-align: center;
    }
    
    .divider, .divider-center {
        margin: 1rem auto 2rem;
    }
}

@media (max-width: 576px) {
    .stat-item {
        margin-bottom: 20px;
    }
    
    .footer .col-lg-4 {
        margin-bottom: 30px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
    }
    
    .footer-bottom .col-md-6:first-child {
        margin-bottom: 10px;
    }
}