:root {
    /* Technology theme */
    --primary-blue: #2E4053;      /* Rich steel blue */
    --dark-blue: #1A2335;         /* Deep charcoal blue */
    --light-blue: #E1E7EC;        /* Soft cloud grey */
    --accent-blue: #C06B5D;       /* Warm terracotta */
    --tech-gradient: linear-gradient(135deg, #2E4053, #1A2335);
    
    /* Satellite theme */
    --primary-orange: #5D534A;    /* Rich earth brown */
    --dark-orange: #403931;       /* Deep espresso */
    --light-orange: #D6CEC7;      /* Warm stone */
    --accent-orange: #846344;     /* Deep bronze */
    --satellite-gradient: linear-gradient(135deg, #5D534A, #403931);
    
    /* Software theme */
    --primary-teal: #8B3E18;      /* Rich brown */
    --dark-teal: #6B2F12;         /* Deep brown */
    --light-teal: #E6D5CC;        /* Soft cream */
    --accent-teal: #C65D2E;       /* Warm orange */
    --software-gradient: linear-gradient(135deg, #8B3E18, #6B2F12);


    
    /* Shared colors */
    --text-dark: #252321;         /* Deep charcoal */
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

    /* Card gradients - Technology */
    --tech-card-gradient-1: linear-gradient(135deg, #070d11 0%, #0a131c 100%);
    --tech-card-gradient-2: linear-gradient(135deg, #0d1720 0%, #111f2c 100%);
    --tech-card-hover: linear-gradient(135deg, #132330 0%, #1a2f42 100%);
    
    /* Card gradients - Satellite */
    --satellite-card-gradient-1: linear-gradient(135deg, #D6CEC7 0%, #E8E3DE 100%);
    --satellite-card-gradient-2: linear-gradient(135deg, #C9C0B8 0%, #DCD5CD 100%);
    --satellite-card-hover: linear-gradient(135deg, #BEB4AB 0%, #D1C9C0 100%);
    
    /* Card gradients - Software */
    --software-card-gradient-1: linear-gradient(135deg, #8B3E18 0%, #A64B1E 100%);
    --software-card-gradient-2: linear-gradient(135deg, #7A3615 0%, #943F19 100%);
    --software-card-hover: linear-gradient(135deg, #6B2F12 0%, #833615 100%);
    
    /* Card gradients - Technology */
    --tech-card-gradient-1: linear-gradient(135deg, #87A2B5 0%, #ffffff 100%);
    --tech-card-gradient-2: linear-gradient(135deg, #A1B9CF 0%, #ffffff 100%);
    --tech-card-hover: linear-gradient(135deg, #8B9467 0%, #ffffff 100%);
    
    /* Card gradients - Software */
    --software-card-gradient-1: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    --software-card-gradient-2: linear-gradient(135deg, #e6fffa 0%, #ffffff 100%);
    --software-card-hover: linear-gradient(135deg, #ccfbf1 0%, #ffffff 100%);
}

/* Hero Section */
.solutions-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.solutions-hero__content {
    width: 50%;
    padding: 0 5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.solutions-hero__content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solutions-hero__content p {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
}

.solutions-hero__image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

.solutions-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
}

/* Page-specific hero styles */
.technology-page .solutions-hero {
    background: var(--tech-gradient);
}

.satellite-page .solutions-hero {
    background: var(--satellite-gradient);
}

.software-page .solutions-hero {
    background: linear-gradient(135deg, #92400e, #78350f);
}


/* Responsive hero section */
@media (max-width: 1024px) {
    .solutions-hero__content {
        padding: 0 3rem;
    }

    .solutions-hero__content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .solutions-hero {
        height: 500px;
        text-align: center;
    }

    .solutions-hero__content {
        width: 100%;
        padding: 0 2rem;
    }

    .solutions-hero__content h1 {
        font-size: 2.5rem;
    }

    .solutions-hero__image {
        opacity: 0.2;
        width: 100%;
        clip-path: none;
    }
}

/* Features Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: -60px auto 0;
    padding: 0 20px;
    position: relative;
    z-index: 3;
}

.solution-card {
    background: var(--tech-card-gradient-1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(37, 99, 235, 0.1);
    position: relative;
    overflow: hidden;
}

.satellite-page .solution-card {
    background: var(--satellite-card-gradient-1);
    border-color: rgba(242, 100, 49, 0.1);
}

.software-page .solution-card {
    background: var(--software-card-gradient-1);
    border-color: rgba(146, 64, 14, 0.1);
}


.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--tech-gradient);
    transform: scaleX(0.3);
    transition: transform 0.3s ease;
}

.satellite-page .solution-card::before {
    background: var(--satellite-gradient);
}

.software-page .solution-card::before {
    background: var(--software-gradient);
}


.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.15);
    background: var(--tech-card-hover);
}

.satellite-page .solution-card:hover {
    box-shadow: 0 8px 15px rgba(242, 100, 49, 0.15);
    background: var(--satellite-card-hover);
}

.software-page .solution-card:hover {
    background: var(--software-card-hover);
    box-shadow: 0 8px 15px rgba(146, 64, 14, 0.15);
}


.solution-card__icon {
    width: 60px;
    height: 60px;
    background: var(--tech-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.satellite-page .solution-card__icon {
    background: var(--satellite-gradient);
}

.software-page .solution-card__icon {
    background: var(--software-gradient);
}

.solution-card__icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
}

.solution-card__icon i {
    font-size: 24px;
    color: white;
    position: relative;
    z-index: 1;
}

.solution-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Content Sections */
.solutions-content {
    padding: 80px 0;
    background: white;
}

.solutions-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.solutions-section__header {
    text-align: center;
    margin-bottom: 50px;
}

.solutions-section__header h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.solutions-section__header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Tech Features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.tech-feature {
    background: var(--tech-card-gradient-1);
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.satellite-page .tech-feature {
    background: var(--satellite-card-gradient-1);
}



.software-page .tech-feature {
    background: var(--software-card-gradient-1);
}

.tech-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--tech-gradient);
    transform: scaleY(0.3);
    transition: transform 0.3s ease;
}

.satellite-page .tech-feature::before {
    background: var(--satellite-gradient);
}

.software-page .tech-feature::before {
    background: var(--software-gradient);
}

.tech-feature:hover {
    transform: translateX(5px);
    background: var(--tech-card-hover);
    box-shadow: var(--box-shadow);
}

.satellite-page .tech-feature:hover {
    background: var(--satellite-card-hover);
}

.software-page .tech-feature:hover {
    background: var(--software-card-hover);
}

.tech-feature__icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--tech-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

.satellite-page .tech-feature__icon {
    background: var(--satellite-gradient);
}

.software-page .tech-feature__icon {
    background: var(--software-gradient);
}

.tech-feature__icon::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
}

.tech-feature__icon i {
    font-size: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.tech-feature__content h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-feature__content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.solutions-cta {
    background: var(--light-blue);
    padding: 80px 0;
    text-align: center;
}

.solutions-cta__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-cta h2 {
    color: var(--text-dark);
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.solutions-cta p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    width: 180px;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.satellite-page .cta-button {
    background: var(--primary-orange);
}

.software-page .cta-button {
    background: var(--primary-teal);
}

.technology-page .cta-button:hover {
    background: var(--dark-blue);
}

.satellite-page .cta-button:hover {
    background: var(--dark-orange);
}

.software-page .cta-button:hover {
    background: var(--dark-teal);
}

/* Project Showcase */
.project-showcase {
    padding: 80px 0;
    background: var(--light-blue);
    overflow: hidden;
}

.project-showcase__header {
    text-align: center;
    margin-bottom: 50px;
}

.project-showcase__header h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.project-showcase__header p {
    color: #64748b;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.project-slider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.project-slider__container {
    overflow: hidden;
    padding: 20px 0;
}

.project-slider__track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.project-card {
    flex: 0 0 calc(33.333% - 20px);
    background: var(--tech-card-gradient-2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.satellite-page .project-card {
    background: var(--satellite-card-gradient-2);
}

.software-page .project-card {
    background: var(--software-card-gradient-2);
}



.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.satellite-page .project-card::before {
    background: linear-gradient(135deg, rgba(242, 100, 49, 0.05), rgba(255, 134, 89, 0.05));
}

.software-page .project-card::before {
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.05), rgba(120, 53, 15, 0.05));
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
    background: var(--tech-card-hover);
}

.satellite-page .project-card:hover {
    box-shadow: 0 8px 20px rgba(242, 100, 49, 0.2);
    background: var(--satellite-card-hover);
}

.software-page .project-card:hover {
    background: var(--software-card-hover);
    box-shadow: 0 8px 20px rgba(146, 64, 14, 0.2);
}

.project-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.project-card__image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(37, 99, 235, 0) 0%,
        rgba(37, 99, 235, 0.1) 100%
    );
    z-index: 1;
}

.satellite-page .project-card__image::after {
    background: linear-gradient(to bottom, 
        rgba(242, 100, 49, 0) 0%,
        rgba(242, 100, 49, 0.1) 100%
    );
}

.software-page .project-card__image::after {
    background: linear-gradient(to bottom, 
        rgba(146, 64, 14, 0) 0%,
        rgba(146, 64, 14, 0.1) 100%
    );
}

.project-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-card__image img {
    transform: scale(1.1);
}

.project-card__content {
    padding: 25px;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.9) 0%,
        rgba(255, 255, 255, 1) 100%
    );
}

.project-card__content h3 {
    color: var(--text-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.project-card__content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--tech-gradient);
}

.satellite-page .project-card__content h3::after {
    background: var(--satellite-gradient);
}

.software-page .project-card__content h3::after {
    background: var(--software-gradient);
}

.project-card__content p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #64748b;
    padding-top: 15px;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
}

.slider-nav {
    display: none;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.satellite-page .slider-dot.active {
    background: var(--primary-orange);
}

.software-page .slider-dot.active {
    background: var(--primary-teal);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background: var(--primary-blue);
    color: white;
}

.satellite-page .slider-arrow:hover {
    background: var(--primary-orange);
}

.software-page .slider-arrow:hover {
    background: var(--primary-teal);
}

.slider-arrow.prev {
    left: -20px;
}

.slider-arrow.next {
    right: -20px;
}

@media (max-width: 1024px) {
    .project-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .slider-arrow {
        display: none;
    }
    
    .slider-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    .project-card {
        flex: 0 0 100%;
    }
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-hero {
        height: auto;
        padding: 60px 0;
    }

    .solutions-hero__content {
        width: 100%;
        text-align: center;
        padding: 0 20px;
    }

    .solutions-hero__image {
        display: none;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .tech-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .solutions-hero__content h1 {
        font-size: 2.2rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .solutions-section__header h2 {
        font-size: 1.8rem;
    }

    .tech-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
