/*
====================================
    2Y2S CUSTOM COLORS & STYLES
====================================
Theme: 2Y2S - Systèmes Intelligents pour l'Éducation
Primary Color: #FF6B35 (Coral Orange)
Secondary Color: #004E89 (Deep Blue)
====================================
*/

/* Color Variables Override */
:root {
    --primary: #FF6B35;
    --secondary: #004E89;
    --accent: #FFD23F;
    --success: #5DADE2;
    --dark: #1A1A2E;
    --text-dark: #2D3142;
    --text-light: #6C757D;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
}

/* Replace green (#5DADE2) with Coral Orange (#FF6B35) */
.header-banner-area .owl-nav > div:hover {
    color: #FF6B35 !important;
}

.banner-icon {
    background: #FF6B35 !important;
}

.banner-social li a:hover {
    color: #FF6B35 !important;
}

a.contact-btn {
    background: #FF6B35 !important;
}

.heading strong {
    color: #FF6B35 !important;
}

.heading h2 span {
    color: #FF6B35 !important;
}

.cbtn.cbnt1 {
    background: linear-gradient(135deg, #FF6B35, #004E89) !important;
    border: none !important;
}

.cbtn.cbnt1:hover {
    background: linear-gradient(135deg, #004E89, #FF6B35) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.single-service.active,
.single-service:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1)) !important;
    border-color: #FF6B35 !important;
}

.single-service.active .circles .circle,
.single-service:hover .circles .circle {
    background: #FF6B35 !important;
}

.single-service .circles .circle-1 {
    background: #FF6B35 !important;
}

.single-service .circles .circle-2 {
    background: rgba(255, 107, 53, 0.7) !important;
}

.single-service .circles .circle-3 {
    background: rgba(255, 107, 53, 0.5) !important;
}

.single-service .circles .circle-4 {
    background: rgba(255, 107, 53, 0.3) !important;
}

/* Service Icons */
.service-icon {
    transition: all 0.3s ease;
}

.single-service:hover .service-icon {
    transform: scale(1.1);
}

/* Testimonials */
.testimonial-text h4 {
    color: var(--text-dark) !important;
}

.testimonial-text p {
    color: #FF6B35 !important;
    font-weight: 600;
}

/* Skill Circles */
.circle {
    border-color: #FF6B35 !important;
}

.circle strong {
    color: #FF6B35 !important;
}

/* Links and Buttons */
a.readmore-btn:hover,
a.subscribe-btn {
    background: #FF6B35 !important;
    border-color: #FF6B35 !important;
}

/* Footer */
.footer-menu li a:hover {
    color: #FF6B35 !important;
}

.copyright span {
    color: #FF6B35 !important;
}

/* Project Hover Effects */
#da-thumbs li a:hover div {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(0, 78, 137, 0.95)) !important;
}

/* Typography Enhancements */
.heading h2 {
    color: #004E89 !important;
}

