/* Modern Homepage Styles */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 160px;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 201, 167, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-color);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.primary-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
}

.secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 14px 35px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 18px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Summary Section */
.section-padding {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-header p {
    color: #64748b;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.about-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-summary-image img {
    width: 100%;
    border-radius: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    padding: 25px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--box-shadow);
    transition: 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 32px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Services Grid */
.bg-light-alt {
    background: #fbfdff;
}

.services-grid-container {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 35px 45px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
    border-color: var(--secondary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    background: var(--gradient-accent);
    color: white;
    transform: rotate(5deg) scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: var(--secondary-color);
    transition: color 0.4s ease;
}

.service-card:hover .service-icon i {
    color: white;
}

.service-content {
    flex-grow: 1;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-card p {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 0;
    line-height: 1.6;
}

.learn-more {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.learn-more:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Testimonials Slider */
.testimonials-section {
    background: #05192d;
    color: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-slide {
    min-width: 100%;
    padding: 0 15px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    height: 100%;
}

.quote-icon {
    font-size: 40px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    opacity: 0.5;
}

.testimonial-user {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
}

.testimonial-user img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    background: #ffffff;
    padding: 5px;
    border: 3px solid var(--secondary-color);
}

.user-info h4 {
    font-size: 20px;
    margin-bottom: 4px;
    color: var(--text-light);
}

.user-info p {
    color: var(--text-color);
    font-size: 15px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 10px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-box {
    background: var(--gradient-primary);
    padding: 80px 40px;
    border-radius: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-box .primary-btn {
    background: white;
    color: var(--primary-color);
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {

    .hero-container,
    .about-summary-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-summary-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 32px;
    }
}