/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(41, 80, 135, 0.28), rgba(52, 118, 209, 0.16));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
    text-shadow: 0 4px 24px rgba(0,0,0,0.28), 0 1px 2px rgba(0,0,0,0.18);
    color: #fff !important;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    text-shadow: 0 2px 12px rgba(0,0,0,0.22), 0 1px 2px rgba(0,0,0,0.14);
    color: #fff;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    flex-wrap: wrap;
}

.hero-cta .btn {
    min-width: 200px;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 18px 0;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.hero-cta .btn-outline {
    background: rgba(255,255,255,0.18);
    color: #fff;
    border: 2px solid #fff;
    transition: background 0.2s, color 0.2s;
}
.hero-cta .btn-outline:hover {
    background: #fff;
    color: #295087;
}

/* Brand Story Section */
.brand-story {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-tag {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000;
    margin-bottom: 16px;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: #295087;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.founder-quote {
    font-size: 1.5rem;
    line-height: 1.6;
    color: #295087;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
}

.founder-quote cite {
    display: block;
    margin-top: 16px;
    font-size: 1rem;
    color: #666;
}

/* Services Section */
.services-section {
    padding: 120px 0;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.service-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

.service-feature.reverse {
    direction: rtl;
}

.service-feature.reverse .service-text {
    direction: ltr;
}

.service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-text h3 {
    font-size: 2rem;
    color: #295087;
    margin-bottom: 16px;
}

.service-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.service-benefits {
    list-style: none;
    padding: 0;
}

.service-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}

.service-benefits li:last-child {
    border-bottom: none;
}

/* Process Section */
.process-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.process-timeline {
    margin-top: 48px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: #3476d1;
    transform: translateX(-50%);
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3476d1;
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-content {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.timeline-content h3 {
    font-size: 1.5rem;
    color: #295087;
    margin-bottom: 16px;
}

/* Industries Section */
.industries-section {
    padding: 120px 0;
}

.industries-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.industries-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.industry-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.industry-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(41, 80, 135, 0.9), transparent);
    color: #fff !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.industry-overlay h3,
.industry-overlay p {
    color: #fff !important;
}

.industry-item:hover img {
    transform: scale(1.1);
}

.industry-item:hover .industry-overlay {
    transform: translateY(0);
}

/* Projects Section */
.projects-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.projects-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.project-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.project-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.project-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 32px;
    background: linear-gradient(to top, rgba(41, 80, 135, 0.9), transparent);
    color: #fff !important;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.project-overlay h3,
.project-overlay p,
.project-overlay a {
    color: #fff !important;
}

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

.project-item:hover .project-overlay {
    transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 0;
}

.testimonials-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.testimonials-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial-item {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-item blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.testimonial-item cite {
    font-size: 1rem;
    color: #666;
}

/* Redesigned CTA Section */
.redesigned-cta {
    position: relative;
    background: linear-gradient(120deg, #295087 0%, #3476d1 100%);
    color: #fff;
    padding: 100px 0 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-bg-shape {
    position: absolute;
    top: -60px; left: 50%; transform: translateX(-50%);
    width: 120vw; height: 300px;
    background: radial-gradient(circle at 60% 40%, #FF9800 0%, transparent 70%);
    opacity: 0.12;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 18px;
    color: #FF9800;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff !important;
}

.cta-underline {
    width: 60px;
    height: 4px;
    background: #FF9800;
    margin: 0 auto 24px auto;
    border-radius: 2px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 36px;
}

.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #FF9800;
    color: #fff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(41,80,135,0.08);
    transition: background 0.2s, box-shadow 0.2s;
}

.btn-primary:hover {
    background: #e68900;
    box-shadow: 0 8px 24px rgba(41,80,135,0.16);
}

.btn-secondary {
    background: #fff;
    color: #295087;
    border: 2px solid #FF9800;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
    background: #FF9800;
    color: #fff;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .story-grid,
    .service-feature {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        left: 0;
    }
    
    .timeline-number {
        left: 0;
    }
    
    .project-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        gap: 16px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; gap: 14px; }
}

/* Fix black text for sections over light backgrounds */
.industries-section .section-title,
.projects-section .section-title {
    color: #000 !important;
}

.industries-section .section-tag,
.projects-section .section-tag {
    color: #000 !important;
}

/* Also ensure any other text in these sections is black */
.industries-section h2,
.projects-section h2 {
    color: #000 !important;
}