.heading small {
    color: #FF6B35 !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

/* Navigation Active State */
.stellarnav li.current a,
.stellarnav li a:hover {
    color: #FF6B35 !important;
}

/* Search Button */
.search-btn a:hover i {
    color: #FF6B35 !important;
}

/* Up Button */
.up-btn {
    background: linear-gradient(135deg, #FF6B35, #004E89) !important;
}

.up-btn:hover {
    background: linear-gradient(135deg, #004E89, #FF6B35) !important;
}

/* Pricing Button */
.cbtn.pricing-btn:hover {
    background: #FF6B35 !important;
    color: #fff !important;
}

/* Blog Read More */
.readmore-btn i {
    color: #FF6B35 !important;
}

/* Form Focus States */
input:focus,
textarea:focus {
    border-color: #FF6B35 !important;
    outline: none;
}

/* Additional Brand Styling */
.site-black {
    background-color: #0a0a0a;
}

.wlc-title h1 span {
    color: #FF6B35 !important;
}

/* Service Box Hover */
.skill-box:hover {
    border-left: 3px solid #FF6B35 !important;
}

/* Logo Styling */
.logo img {
    max-height: 50px;
    background: white;
    padding: 8px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.logo img:hover {
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    transform: translateY(-2px);
}

/* Logo in sidebar */
.side-widgest .logo img {
    max-height: 60px;
    padding: 10px 20px;
    border-radius: 10px;
}

/* Smooth Transitions */
* {
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

/* Custom 2Y2S Badge */
.badge-2y2s {
    background: linear-gradient(135deg, #FF6B35, #004E89);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 10px;
}

/* AI-Inspired Elements */
.ai-highlight {
    position: relative;
    padding-left: 30px;
}

.ai-highlight::before {
    content: '🤖';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
}

/* Professional Enhancements */

/* Improve overall readability */
body {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* Better text contrast on dark backgrounds */
.site-black {
    background: linear-gradient(180deg, #1a1d28 0%, #252a3a 100%);
}

/* Cleaner section spacing */
section {
    padding: 80px 0 !important;
}

.section-padding {
    padding: 80px 0 !important;
}

/* Professional heading styles */
.heading h2 {
    font-size: 2.8rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 700 !important;
}

.heading small {
    font-size: 0.85rem !important;
    letter-spacing: 3px !important;
    display: block;
    margin-bottom: 0.5rem;
}

.heading p,
.info-content p {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 600px;
}

/* Card improvements */
.single-service,
.skill-box,
.testimonial-card {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.4s ease !important;
}

.single-service:hover,
.skill-box:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-8px) !important;
}

/* Better service card text */
.single-service h4,
.skill-box h5 {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    font-weight: 600 !important;
    color: white !important;
}

.single-service p,
.skill-box p {
    font-size: 0.95rem !important;
    line-height: 1.7 !important;
    color: rgba(255, 255, 255, 0.75) !important;
}

/* Skill box improvements */
.skill-box small {
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    color: #FF6B35 !important;
    letter-spacing: 1.5px !important;
    display: block;
    margin-bottom: 0.8rem;
}

/* Testimonial improvements */
.testimonial-text h4 {
    font-size: 1.15rem !important;
    line-height: 1.8 !important;
    font-weight: 500 !important;
    font-style: italic;
    margin-bottom: 1.5rem !important;
}

.testimonial-text p {
    font-size: 1rem !important;
    margin-top: 1rem;
}

/* Better button styles */
.cbtn {
    padding: 14px 35px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase;
}

/* Cleaner navigation */
.stellarnav ul li a {
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.5px !important;
}

/* Footer improvements */
.footer-menu li a {
    font-size: 0.9rem !important;
    padding: 0 15px !important;
    font-weight: 500 !important;
}

.copyright p {
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Better circle progress */
.circle {
    margin: 20px auto !important;
}

.circle span {
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    margin-top: 10px !important;
}

/* Badge enhancements */
.badge-2y2s {
    font-size: 0.75rem !important;
    padding: 6px 18px !important;
    margin-bottom: 15px !important;
}

/* Hero title improvements */
.wlc-title h1 {
    font-size: 3.2rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    font-weight: 800 !important;
}

.wlc-title p {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    margin-bottom: 2rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Contact section improvements */
.cta-heading h2 {
    font-size: 2.5rem !important;
    margin-bottom: 1.5rem !important;
}

.cta-heading p {
    font-size: 1.05rem !important;
    margin: 10px 0 !important;
}

/* Better spacing for content sections */
.space-60 {
    height: 60px !important;
}

.space-100 {
    height: 100px !important;
}

/* Smoother animations */
* {
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease !important;
}

/* Remove transition from animated elements */
.animated,
.owl-carousel,
[class*="animate"] {
    transition: none !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    .heading h2 {
        font-size: 2rem !important;
    }
    
    .heading strong {
        font-size: 1.8rem !important;
    }
    
    .wlc-title h1 {
        font-size: 2.2rem !important;
    }
    
    .wlc-title p {
        font-size: 1rem !important;
    }
    
    section {
        padding: 50px 0 !important;
    }
}
