/* Sector Cards Styling */
.sectors {
    background: linear-gradient(135deg, #0f172a, #1e293b, #334155);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.sectors::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M54.627 10.8a51.69 51.69 0 0 0-1.54-2.145c-.291-.36-.602-.736-.936-1.131l-.19-.23-.168-.2a73.695 73.695 0 0 0-1.551-1.746 1.688 1.688 0 0 0-2.538.235 74.31 74.31 0 0 0-1.625 2.115c-.342.474-.661.94-.956 1.4l-.838 1.31c-.553.88-1.03 1.684-1.433 2.414-.384.7-.703 1.282-.953 1.747-.252.465-.406.762-.48.919l-.58.112a1.677 1.677 0 0 0-.116 1.26 34.357 34.357 0 0 0 1.622 3.404 36.19 36.19 0 0 0 2.583 4.13c.213.29.427.57.642.844v.011l.032.033.02.02c.178.218.355.424.532.629.354.406.708.793 1.07 1.169.359.375.726.736 1.097 1.089.374.353.759.699 1.158 1.04a1.687 1.687 0 0 0 2.33-.133c.385-.39.749-.79 1.094-1.198.345-.41.672-.829.981-1.255l.46-.63.039-.054a36.304 36.304 0 0 0 2.374-3.85 34.36 34.36 0 0 0 1.621-3.404 1.679 1.679 0 0 0-.117-1.261l-.057-.112c-.122-.247-.416-.765-.884-1.55a26.855 26.855 0 0 0-2.095-3.196l-1.025-1.38a48.68 48.68 0 0 0-1.095-1.384zm-24.09 0a51.69 51.69 0 0 0-1.54-2.145c-.291-.36-.602-.736-.936-1.131l-.19-.23-.168-.2a73.695 73.695 0 0 0-1.551-1.746 1.688 1.688 0 0 0-2.538.235 74.31 74.31 0 0 0-1.625 2.115c-.342.474-.661.94-.956 1.4l-.838 1.31c-.553.88-1.03 1.684-1.433 2.414-.384.7-.703 1.282-.953 1.747-.252.465-.406.762-.48.919l-.58.112a1.677 1.677 0 0 0-.116 1.26 34.357 34.357 0 0 0 1.622 3.404 36.19 36.19 0 0 0 2.583 4.13c.213.29.427.57.642.844v.011l.032.033.02.02c.178.218.355.424.532.629.354.406.708.793 1.07 1.169.359.375.726.736 1.097 1.089.374.353.759.699 1.158 1.04a1.687 1.687 0 0 0 2.33-.133c.385-.39.749-.79 1.094-1.198.345-.41.672-.829.981-1.255l.46-.63.039-.054a36.304 36.304 0 0 0 2.374-3.85 34.36 34.36 0 0 0 1.621-3.404 1.679 1.679 0 0 0-.117-1.261l-.057-.112c-.122-.247-.416-.765-.884-1.55a26.855 26.855 0 0 0-2.095-3.196l-1.025-1.38a48.68 48.68 0 0 0-1.095-1.384z" fill="rgba(255,255,255,0.05)" fill-rule="evenodd"/></svg>');
    opacity: 0.3;
}

.sectors .container {
    position: relative;
    z-index: 1;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.sector-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sector-card:hover {
    transform: translateY(-10px);
}

.sector-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, 
                rgba(150, 185, 255, 0.8) 0%,
                rgba(0, 21, 105, 0.6) 50%,
                rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
    transition: opacity 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sector-card:hover::before {
    opacity: 0.3;
    background: linear-gradient(135deg, 
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.7) 50%,
                rgba(0, 0, 0, 0.5) 100%);
}

.sector-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.8);
}

.sector-card:hover .sector-card-bg {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.sector-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    color: white;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sector-card:hover .sector-card-content {
    transform: translateY(0);
}

.sector-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.sector-card:hover .sector-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.sector-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.sector-card p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.sector-card-link {
    display: inline-flex;
    align-items: center;
    color: white;
    font-weight: 500;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.sector-card-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.sector-card-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.sector-card-link:hover i {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sector-card {
        height: 350px;
    }
}

@media (max-width: 576px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .sector-card {
        height: 300px;
    }
    
    .sector-card h3 {
        font-size: 1.25rem;
    }
    
    .sector-card p {
        font-size: 0.8rem;
    }
} 