/* Custom Home Page Styles */

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    overflow: hidden;
}

.hi-text {
    padding: 50px 30px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.hero-subtitle {
    display: inline-block;
    font-size: 18px;
    color: #f36100;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.hi-text h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.secondary-btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 14px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #ffffff;
    background: transparent;
    transition: all 0.3s;
    border-radius: 5px;
}

.secondary-btn:hover {
    background: #ffffff;
    color: #111111;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f36100 0%, #d94e00 100%);
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-item {
    padding: 20px;
    color: #ffffff;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .counter {
    color: #ffffff;
}

.stat-item h4 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

/* Section Title Enhancements */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-description {
    font-size: 16px;
    color: #666666;
    max-width: 700px;
    margin: 15px auto 0;
    line-height: 1.6;
}

/* ChoseUs Section Enhancements */
.cs-item {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: #f8f8f8;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
}

.cs-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.cs-item span {
    font-size: 64px;
    color: #f36100;
    margin-bottom: 20px;
    display: inline-block;
}

.cs-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111111;
}

.cs-item p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
}

/* Classes Section Enhancements */
.class-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.class-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.ci-pic {
    position: relative;
    overflow: hidden;
}

.ci-pic img {
    transition: all 0.3s;
    width: 100%;
}

.class-item:hover .ci-pic img {
    transform: scale(1.1);
}

.ci-text {
    padding: 25px;
    background: #ffffff;
}

.ci-text span {
    font-size: 12px;
    color: #f36100;
    font-weight: 700;
    letter-spacing: 1px;
}

.ci-text h5,
.ci-text h4 {
    font-size: 20px;
    margin: 10px 0;
    color: #111111;
}

.ci-text p {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 10px 0;
}

/* Pricing Section Enhancements */
.ps-item {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: #f8f8f8;
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.ps-item:hover,
.ps-item.popular {
    background: #ffffff;
    border-color: #f36100;
    box-shadow: 0 15px 40px rgba(243, 97, 0, 0.15);
    transform: translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #f36100;
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ps-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111111;
}

.pi-price h2 {
    font-size: 48px;
    color: #f36100;
    font-weight: 700;
}

.pi-price span {
    font-size: 14px;
    color: #666666;
    display: block;
    margin-top: 5px;
}

.ps-item ul {
    list-style: none;
    padding: 30px 0;
    margin: 0;
}

.ps-item ul li {
    padding: 12px 0;
    font-size: 14px;
    color: #666666;
    border-bottom: 1px solid #e0e0e0;
}

.ps-item ul li:last-child {
    border-bottom: none;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f8f8;
}

.testimonial-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    height: 100%;
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: #f36100;
    font-size: 16px;
    margin-right: 3px;
}

.testimonial-item p {
    font-size: 15px;
    color: #666666;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 13px;
    color: #f36100;
    font-weight: 600;
}

/* Banner Section Enhancements */
.bs-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.bt-tips {
    font-size: 18px;
    margin-bottom: 30px;
}

/* Team Section Enhancements */
.ts-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
}

.ts-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.ts_text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px 20px;
    text-align: center;
}

.ts_text h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.ts_text span {
    color: #f36100;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hi-text h1 {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .bs-text h2 {
        font-size: 28px;
    }
}
