/* SCDev Front Page Styles */

.scdev-front-page {
    max-width: 100%;
    padding: 0;
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 10px rgba(52, 152, 219, 0.5),
                 0 0 20px rgba(52, 152, 219, 0.3),
                 0 0 30px rgba(52, 152, 219, 0.2);
    animation: subtle-glow 3s ease-in-out infinite;
}

@keyframes subtle-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(52, 152, 219, 0.5),
                     0 0 20px rgba(52, 152, 219, 0.3),
                     0 0 30px rgba(52, 152, 219, 0.2);
    }
    50% {
        text-shadow: 0 0 15px rgba(52, 152, 219, 0.7),
                     0 0 25px rgba(52, 152, 219, 0.5),
                     0 0 35px rgba(52, 152, 219, 0.3);
    }
}

body.night-mode .glow-text {
    text-shadow: 0 0 10px rgba(100, 181, 246, 0.6),
                 0 0 20px rgba(100, 181, 246, 0.4),
                 0 0 30px rgba(100, 181, 246, 0.3);
}

@keyframes subtle-glow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(100, 181, 246, 0.6),
                     0 0 20px rgba(100, 181, 246, 0.4),
                     0 0 30px rgba(100, 181, 246, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(100, 181, 246, 0.8),
                     0 0 25px rgba(100, 181, 246, 0.6),
                     0 0 35px rgba(100, 181, 246, 0.4);
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 20px 20px;
    background: transparent;
    color: inherit;
    margin-bottom: 10px;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #2c3e50;
    font-style: italic;
}

body.night-mode .hero-title {
    color: #e0e0e0;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-intro {
    max-width: 900px;
    margin: 0 auto;
}

.hero-intro p {
    font-size: 18px;
    line-height: 1.4;
}

/* Core Pillars Section */
.pillars-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 10px 20px;
    max-width: 1200px;
    margin: 0 auto 10px;
}

.pillar {
    text-align: center;
    padding: 20px 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pillar h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 600;
    text-align: center;
}

.pillar p {
    font-size: 16px;
    line-height: 1.2;
    color: #555;
    text-align: left;
}

/* Slider Section */
.slider-section {
    padding: 10px 20px;
 /*   background: #ffffff; */
    margin-bottom: 15px;
}

.slider-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.placeholder-slide.active {
    opacity: 1;
}

.placeholder-slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 30px;
}

.placeholder-content h3 {
    font-size: 36px !important;
    margin-bottom: 10px;
    color: white !important;
}

.placeholder-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Products Showcase Section */
.products-showcase {
    padding: 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.products-showcase > h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
    margin-top: 0;
    color: #1a1a2e;
    font-weight: 600;
    line-height: 1.3;
}

body.night-mode .products-showcase > h2 {
    color: #e0e0e0;
}

.product-feature {
    background: #f8f9fa;
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 4px;
    border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.product-feature:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left-color: #e94560;
}

body.night-mode .product-feature {
    background: #2c3e50;
    border-left-color: #64b5f6;
}

body.night-mode .product-feature:hover {
    border-left-color: #e94560;
}

.product-feature h3 {
    font-size: 28px;
    margin-bottom: 8px;
    margin-top: 0;
    color: #1a1a2e;
    font-weight: 700;
}

body.night-mode .product-feature h3 {
    color: #e0e0e0;
}

.product-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #3498db;
    margin-bottom: 10px;
    font-style: italic;
}

body.night-mode .product-tagline {
    color: #64b5f6;
}

.product-feature p {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 12px;
}

body.night-mode .product-feature p {
    color: #b0b0b0;
}

.learn-more {
    display: inline-block;
    color: #e94560;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #d63651;
    transform: translateX(5px);
}

body.night-mode .learn-more {
    color: #64b5f6;
}

body.night-mode .learn-more:hover {
    color: #90caf9;
}

.slider-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    overflow: hidden;
}

.placeholder-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.placeholder-slide.active {
    opacity: 1;
}

.placeholder-slide:nth-child(1) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.placeholder-slide:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.placeholder-slide:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.placeholder-content {
    text-align: center;
    color: white;
    padding: 40px;
}

.placeholder-content h3 {
    font-size: 42px !important;
    margin-bottom: 15px;
    color: white !important;
}

.placeholder-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: white;
    transform: scale(1.2);
}

/* Closing Section */
.closing-section {
    text-align: center;
    padding: 40px 20px;
    background: transparent;
    color: inherit;
}

.closing-section h2 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.closing-text {
    font-size: 22px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    border: 1px solid;
 /*   background: #e94560; */
    color: rgb(54, 53, 53);
}

.btn-primary:hover {
    background: #472e32;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(233, 69, 96, 0.3);
}

.btn-secondary {
    background: transparent;
    color: inherit;
    border: 2px solid currentColor;
}

.btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Night Mode */
body.night-mode .pillar {
    background: #2c3e50;
}

body.night-mode .pillar h3 {
    color: #e0e0e0;
}

body.night-mode .pillar p {
    color: #b0b0b0;
}

body.night-mode .slider-section {
    background: #1a1a2e;
}

body.night-mode .slider-section h2 {
    color: #e0e0e0;
}

body.night-mode .slider-placeholder {
    background: #2c3e50;
    border-color: #555;
}

body.night-mode .slider-placeholder p {
    color: #b0b0b0;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-intro p {
        font-size: 16px;
    }
    
    .pillars-section {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px 15px;
    }
    
    .slider-placeholder {
        height: 200px;
    }
    
    .placeholder-content h3 {
        font-size: 28px !important;
    }
    
    .placeholder-content p {
        font-size: 16px;
    }
    
    .products-showcase > h2 {
        font-size: 28px;
    }
    
    .product-feature {
        padding: 20px;
    }
    
    .product-feature h3 {
        font-size: 24px;
    }
    
    .product-tagline {
        font-size: 16px;
    }
    
    .closing-section h2 {
        font-size: 32px;
    }
    
    .closing-text {
        font-size: 18px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
    }
}


/* Responsive adjustments for slider */
@media (max-width: 768px) {
    .slider-placeholder {
        height: 300px;
    }
    
    .placeholder-content h3 {
        font-size: 28px !important;
    }
    
    .placeholder-content p {
        font-size: 16px;
    }
}
