/* Designed and developed by Aditya Panigrahi */

/* Modern Technology Page - Complete Redesign */

/* Modern Technology Hero Section */
.modern-tech-hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at center, 
        #f0f9ff 0%, 
        #dbeafe 50%, 
        #93c5fd 100%);
    border-radius: 20px;
    margin-bottom: 10px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(27, 75, 198, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(6, 130, 70, 0.03) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(27, 75, 198, 0.01) 60px,
            rgba(27, 75, 198, 0.01) 61px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 60px,
            rgba(6, 130, 70, 0.01) 60px,
            rgba(6, 130, 70, 0.01) 61px
        );
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 0;
}

.hero-text-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
}

.hero-badge i {
    font-size: 16px;
}

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    color: var(--primary-blue);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-stats-modern {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(27, 75, 198, 0.15);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
}

.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-tech-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
    animation: floatTech 6s ease-in-out infinite;
    min-width: 100px;
    min-height: 100px;
}

.floating-tech-element.element-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.floating-tech-element.element-2 {
    top: 20px;
    right: 20px;
    animation-delay: 1.5s;
}

.floating-tech-element.element-3 {
    bottom: 20px;
    left: 20px;
    animation-delay: 3s;
}

.floating-tech-element.element-4 {
    bottom: 20px;
    right: 20px;
    animation-delay: 4.5s;
}

.element-icon {
    font-size: 32px;
    color: var(--primary-blue);
}

.floating-tech-element span {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.hero-center-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.center-circle {
    width: 120px;
    height: 120px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    box-shadow: 0 8px 40px rgba(27, 75, 198, 0.3);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes floatTech {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Technology Showcase Section */
.modern-tech-showcase-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #c3d9f5 0%, 
        #b7e7eb 30%, 
        #bbf7d0 100%);
    border-radius: 20px;
    margin-bottom: 10px;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 16px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
}

.section-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-subtitle-modern {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.tech-categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-category-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(27, 75, 198, 0.1);
    transition: var(--transition);
    animation: fadeInUp 0.6s ease-out;
}

.tech-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(27, 75, 198, 0.15);
}

.tech-category-card:nth-child(1) { animation-delay: 0.1s; }
.tech-category-card:nth-child(2) { animation-delay: 0.2s; }
.tech-category-card:nth-child(3) { animation-delay: 0.3s; }
.tech-category-card:nth-child(4) { animation-delay: 0.4s; }
.tech-category-card:nth-child(5) { animation-delay: 0.5s; }
.tech-category-card:nth-child(6) { animation-delay: 0.6s; }

.category-header {
    text-align: center;
    margin-bottom: 30px;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.2);
}

.category-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-description {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin: 0;
}

.tech-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 16px;
}

.tech-items-grid .tech-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    padding: 16px 12px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.tech-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(27, 75, 198, 0.15);
}

.tech-items-grid .tech-icon {
    font-size: 28px;
    color: var(--primary-blue);
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    margin-bottom: 4px;
    position: static !important;
}

.tech-items-grid .tech-icon i {
    display: block;
}

.tech-items-grid .tech-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.tech-items-grid .tech-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    display: block !important;
    width: 100%;
    margin-top: 4px;
}

/* Technology CTA Section */
.modern-tech-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, 
        #f8fafc 0%, 
        #e2e8f0 50%, 
        #cbd5e1 100%);
    border-radius: 20px;
    margin-bottom: 10px;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary-modern {
    background: var(--primary-blue);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.3);
    cursor: pointer;
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(27, 75, 198, 0.4);
    color: white;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 16px 32px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
}

.btn-secondary-modern:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 30px rgba(27, 75, 198, 0.15);
    color: var(--primary-blue);
}

.cta-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-graphic {
    position: relative;
    width: 300px;
    height: 300px;
}

.floating-tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(27, 75, 198, 0.1);
    animation: floatIcon 4s ease-in-out infinite;
}

.floating-tech-icon:nth-child(1) {
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.floating-tech-icon:nth-child(2) {
    bottom: 20px;
    left: 20px;
    animation-delay: 1.3s;
}

.floating-tech-icon:nth-child(3) {
    bottom: 20px;
    right: 20px;
    animation-delay: 2.6s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0px) translateX(-50%); }
    50% { transform: translateY(-15px) translateX(-50%); }
}

.floating-tech-icon:nth-child(2) {
    animation: floatIcon2 4s ease-in-out infinite;
}

.floating-tech-icon:nth-child(3) {
    animation: floatIcon3 4s ease-in-out infinite;
}

@keyframes floatIcon2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

@keyframes floatIcon3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual-content {
        display: none;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .cta-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.5rem;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .tech-categories-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats-modern {
        justify-content: center;
    }
    
    .stat-card {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2rem;
    }
    
    .section-title-modern {
        font-size: 1.8rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .tech-items-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        justify-content: center;
    }
}