/* ========================================
   ICT SPACE HUB SPECIFIC STYLES
   Professional B2B Technology Design
   ======================================== */

/* Hero Section - Modern & Professional */
.ict-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #001f3f 0%, #003366 50%, #004080 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 20px 60px;
}

/* Animated Particles Background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: float linear infinite;
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    margin-bottom: 60px;
}

/* Welcome Badge */
.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

.welcome-badge i {
    color: #F4E87C;
    animation: pulse 2s ease-in-out infinite;
}

/* Hero Main Title with Typing Animation */
.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.typing-container {
    display: block;
    color: #F4E87C;
    min-height: 70px;
}

.typing-text {
    border-right: 3px solid #F4E87C;
    padding-right: 8px;
}

.cursor {
    animation: blink 0.7s infinite;
    color: #F4E87C;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-tagline strong {
    color: #F4E87C;
    font-weight: 600;
}

/* Hero Features Grid */
.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-item i {
    font-size: 1.5rem;
    color: #F4E87C;
}

/* Hero CTA Buttons */
.hero-cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.cta-primary,
.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-primary {
    background: linear-gradient(135deg, #F4E87C 0%, #D4AF37 100%);
    color: #003366;
    box-shadow: 0 10px 30px rgba(244, 232, 124, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 232, 124, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* Hero Statistics Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 1s both;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    font-size: 2.5rem;
    color: #F4E87C;
    margin-bottom: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator i {
    display: block;
    margin-top: 10px;
    font-size: 1.2rem;
}

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

/* Navigation Enhancements for ICT */
.ict-navbar {
    background: rgba(0, 33, 66, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
}

.ict-navbar .nav-brand {
    display: flex;
    align-items: center;
}

.ict-navbar .brand-logo {
    height: 45px;
    width: auto;
}

.brand-info {
    display: flex;
    flex-direction: column;
    margin-left: 12px;
}

.brand-name {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
}

.brand-tagline {
    font-size: 0.75rem;
    color: #F4E87C;
    font-weight: 500;
}

.nav-cta {
    background: linear-gradient(135deg, #F4E87C 0%, #D4AF37 100%);
    color: #003366 !important;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(244, 232, 124, 0.4);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-main-title {
        font-size: 2.2rem;
    }
    
    .typing-container {
        min-height: 50px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .brand-info {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-main-title {
        font-size: 1.8rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex: 1 1 calc(50% - 15px);
    }
}

/* ========================================
   ICT HUB ENHANCED RESPONSIVE DESIGN
   ======================================== */

/* Large Desktop (1920px and up) */
@media (min-width: 1920px) {
    .hero-container {
        max-width: 1600px;
    }
    
    .hero-main-title {
        font-size: 4.5rem;
    }
    
    .hero-tagline {
        font-size: 1.4rem;
        max-width: 1000px;
    }
    
    .hero-features {
        gap: 40px;
    }
    
    .ict-solutions .container,
    .ict-training .container,
    .projects-showcase .container {
        max-width: 1600px;
    }
}

/* Desktop (1200px - 1919px) */
@media (min-width: 1200px) and (max-width: 1919px) {
    .hero-main-title {
        font-size: 3.8rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet Landscape (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .ict-hero {
        padding: 100px 25px 60px;
    }
    
    .hero-main-title {
        font-size: 3.2rem;
    }
    
    .hero-tagline {
        font-size: 1.15rem;
    }
    
    .hero-features {
        gap: 20px;
    }
    
    .feature-item {
        padding: 12px 20px;
        font-size: 0.95rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ict-navbar .brand-info {
        display: flex;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .ict-hero {
        padding: 110px 30px 60px;
    }
    
    .hero-main-title {
        font-size: 2.8rem;
    }
    
    .typing-container {
        min-height: 60px;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 18px;
    }
    
    .hero-cta-group {
        gap: 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .solution-card,
    .training-card,
    .portfolio-card {
        padding: 25px;
    }
    
    .ict-navbar .brand-logo {
        height: 42px;
    }
}

/* Mobile Landscape (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .ict-hero {
        padding: 100px 25px 55px;
    }
    
    .hero-main-title {
        font-size: 2.4rem;
    }
    
    .typing-container {
        min-height: 55px;
    }
    
    .hero-tagline {
        font-size: 1.05rem;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .welcome-badge {
        font-size: 0.85rem;
    }
    
    .solutions-grid,
    .training-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Portrait (481px - 639px) */
@media (min-width: 481px) and (max-width: 639px) {
    .ict-hero {
        padding: 95px 22px 50px;
    }
    
    .hero-main-title {
        font-size: 2rem;
    }
    
    .typing-container {
        min-height: 50px;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .welcome-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .feature-item {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 26px;
    }
    
    .ict-navbar .brand-logo {
        height: 40px;
    }
}

/* Small Mobile (320px - 480px) */
@media (max-width: 480px) {
    .ict-navbar {
        padding: 12px 0;
    }
    
    .ict-navbar .brand-logo {
        height: 38px;
    }
    
    .ict-navbar .brand-name {
        font-size: 0.95rem;
    }
    
    .ict-navbar .brand-tagline {
        font-size: 0.7rem;
    }
    
    .ict-hero {
        padding: 90px 18px 45px;
    }
    
    .welcome-badge {
        font-size: 0.8rem;
        padding: 10px 18px;
    }
    
    .hero-main-title {
        font-size: 1.7rem;
        margin-bottom: 25px;
    }
    
    .typing-container {
        min-height: 45px;
        font-size: 1.7rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 30px 0;
    }
    
    .feature-item {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 1.3rem;
    }
    
    .hero-cta-group {
        gap: 12px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 14px 24px;
        font-size: 0.9rem;
    }
    
    .scroll-indicator {
        font-size: 0.85rem;
        bottom: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .solution-card,
    .training-card,
    .portfolio-card {
        padding: 20px;
    }
    
    .solution-icon,
    .training-icon {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
}

/* Extra Small Mobile (320px and below) */
@media (max-width: 320px) {
    .ict-navbar .brand-logo {
        height: 35px;
    }
    
    .ict-navbar .brand-info {
        display: none;
    }
    
    .ict-hero {
        padding: 85px 15px 40px;
    }
    
    .hero-main-title {
        font-size: 1.5rem;
    }
    
    .typing-container {
        font-size: 1.5rem;
        min-height: 40px;
    }
    
    .hero-tagline {
        font-size: 0.9rem;
    }
    
    .welcome-badge {
        font-size: 0.75rem;
        padding: 8px 15px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 12px 20px;
        font-size: 0.85rem;
    }
}

/* Landscape Mode for ICT Hub */
@media (max-height: 600px) and (orientation: landscape) {
    .ict-hero {
        padding: 80px 30px 30px;
        min-height: auto;
    }
    
    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .typing-container {
        min-height: 35px;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .welcome-badge {
        margin-bottom: 15px;
        font-size: 0.8rem;
    }
    
    .hero-features {
        margin: 20px 0;
        gap: 15px;
    }
    
    .hero-cta-group {
        margin-top: 25px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Tablet Landscape Specific for ICT */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-features {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI for ICT Hub */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .ict-navbar .brand-logo {
        image-rendering: -webkit-optimize-contrast;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
    .cta-primary,
    .cta-secondary,
    .nav-cta {
        min-height: 44px;
        min-width: 44px;
    }
    
    .feature-item {
        min-height: 44px;
    }
    
    .solution-card,
    .training-card,
    .portfolio-card {
        transition: none;
    }
    
    .solution-card:active,
    .training-card:active,
    .portfolio-card:active {
        transform: scale(0.98);
    }
}

/* Mobile Click/Tap Fixes */
.nav-link,
.nav-btn-lms,
.nav-btn-ict,
.nav-cta {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
    touch-action: manipulation;
}

/* Ensure buttons are above other elements on mobile */
@media (max-width: 768px) {
    .nav-menu.active {
        z-index: 999;
    }
    
    .nav-link,
    .nav-btn-lms,
    .nav-btn-ict,
    .nav-cta {
        position: relative;
        z-index: 1;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    /* Increase touch target size on mobile */
    .nav-menu a {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px 20px;
    }
}

/* ICT Hero Section */
.ict-hero {
    background: linear-gradient(135deg, #001a33 0%, #003366 50%, #0052a3 100%);
    position: relative;
    overflow: hidden;
}

.ict-hero .hero-background {
    background: none;
}

.tech-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.tech-particles::before,
.tech-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.3), transparent);
    animation: float 6s ease-in-out infinite;
}

.tech-particles::before {
    top: 10%;
    left: 10%;
}

.tech-particles::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 3s;
}

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

.ict-hero .hero-title,
.ict-hero .hero-description,
.ict-hero .hero-subtitle {
    color: white;
}

.ict-hero .highlight {
    color: #ffc107;
    background: none;
    -webkit-text-fill-color: #ffc107;
}

/* ICT Solutions Section */
.ict-solutions {
    background: #f8f9fa;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.solution-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #003366;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-top-color: #0066cc;
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #003366, #0066cc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.solution-icon i {
    font-size: 2.5rem;
    color: white;
}

.solution-card h3 {
    font-size: 1.6rem;
    color: #003366;
    margin-bottom: 15px;
    text-align: center;
}

.solution-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: center;
}

.solution-features {
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.solution-features li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-features i {
    color: #0066cc;
    font-size: 0.9rem;
}

/* Training Section */
.ict-training {
    background: white;
}

.training-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.training-intro p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.training-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid #e0e0e0;
}

.training-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: #0066cc;
}

.training-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.training-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0066cc, #003366);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.training-icon i {
    font-size: 2rem;
    color: white;
}

.training-card h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 10px;
    text-align: center;
}

.training-card > p {
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.training-list {
    list-style: none;
    padding: 0;
}

.training-list li {
    padding: 10px 0;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.training-list i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Projects Portfolio Section */
.projects-showcase {
    background: #f8f9fa;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.portfolio-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.portfolio-image {
    background: linear-gradient(135deg, #003366, #0066cc);
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h3 {
    font-size: 1.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.portfolio-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: linear-gradient(135deg, #003366, #0066cc);
    color: white;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Map Section */
.map-section {
    margin-bottom: 60px;
}

.map-section h3 {
    font-size: 1.8rem;
    color: #003366;
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer Divisions */
.footer-divisions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.division-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.division-link:hover {
    color: white;
    text-decoration: underline;
}

.divider {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .solutions-grid,
    .training-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card,
    .training-card {
        padding: 30px 25px;
    }
    
    .training-badge {
        position: static;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 350px;
    }
    
    .footer-divisions {
        flex-direction: column;
        gap: 10px;
    }
    
    .divider {
        display: none;
    }
}

@media (max-width: 480px) {
    .ict-hero .hero-title {
        font-size: 2rem;
    }
    
    .solution-icon,
    .training-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i,
    .training-icon i {
        font-size: 1.8rem;
    }
    
    .map-container iframe {
        height: 300px;
    }
}
