/* India Investment Hub - Homepage Style */

/* Hero Section - Centered with Vertical Title */
.iih-hero {
    background: linear-gradient(135deg, #0a1628 0%, #1e3a5f 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.iih-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Vertical Title Styling - Like Homepage */
.iih-title-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.iih-title-line {
    display: block;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.iih-title-highlight {
    color: #fbbf24;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.iih-logo-box {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.iih-logo {
    width: 120px;
    height: auto;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.iih-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.iih-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.5;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.iih-description {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 2.5rem;
    color: rgba(255,255,255,0.9);
}

/* Responsive Hero */
@media (max-width: 768px) {
    .iih-title-vertical {
        font-size: 3rem;
    }

    .iih-subtitle {
        font-size: 1.25rem;
    }

    .iih-description {
        font-size: 1rem;
    }
}

.iih-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.iih-stat-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.iih-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
}

.iih-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.iih-stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.iih-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.iih-btn-primary {
    background: white;
    color: #1e40af;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.iih-btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.iih-btn-secondary {
    background: transparent;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.iih-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* About Section */
.iih-about {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.iih-container {
    max-width: 1200px;
    margin: 0 auto;
}

.iih-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.iih-about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.iih-about-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iih-about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.iih-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.iih-card-content {
    padding: 1.5rem;
}

.iih-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1e40af;
}

.iih-card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

/* Pipelines Section */
.iih-pipelines {
    padding: 5rem 2rem;
    background: white;
}

.iih-pipelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.iih-pipeline-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iih-pipeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.iih-pipeline-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

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

.iih-pipeline-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4));
    color: white;
    padding: 1.5rem;
}

.iih-pipeline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.iih-pipeline-desc {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

/* Services Section - 2x2 Grid with Full Cover Images */
.iih-services {
    padding: 5rem 2rem;
    background: #f9fafb;
}

.iih-services-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.iih-service-card-large {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.iih-service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.iih-service-image-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.iih-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.iih-service-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: white;
    z-index: 10;
}

.iih-service-title-large {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.iih-service-text-large {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Timeline Section */
.iih-timeline {
    padding: 5rem 2rem;
    background: white;
}

.timeline-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 3rem auto;
    padding: 4rem 0;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, #1e40af, #3b82f6);
    transform: translateY(-50%);
}

.timeline-events {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.timeline-event {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.timeline-event-top {
    flex-direction: column-reverse;
    margin-bottom: 4rem;
}

.timeline-event-bottom {
    flex-direction: column;
    margin-top: 4rem;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: #1e40af;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #1e40af;
    z-index: 10;
    position: relative;
}

.timeline-event-content {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-event-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.timeline-date {
    font-size: 0.85rem;
    color: #1e40af;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-event-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.timeline-event-desc {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
    margin: 0;
}

/* Platform Info Section */
.iih-platform-info {
    padding: 4rem 2rem;
    background: #f9fafb;
}

.iih-platform-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
}

/* CTA Section */
.iih-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: white;
    text-align: center;
}

.iih-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.iih-cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 768px) {
    .iih-title {
        font-size: 2rem;
    }
    
    .iih-subtitle {
        font-size: 1.25rem;
    }
    
    .iih-section-title {
        font-size: 2rem;
    }
    
    .iih-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .iih-about-grid,
    .iih-pipelines-grid {
        grid-template-columns: 1fr;
    }
    
    .iih-services-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .iih-service-card-large {
        min-height: 280px;
    }
    
    .timeline-events {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-line {
        left: 50%;
        top: 0;
        bottom: 0;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
    }
    
    .timeline-event-top,
    .timeline-event-bottom {
        margin: 0;
    }
}
